* lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Use newlines to
[autoconf/tsuna.git] / ChangeLog
blobf586c872062445c08e015ac571adfb1874f6d85d
1 2007-01-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Use newlines to
4         separate items of `ac_user_opts', to avoid long lines.
5         (_AC_INIT_PARSE_ENABLE2, _AC_ENABLE_IF_ACTION): Adjust.
7 2007-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9         * doc/autoconf.texi: Fix some typos.
11 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
13         Fix some wording problems noted by Paolo Bonzini in:
14         http://lists.gnu.org/archive/html/autoconf-patches/2007-01/msg00077.html
15         * doc/autoconf.texi (Signed Overflow Examples): Give more
16         discussion about the allow_superuser_privileges example,
17         and change it a bit to make things clearer.
18         (Optimization and Wraparound): Clarify whether the compiler
19         will generate an infinite loop for the example derived from
20         Autoconf's mktime test.
21         (Signed Overflow Advice): Say that -ftrapv is meant for debugging.
22         Also, clarify unsigned multiplication overflow.
24 2007-01-04  Eric Blake  <ebb9@byu.net>
26         * bin/Makefile.am (RELEASE_YEAR): New macro.
27         (edit): Use it to supply correct copyright year to scripts.
28         * bin/autoconf.as (version): Use it.
29         * bin/autoheader.in ($version): Likewise.
30         * bin/autom4te.in ($version): Likewise.
31         * bin/autoreconf.in ($version): Likewise.
32         * bin/autoscan.in ($version): Likewise.
33         * bin/autoupdate.in ($version): Likewise.
34         * bin/ifnames.in ($version): Likewise.
36 2007-01-02  Paul Eggert  <eggert@cs.ucla.edu>
38         * doc/autoconf.texi (Integer Overflow): Revised based on today's
39         feedback.  The most important changes document what happens when
40         you convert an out-of-range value to a signed integer type, and
41         say that (sum < a) != (b < 0) reliably detects overflow when sum =
42         a + b.
44         * doc/autoconf.texi (Integer Overflow): Greatly expand and
45         rewrite, taking notions from the recent discussion on the gcc and
46         autoconf mailing lists; please see
47         http://lists.gnu.org/archive/html/autoconf-patches/2006-12/msg00091.html
48         and follow the many links.
49         (Integer Overflow Basics, Signed Overflow Examples):
50         (Optimization and Wraparound, Signed Overflow Advice):
51         (Signed Integer Division): New sections.
53 2006-12-28  Steven G. Johnson  <stevenj@alum.mit.edu>
55         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Don't include
56         preprocessor macro arguments in traced name.
57         * doc/autoconf.texi (Defining symbols): Document longstanding
58         support for AC_DEFINE-ing macros with arguments, and document
59         behavior when the same variable has multiple AC_DEFINEs.
60         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Revert to the
61         old implementation which AC_DEFINEs the FC_FUNC and FC_FUNC_
62         macros directly, giving much shorter and simpler code.
64 2006-12-28  Malcolm Purvis <malcolmp@xemacs.org>  (trivial change)
66         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Insert a
67         space before "$ac_configure_args" to prevent a 'config.status
68         --recheck' failure if ac_configure_args doesn't contain a leading
69         space.  This works around a problem with the XEmacs configure.ac,
70         which uses the (undocumented) ac_configure_args variable
71         inconsistently with Autoconf.
73 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
75         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME):
76         Include <limits.h>, and use its INT_MAX to rewrite the
77         j loop so that it does not overflow 'int'.  Problem reported by
78         Ralf Wildenhues in
79         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
80         Play it safe by shifting left by 1 rather than multiplying by 2,
81         as GCC is less likely to optimize this away when the value
82         is signed (when it assumes overflow leads to undefined behavior).
83         Also, don't assume time_t uses two's complement.
85 2006-12-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
87         * tests/torture.at (Substitute a 2000-byte string): Avoid using
88         a 10kB long (multi-line) string literal, OpenServer 5.0.7 ksh
89         dumps core on it.  Report by Tim Rice.
91 2006-12-18  Steven G. Johnson  <stevenj@alum.mit.edu>
93         * lib/autoconf/general.m4 (AC_ARG_ENABLE): Print help about
94         --disable-option-checking to --help output even when
95         AC_PRESERVE_HELP_ORDER is not used.
96         (_AC_INIT_PARSE_ENABLE2): Print warnings using actual --enable or
97         --with argument, rather than argument with [-.] replaced by
98         underscores.
99         * NEWS: Fix typo in previous change; the news was in the
100         wrong section.
102 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
104         * NEWS: Warnings are now generated by default for unknown
105         --enable-* and --with-* options.
106         * doc/autoconf.texi (Option Checking): Renamed from
107         (Configure Option Checking).  Tighten up the wording a bit.
108         (External Software, Package Options): Cross-reference to Option
109         Checking, and use this to shorten our section.
110         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Prefer test -n
111         "$x" to test "x$foo" != x.
112         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
113         Don't warn if $enable_option_checking is "no".
114         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Initialize
115         ac_unrecognized_opts to the empty string.
116         Don't echo the unrecognized opts, as this might mishandle
117         backslashes or leading -.
118         (AC_PRESERVE_HELP_ORDER): Put the --disable-option-checking
119         usage next to the other --disable-FEATURE options in the
120         help string.
122 2006-12-18  Steven G. Johnson  <stevenj@alum.mit.edu>
124         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS, _AC_INIT_PARSE_ARGS):
125         (_AC_INIT_PARSE_ENABLE2, _AC_INIT_HELP, _AC_ENABLE_IF):
126         Print warning for unrecognized --with and --enable options
127         (AC_DISABLE_OPTION_CHECKING): New macro to disable warnings.
128         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS, _AC_OUTPUT_SUBDIRS):
129         Disable option checking when subdirs are configured.
130         (AC_OUTPUT): If warnings are enabled, print warning about
131         unrecognized --with and --enable options at the end of
132         the configure output (as well as at the beginning).
133         * doc/autoconf.texi (Option Checking): New node.
134         Document new option warning functionality.
136 2006-12-16  Eric Blake  <ebb9@byu.net>
138         * configure.ac (AC_INIT): Bump version, since 2.61a is released.
139         * NEWS: Start news for current version.
141 2006-12-15  Paul Eggert  <eggert@cs.ucla.edu>
143         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
144         Define HAVE_GETMNTENT to 1, not to the empty string.
145         Problem originally reported by Jochen Friedrich in
146         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403243>.
148         This change prompted by a problem report by Andrey Simonenko in
149         <http://lists.gnu.org/archive/html/bug-autoconf/2006-12/msg00026.html>.
150         * doc/autoconf.texi (Defining Symbols): AC_DEFINE works for
151         object-like macros only, in the traditional portable character
152         set.
153         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL):
154         Warn about attempts to define things that are not identifiers.
155         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Rewrite to avoid
156         awful hack that AC_DEFINEd macro names containing parentheses.
158 2006-12-12  Paul Eggert  <eggert@cs.ucla.edu>
160         * doc/autoconf.texi: Undo some of the 2006-12-10 change.  It was
161         too drastic, even if Texinfo in theory requires it for info mode.
163         (config.status Invocation): Renamed back from Recreating a
164         Configuration).
165         (Obsolete config.status Use): Renamed back from Obsolete Recreation.
166         (Autoconf 2.13): Renamed back from 20th-century Autoconf 2.
168 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
170         * NEWS: Version 2.61a.
172 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
173         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
175         * NEWS: Document changes with echo and printf, and the lack
176         of limits on the total size of multi-line values of substituted
177         variables, and the AC_FUNC_FSEEKO fix.
179 2006-12-10  Paul Eggert  <eggert@cs.ucla.edu>
181         * doc/autoconf.texi (Writing Autoconf Input): Renamed from
182         Writing configure.ac.
183         (Autoconf Input Layout): Renamed from configure.ac Layout.
184         (Recreating a Configuration): Renamed from config.status Invocation.
185         (Obsolete Recreation): Renamed from Obsolete config.status Use.
186         (acconfig Header): Renamed from acconfig.h.
187         (20th-century Autoconf 2): Renamed from Autoconf 2.13.
188         (Writing Testsuites): Renamed from Writing testsuite.at.
189         (Autom4te Cache): Renamed from autom4te.cache.
191         * BUGS: Remove mention of VPATH problem, since it's now documented
192         not to be a bug in the Autoconf build procedure itself, but rather
193         a problem with the proprietary `make' programs.
195         * doc/autoconf.texi (Build Directories): Add a cross reference
196         to VPATH and Make.
198         * build-aux/config.guess, build-aux/config.sub, build-aux/texinfo.tex:
199         * doc/standards.texi: Sync from gnulib.
201         * man/autoconf.1, man/autoheader.1, man/autom4te.1, man/autoreconf.1:
202         * man/autoscan.1, man/autoupdate.1, man/config.guess.1:
203         * man/config.sub.1, man/ifnames.1: Remove from CVS, since they're
204         generated automatically.
206 2006-12-06  Paul Eggert  <eggert@cs.ucla.edu>
208         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Also try -xc99=all, for Sun
209         C 5.8 on Solaris 10.  Using -xc99=all rather than -xc99 bypasses
210         the buggy -xc99 option of Forte Developer 7 C on Solaris 9.
212 2006-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
214         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Drop the
215         `CEOF$ac_eof' special marker, the awk script cannot contain a
216         line matching `^CEOF', so this is not needed any more.
217         * tests/torture.at (Substitute a newline): Expose the `%!_!# '
218         special marker in the test.
220 2006-12-06  Stepan Kasal  <kasal@ucw.cz>
222         * tests/tools.at (autom4te preselections): Use `find -newer';
223         remove one of the sleeps.
225         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Make it
226         more readable, using ...
227         (_AC_INIT_PARSE_ENABLE2): ... this new helper macro.
229         * doc/autoconf.texi (autoheader Invocation): Do not double-
230         quote the parameter of `AH_BOTTOM' in the example.
232 2006-12-05  Stepan Kasal  <kasal@ucw.cz>
234         * doc/autoconf.texi (Configuration Headers): Remove the
235         example with multiple input files.
236         (autoheader Invocation): Encourage `AH_BOTTOM', discouraging
237         multiple input files.
239 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
241         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When
242         creating the awk substitution script, handle one input line at a
243         time, so that the maximum length of a substituted (multi-line)
244         value is not limited by the size of the sed pattern space.
245         The trade-off is a slightly repetitive sed script.
246         * doc/autoconf.texi (Limitations of Usual Tools): Branch labels
247         can only have up to 7 characters, due to Solaris 10 /bin/sed.
248         * tests/torture.at (Substitute a 2000-byte string): Increase the
249         test with several long lines, they should not be caught by sed
250         limits any more.
252         * tests/tools.at (autom4te preselections): New test, to flag
253         entries missing from autom4te.cfg.
254         Report by David Byron <dbyron@hheld.com>.
256         * tests/torture.at (Substitute a 2000-byte string): Actually use
257         AC_PROG_AWK, so the last change works as intended.
258         (Substitute and define special characters): Likewise.
259         (Substitute a newline): Likewise.
261         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Use `$AWK'
262         instead of `awk' consistently.
263         (_AC_OUTPUT_CONFIG_STATUS): Initialize $AWK.
264         * tests/torture.at (Torturing config.status): Test both the
265         result of AC_PROG_AWK and plain awk.
266         (Substitute a 2000-byte string): Likewise.
267         (Substitute and define special characters): Likewise.
268         (Substitute a newline): Likewise.
270 2006-12-04  Paul Eggert  <eggert@cs.ucla.edu>
272         * lib/autoconf/functions.m4 (AC_FUNC_FSEEKO): Check that fseeko
273         can be assigned to a function pointer.  Problem reported by
274         Peter Palfrader in <http://bugs.debian.org/401377>.  Based on
275         part of a patch by Ralf Wildenhues in that same bug report.
277 2006-12-01  Paul Eggert  <eggert@cs.ucla.edu>
279         * tests/mktests.sh (ac_exclude_list): Exclude AC_FUNC_SETVBUF_REVERSED.
280         * tests/semantics.at (AC_FUNC_SETVBUF_REVERSED): New test.
282 2006-12-01  Eric Blake  <ebb9@byu.net>
284         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE): Avoid newline, to aid in
285         cross-compiling from cygwin to mingw.
286         Reported by Bob Rossi.  This resurrects the 2000-11-30 patch to
287         aclang.m4, which was mistakenly removed in the 2001-09-17 patch
288         to lib/autoconf/c.m4.
290 2006-12-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
292         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Use a longer test
293         string for more reliable failure.  Wrap the entire test that
294         causes the broken Solaris printf to dump core, in a subshell,
295         so the segmentation fault message is reliably suppressed.
296         Fix shell expansion errors by using /usr/ucb/echo always;
297         avoid an error on systems without it by another subshell.
298         Avoid m4 expansion of `$1'.  Set the zeroth argument of the
299         subshell-$as_echo to `as_echo', for better error message.
301 2006-11-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
303         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): If `BASH_ARGV' or
304         `BASH_SOURCE' contain a newline, set them to empty, as they may
305         not be unset.
307 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
309         Turn AC_FUNC_SETVBUF_REVERSED into a noop.  It's been obsolete for
310         years and is too hard to maintain now.  The last straw was
311         reported by Jerker Baeck in
312         <http://lists.gnu.org/archive/html/autoconf/2006-11/msg00102.html>.
313         * NEWS: AC_FUNC_SETVBUF_REVERSED is now obsolete.
314         * doc/autoconf.texi (Particular Functions): Move
315         AC_FUNC_SETVBUF_REVERSED from here...
316         (Obsolete Macros): ... to here.  Say that it does nothing now.
317         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
318         Turn into (almost) a no-op.
320         * lib/autoconf/c.m4 (AC_PROG_GCC_TRADITIONAL, AC_C_CONST):
321         (AC_C_VOLATILE):
322         Do not recommend via AN_FUNCTION, AN_IDENTIFIER, or AN_HEADER.
323         These macros are obsolescent and new applications shouldn't need them.
324         * lib/autoconf/functions.m4 (AC_FUNC_CLOSEDIR_VOID, AC_REPLACE_FNMATCH):
325         (AC_FUNC_GETLOADAVG, AC_FUNC_GETPGRP, AC_FUNC_MEMCMP):
326         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP, AC_FUNC_STAT, AC_FUNC_LSTAT):
327         (AC_FUNC_STRFTIME, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
328         (AC_FUNC_VPRINTF): Likewise.
329         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT, AC_HEADER_STAT):
330         (AC_HEADER_STDC, AC_HEADER_SYS_WAIT, AC_HEADER_TIME): Likewise.
331         * lib/autoconf/types.m4 (AC_STRUCT_TM): Likewise.
333         * doc/autoconf.texi (Setting Output Variables): Mention that
334         @VAR1@VAR2 has unspecified behavior.  Problem reported by
335         Ralf Wildenhues.
336         * NEWS: Mention this.
338         * Makefile.am: Put only a single '#' into the copyright notice,
339         so that it's also present in the output file.  Standardize wording
340         in makefile copyright notices to match GNU coding standards.
341         * bin/Makefile.am: Likewise.
342         * doc/Makefile.am: Likewise.
343         * lib/Makefile.am: Likewise.
344         * lib/freeze.mk: Likewise.
345         * lib/autoconf/Makefile.am: Likewise.
346         * lib/autoscan/Makefile.am: Likewise.
347         * lib/autotest/Makefile.am: Likewise.
348         * lib/m4sugar/Makefile.am: Likewise.
349         * man/Makefile.am: Likewise.
350         * tests/Makefile.am: Likewise.
351         * lib/emacs/Makefile.am: Remove copyright notice; it's just a
352         one-line file.
354 2006-11-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
356         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix error
357         in the sed script that mangles the awk script: delete up to the
358         first exclamation mark only.
359         * tests/torture.at (Substitute and define special characters):
360         Test '!' too.
362 2006-11-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
364         Rewrite config files generation: avoid quadratic growth in
365         the number of substituted variables by using awk instead of sed
366         for the bulk of the substitutions.
367         * NEWS: Mention this.
368         * doc/autoconf.texi (Setting Output Variables): `|#_!!_#|' is also
369         forbidden in the output (and thus input) file.
370         * lib/autoconf/status.m4 (_AC_AWK_LITERAL_LIMIT): New macro.
371         (_AC_OUTPUT_FILES_PREPARE): Instead of several sed scripts,
372         generate just one large awk script for substitutions,
373         eliminating much of the earlier complexity, while adding some
374         new complexity.  Only expand the substitution templates at
375         configure time, for smaller configure script size.  If
376         _AC_SUBST_FILES are used, test 'awk' for working getline support
377         at config.status time.  If absent, interpolate through the
378         shell.  The awk script was written with much help
379         from Paolo Bonzini and Paul Eggert.
380         (_AC_SED_CMD_NUM, _AC_SED_DELIM_NUM, _AC_SED_FRAG): Removed.
381         (_AC_SED_FRAG_NUM): Likewise.
382         (_AC_SUBST_CMDS): Renamed from...
383         (_AC_SED_CMDS): ...this.
384         (_AC_OUTPUT_FILE): Use _AC_SUBST_CMDS.
385         * tests/torture.at (Substitute a 2000-byte string): Also
386         substitute a line with 1000 words, and a variable with several
387         long lines.
388         (Substitute and define special characters): Test awk special
389         characters, and put substitution input strings `@foo@' in the
390         output, to test that no recursion happens; test several other
391         combinations from Paolo Bonzini.
393 2006-11-25  Paul Eggert  <eggert@cs.ucla.edu>
395         * lib/autotest/general.m4 (AT_INIT): Undo recent changes
396         that replaced echo with AS_ECHO where this wasn't necessary.
397         Problem reportd by Ralf Wildenhues.
398         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Port to Solaris 7,
399         where "/usr/bin/printf '%s\n' S" dumps core if S is long.
400         This is Sun bug 4206210.  Problem reportd by Ralf Wildenhues.
402 2006-11-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
404         * lib/freeze.mk (GREP): Removed, no need to initialize this.
406 2006-11-21  Paul Eggert  <eggert@cs.ucla.edu>
408         * doc/autoconf.texi (Limitations of Usual Tools): Don't claim
409         that traditional Awk lacks 3-arg "split".  It has it.
410         Mention that FS must be a single character, and a few other
411         99-byte limits of traditional Awk.
412         Mention that if (i in a) doesn't work with traditional Awk.
414 2006-11-18  Paul Eggert  <eggert@cs.ucla.edu>
416         * tests/autotest.at (BSx641-newline in command):
417         (BS-BS-newline in command, BSx640-newline in command):
418         (Newline-CODE-BS-newline in command):
419         (Single-quote-BS-newline in command):
420         (Single-quote-newline-BS-newline in command):
421         Use printf '%s\n' instead of echo, for portability to hosts
422         where echo interprets backslashes.  This will break on hosts
423         that lack printf, but for now let's assume all such hosts
424         are dead (if not, we should get reports of test failures).
426 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
428         'echo' has some portability problems, when given a first argument
429         with a leading '-', or when given any argument containing '\'.
430         Avoid using 'echo' in these cases.
431         * bin/Makefile.am $(bin_SCRIPTS): Rewrite to avoid 'echo' entirely.
432         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Likewise.
433         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
434         * lib/autotest/general.m4 (AT_INIT): Likewise.
435         * bin/autoconf.as: Use AS_ECHO rather than plain echo, when the
436         argument might be unportable.
437         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Likewise.
438         * lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Likewise.
439         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT):
440         (_AC_FC_LIBRARY_LDFLAGS): Likewise.
441         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Likewise.
442         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE, _AC_INIT_PREPARE):
443         (_AC_ARG_VAR_VALIDATE, AC_ARG_PROGRAM, _AC_MSG_LOG_CONFTEST):
444         (AC_RUN_LOG, _AC_RUN_IFELSE, _AC_LIBOBJS_NORMALIZE): Likewise.
445         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
446         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Likewise.
447         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
448         (AC_PROG_MAKE_SET): Likewise.
449         * lib/autoconf/status.m4 (_AC_SRCDIRS, _AC_OUTPUT_HEADER):
450         (_AC_OUTPUT_SUBDIRS, _AC_OUTPUT_CONFIG_STATUS): Likewise.
451         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT, AT_INIT):
452         (AT_CLEANUP, _AT_DECIDE_TRACEABLE, _AT_CHECK): Likewise.
453         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE, _AS_ECHO_UNQUOTED):
454         (_AS_BASENAME_SED, _AS_DIRNAME_SED, AS_MKDIR_P, AS_TMPDIR, AS_UNAME):
455         (AS_TR_SH, AS_TR_CPP, AS_VAR_GET): Likewise.
456         * bin/autoconf.as: Redo verbose flag implementation, as the old
457         scheme wouldn't work with AS_ECHO.
458         * lib/autotest/general.m4 (AT_INIT): Likewise.
459         * lib/autoconf/general.m4 (AC_MSG_RESULT, AC_MSG_RESULT_UNQUOTED):
460         Don't use ECHO_T, since ECHO_N is now reliable.
461         * lib/autotest/general.m4 (AT_INIT): Likewise.
462         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use sed "$script"
463         rather than using a here-document to put the script into a file.
464         (_AC_DO_ECHO): Hoist the eval out of the echo, so that we can
465         use AS_ECHO.
466         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Likewise.
467         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Use
468         AS_ECHO_N rather than ECHO_N and ECHO_C.  This doesn't fix any
469         bug, but we might as well stop using ECHO_N and ECHO_C internally.
470         * lib/autotest/general.m4 (AT_SETUP): Likewise.
471         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N): Likewise.
472         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
473         (_AC_OUTPUT_MAIN_LOOP): Rework echo so that it has just one
474         operand, as AS_ECHO requires.  Avoid double file name expansion.
475         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke _AS_ECHO_PREPARE.
476         Don't set as_nl, since _AS_ECHO_PREPARE does that now.
477         (_AS_PREPARE): Comment that _AS_ECHO_N_PREPARE is just for user code.
478         (AS_ECHO, AS_ECHO_N, _AS_ECHO_PREPARE): New macros.
479         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
480         Double-quote strings that would otherwise contain M4 comments.
481         * tests/m4sh.at (AS_ECHO and AS_ECHO_N): New test.
483         * configure.ac (AC_INIT): Bump to 2.61a.
484         * NEWS: Likewise.
486 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
488         Version 2.61.
490         * configure.ac (AC_INIT): Bump to 2.61.
491         * NEWS: Likewise.
493         * tests/autotest.at (Macro with backslash in a test title):
494         Comment out for now, as this tests neither fails nor passes
495         reliably.  Problem reported by Ralf Wildenhues.
497 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
499         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Fix some typos
500         in previous change, which caused test failures.
502 2006-11-16  Stepan Kasal  <kasal@ucw.cz>
504         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Factor out
505         code for --enable, --disable, --with, and --without to...
506         (_AC_INIT_PARSE_ENABLE): ... a new macro.
507         * doc/autoconf.texi (Package Options):
508         * NEWS: Document that AC_ARG_ENABLE allows dots, too.
510 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
512         Import these changes from config via gnulib:
514         2006-11-15  Ben Elliston  <bje@gnu.org>
516         From Josselin Mouette <joss@debian.org>:
517         * build-aux/config.guess (SX-8:SUPER-UX:*:*): New.
519         2006-11-08  Ben Elliston  <bje@gnu.org>
521         * build-aux/config.guess (authenticamd:Interix*:[3456]*): Another AMD64.
523         2006-11-07  Steve Woodford  <scw@NetBSD.org>
524                     Ben Elliston  <bje@gnu.org>
526         * build-aux/config.guess (*:NetBSD:*:*): Handle sh5el arch.
527         * build-aux/config.sub (sh5el): New basic_machine.
530         Import this change from coreutils:
532         2006-02-13  Jim Meyering  <jim@meyering.net>
534         * GNUmakefile (all): Emit diagnostics to stderr, not stdout.
537         Import this change from gnustandards via gnulib:
539         2006-11-15  Karl Berry  <karl@gnu.org>
541         * standards.texi: core -> memory, throughout.
542         (CPU Portability): show correct example of calling write
543         on a char value; thanks to Paul Eggert for the code.
544         Both of these suggestions from Eugene Y. Vasserman.
547         Import these changes from texinfo via gnulib:
549         2006-11-08  Karl Berry  <karl@gnu.org>
551         * build-aux/texinfo.tex (\dopdfimage): look for png, jpg/jpeg/JPG, and
552           as well as pdf images, since they are supported in pdftex with
553           no further ado.
555         2006-11-05  Karl Berry  <karl@gnu.org>
557         * doc/texinfo.tex (Image Syntax): don't mention GIF any more.
559 2006-11-13  Paul Eggert  <eggert@cs.ucla.edu>
561         * NEWS: Document the AC_ARG_WITH change.
563 2006-11-13  Bruno Haible  <bruno@clisp.org>
565         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): For --with, --without
566         options, transliterate also dots to underscores.
567         (_AC_ENABLE_IF): Transliterate also dots to underscores.
568         * doc/autoconf.texi (External Software): Document that AC_ARG_WITH's
569         first argument may also contain dots.
571 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
573         * tests/mktests.sh (ac_exclude_list): Exclude AC_PROG_CXX_C_O, for
574         benefit of platforms like Solaris+GCC where it is common to have a
575         non-working g++ installation.
577 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
578         and Joel E. Denny  <jdenny@ces.clemson.edu>
579         and Paul Eggert  <eggert@cs.ucla.edu>
581         * tests/autotest.at (AT_CHECK_AT_TITLE): Fix shell quoting bugs
582         and non-portable sed scripts, and use $CONFIG_SHELL when invoking
583         ./micro-suite.
585 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
587         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Set
588         ac_cv_type_long_long_int to 'yes' instead of 'cross-compiling'.
589         Imported from a similar patch to gnulib by Bruno Haible.
591 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
593         * NEWS: New macros AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS.
594         * doc/autoconf.texi (C Compiler): Document them.
595         * lib/autoconf/c.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS):
596         New macros, taken from gnulib.
598 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
600         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
601         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
602         Matthew Woehlke.
604 2006-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
606         * tests/torture.at (Configuring subdirectories): Do not skip
607         Automake 1.10 nor future Automake 11.1 (sic).
609 2006-10-26  Joel E. Denny  <jdenny@ces.clemson.edu>
610         and Stepan Kasal  <kasal@ucw.cz>
612         Handle special characters in test case titles correctly.
613         * lib/autotest/general.m4 (AT_INIT): M4-quote and AS_ESCAPE AT_help_all
614         properly.
615         (AT_SETUP): M4-quote and AS_ESCAPE the title properly everywhere.
616         * tests/autotest.at (AT_CHECK_AT_TITLE): Add EXPANDED-TITLE-TO-TEST
617         argument.  Extend to check titles printed by ./micro-suite and
618         ./micro-suite -l and the title in micro-suite.log.
619         (Backquote in a test title,
620         Single-quote in a test title,
621         Double-quote in a test title): Don't expect failure anymore.
622         (Backslash in a test title): Put a non-whitespace character after the
623         backslash so that Bourne shells might actually see it as an escape
624         sequence.
625         (Brackets in a test title,
626         Pound in a test title,
627         Comma in a test title,
628         Quoted Macro in a test title,
629         Macro in a test title,
630         Macro with single-quote in a test title): New tests.
631         (Macro with backquote in a test title,
632         Macro with double-quote in a test title,
633         Macro with backslash in a test title): New tests expected to fail.
634         * tests/torture.at (#define header templates): M4-quote this title in
635         AT_SETUP call so that no M4 code is commented inadvertently somewhere.
636         The visible effect was a stray [] in the testsuite output.
638 2006-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
640         * doc/autoconf.texi (Limitations of Builtins): Do not invoke
641         `trap ... 0' inside a function, for AIX sh.
643 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
645         * tests/base.at (AC_COMPUTE_INT): Test **0** rather than 1 / 0,
646         since powerpc-apple-darwin8-gcc-4.0.1 (Apple Computer, Inc. build
647         5363) simply issues a warning when dividing by zero at compile
648         time.  Problem reported by Elias Pipping.
650 2006-10-26  Eric Blake  <ebb9@byu.net>
652         * THANKS: Update.
653         * doc/autoconf.texi (Evaluation Macros): Improve the example to
654         show effect on macros that expand with commas.
655         Reported by Joel E. Denny.
657         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
658         Also work with M4 1.4.8.
660 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
662         * doc/autoconf.texi (Slashes): Document Tru64 4.0 bug reported by
663         Jim Meyering.
665 2006-10-25  Stepan Kasal  <kasal@ucw.cz>
667         * tests/tools.at (autom4te --force): New test, verifies that
668         `--force' always rewrites the output file.
670 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
672         * doc/autoconf.texi (Limitations of Usual Tools): Document that rm
673         needs operands on NetBSD 2.0.2.  Problem reported by Bruno Haible.
675 2006-10-24  Stepan Kasal  <kasal@ucw.cz>
677         * tools/trace.at (autoconf --trace: user macros): Test `$%'.
679 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
681         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
682         If FUNCTION-BODY is nonempty, use AC_LINK_IFELSE rather than
683         AC_COMPILE_IFELSE, to work around problem with OSF/1 4.0F fseeko
684         reported by Nelson H. F. Beebe for Coreutils 6.4.
686         * tests/tools.at (autoconf --trace: user macros): Remove test
687         for tracing multiline macros, since m4 1.4.7a uses a different
688         way to number lines.  Problem reported by Ralf Wildenhues.
690 2006-10-24  Stepan Kasal  <kasal@ucw.cz>
692         * bin/autom4te.in (handle_m4): Do not redirect stdin to
693         /dev/null since the heuristics for interactive behaviour was
694         fixed in CVS m4.
696         * bin/autom4te.in: With --force, always refresh the output
697         file.  Problem reported by Greg Schafer <gschafer@zip.com.au>.
699         * bin/autoconf.as: Fix the verbose message at the end.
701 2006-10-23  Paul Eggert  <eggert@cs.ucla.edu>
703         * configure.ac (AC_INIT): Bump to 2.60c.
704         * NEWS: Likewise.
706 2006-10-22  Paul Eggert  <eggert@cs.ucla.edu>
708         * NEWS: Version 2.60b.
710         Import this change from Texinfo:
711         2006-10-15  Karl Berry  <karl@gnu.org>
712         * build-aux/texinfo.tex: automake 1.10
714         * NEWS: Remove AC_CACHE_CHECK_INT.
715         * doc/autoconf.texi (Caching Results): Likewise.
716         * lib/autoconf/general.m4 (_AC_CACHE_CHECK_INT): Renamed from
717         AC_CACHE_CHECK_INT, since it's no longer public.
718         * lib/autoconf/types.m4: All uses of AC_CACHE_CHECK_INT changed.
719         * tests/base.at (AC_COMPUTE_INT): Test this, not AC_CACHE_CHECK_INT.
721 2006-10-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
723         * doc/autoconf.texi (Limitations of Usual Tools): Fix two typos.
725 2006-10-19  Eric Blake  <ebb9@byu.net>
727         * lib/m4sugar/m4sugar.m4 (m4_mkstemp): New macro.
728         (m4_maketemp): Avoid warnings with M4 1.9a.
729         * lib/emacs/autoconf-mode.el (autoconf-font-lock-keywords): Color
730         m4_mkstemp.
731         * doc/autoconf.texi (Redefined M4 Macros): Document m4_mkstemp.
732         * NEWS: Likewise.
734 2006-10-16  Eric Blake  <ebb9@byu.net>
736         * doc/autoconf.texi (Setting Output Variables): Fix typo.
738         * bin/autoconf.as (version): Reword to match GNU Coding
739         Standards.
740         * bin/autoheader.in (version): Likewise.
741         * bin/autom4te.in (version): Likewise.
742         * bin/autoreconf.in (version): Likewise.
743         * bin/autoscan.in (version): Likewise.
744         * bin/autoupdate.in (version): Likewise.
745         * bin/ifnames.in (version): Likewise.
747 2006-10-14  Stepan Kasal  <kasal@ucw.cz>
749         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Expand $1 before
750         looking for special shell characters.
751         * lib/autoconf/functions.m4 (AC_CHECK_FUNC): Do not expand the
752         macro defined by AS_VAR_PUSHDEF before passing it as a
753         parameter.
754         * lib/autoconf/general.m4 (AC_CHECK_FILE, AC_CHECK_DECL):
755         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB):
756         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW, AC_CHECK_MEMBER):
757         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL):
758         (_AC_CHECK_HEADER_NEW, _AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_DIRENT):
759         Likewise.
760         * lib/autotest/general.m4 (AT_INIT): Quote parameters of
761         AS_VAR_* properly.
762         * tests/m4sh.at (AS_LITERAL_IF): New test.
764 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
766         (Imported from Automake.)
767         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
768         which incorrectly sets the mode of an existing destination
769         directory.  In some cases the unpatched install-sh could do the
770         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
771         system.  We hope this is rare in practice, but it's clearly worth
772         fixing.  Problem reported by Alex Unleashed in
773         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
774         Also, don't bother to check for -m bugs unless we're using -m;
775         suggested by Stepan Kasal.
777 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
779         Import this change from Automake:
781         2006-08-23  Alexandre Duret-Lutz  <adl@gnu.org>
782         * lib/Autom4te/ChannelDefs.pm (usage): Mention that -Wportability
783         is enabled by default with gnu and gnits strictness.
784         Report from Bruno Haible.
786         2006-03-10  Alexandre Duret-Lutz  <adl@gnu.org>
787         * lib/Autom4te/ChannelDefs.pm: Make -Wportability the default in
788         gnu and gnits modes.
790         Import this change from Config:
792         2006-09-20  Ben Elliston  <bje@gnu.org>
793         * build-aux/config.sub (score, score-*): New.
795         Import this change from Gnulib:
797         2006-09-16  Karl Berry  <karl@gnu.org>
798         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
799         to avoid sectioning errors.
801         Import these changes from Texinfo:
803         2006-10-04  Karl Berry  <karl@gnu.org>
804         * build-aux/texinfo.tex (\singlequotechar): rename to \codequoteright.
805         (\quoteexpand): rename to \rquoteexpand.
806         (\codequoteleft): new def, to look for @set codequotebacktick.
807         (\lquoteexpand, \quoteexpand): new defs.
808         (\lquoteChar, \rquoteChar, \dashChar, \underChar: new \chardef's.
809         (\code): must use new \...Char values, since now ` is active.
811         2006-08-26  Karl Berry  <karl@gnu.org>
812         * build-aux/texinfo.tex (\textdegree): New command.
814         2006-08-12  Karl Berry  <karl@gnu.org>
815         * build-aux/texinfo.tex (error \box0): smaller font.
817 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
819         * doc/autoconf.texi (Autoheader Macros): Fix syntax error.
821 2006-10-13  Stepan Kasal  <kasal@ucw.cz>
823         * doc/autoconf.texi (Autoheader Macros): Warn that the text
824         added to the template can get mangled.
826 2006-10-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
828         * lib/autoconf/functions.m4 (AC_FUNC_OBSTACK): In the test,
829         include the default headers, and redefine obstack_chunk_alloc
830         and obstack_chunk_free.  Fixes false failure with glibc.
832 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
834         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Set as_executable_p,
835         for backward compatibility with Libtool 1.5.22.  Problem reported
836         by Ralf Wildenhues.
838 2006-10-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
840         * lib/autoconf/c.m4 (AC_PROG_GCC_TRADITIONAL): Require
841         AC_PROG_CC.
842         Report by IOhannes m zmoelnig <zmoelnig@iem.at>.
844 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
846         * NEWS: AC_USE_SYSTEM_EXTENSIONS now defines _TANDEM_SOURCE for
847         the NonStop platform.
848         * doc/autoconf.texi (Posix Variants): Likewise.
849         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
851         * lib/m4sugar/m4sh.m4 (AS_TEST_X): New macro.
852         (AS_EXECUTABLE_P): Use as_test_x rather than as_executable_p.
853         (_AS_TEST_PREPARE): Set as_test_x rather than as_executable_p.
854         Use a better substitute, by inspecting the output of "ls"
855         rather than just using ":".
856         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Use AS_TEST_X
857         rather than AS_EXECUTABLE_P, since we needn't worry about
858         non-regular files here.
860         * NEWS: Autoconf-generated shell scripts no longer export BIN_SH,
861         due to configuration hassles with this.  See Tonya Underwood's report
862         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00003.html>.
863         * doc/autoconf.texi (Special Shell Variables): Likewise.
865 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
866             Stepan Kasal  <kasal@ucw.cz>
868         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Don't set BIN_SH.
869         (_AS_DETECT_BETTER_SHELL): Don't look in /usr/bin/posix.
871 2006-10-11  Stepan Kasal  <kasal@ucw.cz>
873         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Move the
874           initialization which is not inherited through the environment
875         (_AS_BOURNE_COMPATIBLE): ... to this new macro.
876         (_AS_RUN): Call _AS_BOURNE_COMPATIBLE, not AS_BOURNE_COMPATIBLE.
878 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
880         * doc/autoconf.texi (Limitations of Usual Tools): Describe
881         problems with mkdir -p -m.
883 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
885         * lib/autoconf/c.m4 (_AC_PROG_PREPROC_WORKS_IFELSE): Remove
886         comment about ac_cpp_err; it was incorrect, and anyway
887         ac_cpp_err is being removed below.
888         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE): Don't
889         set ac_cpp_err to 'yesyes' if preproc_warn_flag and werror_flag
890         are both 'yes'.  In fact, don't bother setting ac_cpp_err at all;
891         nobody uses it.
892         (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't log our funky tests
893         with werror_flag and conftest.err and so forth.  This is more
894         compatible with how _AC_PROG_PREPROC_WORKS_IFELSE behaves,
895         and anyway the user shouldn't normally want to see this gorp logged.
896         Problem reported by Ralf Wildenhues.
897         * lib/autoconf/lang.m4 (AC_LANG_WERROR): werror_flag's default is
898         empty, not 'no', since the rest of the code uses 'test -z'.
900 2006-10-04  Paul Eggert  <eggert@cs.ucla.edu>
902         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
903         Use a single call to AC_DO_TOKENS rather than multiple, for
904         efficiency.
905         (_AC_LINK_IFELSE): Test that resulting file is executable.
906         Problem reported by mwoehlke in
907         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00048.html>.
909         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Use "test -x /" rather
910         than creating a file to use with test -x; this is much faster.
912 2006-10-02  Bruno Haible  <bruno@clisp.org>
914         * lib/autom4te.in (Automake-preselections): Add
915         AM_GNU_GETTEXT_INTL_SUBDIR, for automake 1.10.
917 2006-09-27  Stepan Kasal  <kasal@ucw.cz>
919         * doc/autoconf.texi (Writing testsuite.at): Fix a typo: for
920         standard error, `experr' should be used, not `expout'.
922 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
924         * lib/autoconf/functions.m4 (AC_FUNC_FSEEKO): Don't compile the
925         fseeko testing program twice; just use the earlier result.
926         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
927         Set cache var to 'unknown' (not 'no') if leaving the macro unset
928         still doesn't let the program compile.
929         (AC_SYS_LARGEFILE): Test for _LARGE_FILES only if earlier tests
930         failed.
932         * lib/autoconf/functions.m4: Fix problems reported by Ralf Wildenhues.
933         (AC_FUNC_ERROR_AT_LINE): Don't bother to check for error.h.  Just
934         include it, without including anything else.
935         (AC_FUNC_FSEEKO): Avoid gcc -Wall warnings about constant
936         expressions.
937         (AC_FUNC_STRNLEN): Require AC_USE_SYSTEM_EXTENSIONS.
939 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
941         * lib/autoconf/functions.m4 (AC_FUNC_ERROR_AT_LINE): Check for
942         `error.h', and include it, for a `error_at_line' prototype.
943         Use a nonempty format string in the link test.
944         * lib/autoconf/functions.m4 (AC_FUNC_WAIT3): Include <sys/wait.h>,
945         for a declaration of wait3.
947 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
949         * NEWS: AC_CHECK_DECL now also works with aggregate objects.
950         * doc/autoconf.texi (Generic Declarations): Clarify that AC_CHECK_DECL
951         can apply to constants too, and that it checks for macro defns.
952         * lib/autoconf/general.m4 (AC_CHECK_DECL): Assume C89 or better,
953         and simply cast the identifier to void.  This handles structure
954         values.  Problem reported by Ralf Wildenhues.
955         * tests/semantics.at (AC_CHECK_DECLS): Also check enums.
957 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
959         * tests/semantics.at (AC_CHECK_DECLS): Also check macros,
960         structure, and function symbols.
962 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
964         * tests/semantics.at (AC_CHECK_MEMBERS): Also test with a struct
965         member.
967 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
969         * NEWS: Recommend M4 1.4.7 instead of 1.4.6.
970         * README: Likewise.
971         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
973 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
974         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
976         * lib/autoconf/functions.m4 (AC_FUNC_OBSTACK): Avoid `gcc -Wall'
977         warnings (uninitialized value).
978         (AC_FUNC_UTIME_NULL): Likewise, test for and include <utime.h> if
979         present.
980         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Likewise, add
981         parentheses.
982         (AC_STRUCT_TM): Likewise, avoid unused variables.
984 2006-09-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
986         * lib/autoconf/c.m4 (_AC_ARG_VAR_LDFLAGS): Update comment.
987         (_AC_ARG_VAR_LIBS): New macro: let LIBS be precious.
988         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Call _AC_ARG_VAR_LIBS.
989         * lib/autoconf/fortran.m4 (AC_PROG_F77, AC_PROG_FC): Likewise.
990         Report by Olly Betts.
992 2006-09-19  Eric Blake  <ebb9@byu.net>
994         * m4/m4.m4: Change copyright.
995         * configure: Regenerate.
996         * Makefile.in: Likewise.
997         * bin/Makefile.in: Likewise.
998         * doc/Makefile.in: Likewise.
999         * lib/Makefile.in: Likewise.
1000         * lib/Autom4te/Makefile.in: Likewise.
1001         * lib/autoconf/Makefile.in: Likewise.
1002         * lib/autoscan/Makefile.in: Likewise.
1003         * lib/autotest/Makefile.in: Likewise.
1004         * lib/emacs/Makefile.in: Likewise.
1005         * lib/m4sugar/Makefile.in: Likewise.
1006         * man/Makefile.in: Likewise.
1007         * tests/Makefile.in: Likewise.
1009         * m4/m4.m4 (AC_PROG_GNU_M4): Check for m4 --debugfile support.
1010         * bin/Makefile.am (edit): Substitute M4_DEBUGFILE.
1011         * bin/autom4te.in (handle_m4): Favor --debugfile over misnamed
1012         --error-output, to avoid warnings with M4 2.0.
1014 2006-09-19  Stepan Kasal  <kasal@ucw.cz>
1016         * lib/autoconf/libs.m4 (AH_CHECK_LIB): Fix quoting, to be
1017           consistent with _AH_CHECK_FUNCS and _AH_CHECK_HEADERS.
1018         * lib/autoconf/headers.m4 (AH_CHECK_HEADERS_DIRENT): Likewise.
1020 2006-09-15  Stepan Kasal  <kasal@ucw.cz>
1022         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Eliminate the
1023         expansion of AC_CHECK_FUNCS.
1025 2006-09-14  Stepan Kasal  <kasal@ucw.cz>
1027         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Remove a
1028         mistaken comment: the path has to be relative; do not use
1029         the path at runtime.
1031 2006-09-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1033         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote the
1034         argument to `--prefix' for sub-configure scripts.
1035         Pass `--silent' to sub-configure scripts.
1036         * tests/torture.at (Configuring subdirectories): Add tests
1037         for both changes.
1038         * doc/autoconf.texi (Setting Output Variables): Fix example to
1039         not show `--silent' being passed to a `configure' re-run.
1041 2006-09-12  Paul Eggert  <eggert@cs.ucla.edu>
1043         * doc/autoconf.texi (Input): Clarify role of AC_CONFIG_MACRO_DIR.
1044         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Do not check
1045         for the existence of the directory at configure-time.  That's
1046         too late, anyway.  Problem reported by Stefan Seefeld.
1048         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Avoid bug in UnixWare
1049         7.1.4 /usr/bin/posix/sh described by Tim Rice in
1050         <http://lists.gnu.org/archive/html/bug-autoconf/2006-09/msg00017.html>.
1052 2006-09-11  Stepan Kasal  <kasal@ucw.cz>
1054         * tests/local.at (AT_CHECK_M4): Fix this so that the testsuite
1055         works with GNU M4 1.4.3 again; make the normalized form
1056         match the current m4 message; fix the description.
1057         * test/tools.at (autom4te cache): Adapt to the change.
1059 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
1061         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME):  Add year_2050_test
1062         to catch glibc bug 2821
1063         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
1065         Merge from gnulib as follows: Use AC_CHECK_HEADERS_ONCE instead of
1066         AC_CHECK_HEADERS, and likewise for AC_CHECK_FUNCS_ONCE and
1067         AC_CHECK_FUNCS.  Don't check for stdlib.h, since we now
1068         assume C89.
1070 2006-09-08  Stepan Kasal  <kasal@ucw.cz>
1072         * lib/autom4te.in (Autoconf-without-aclocal-m4): Move the
1073         preselections ...
1074         (Autoconf): ... here.
1075         (Autoscan-preselections): Delete.
1077 2006-09-07  Stepan Kasal  <kasal@ucw.cz>
1079         * lib/autom4te.in (Automake-preselections): Preselect
1080         AM_ENABLE_MULTILIB.
1082 2006-09-05  Paul Eggert  <eggert@cs.ucla.edu>
1084         * doc/autoconf.texi (Preset Output Variables): srcdir and
1085         top_srcdir are not necessarily relative.  Problem reported
1086         by Dries Kimpe.
1088 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1090         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Prefer xlf90/xlf95 over
1091         f90/f95 because the latter drivers of AIX Fortran 9.1 do not
1092         accept files with extension `.f'.  For consistency, also prefer
1093         xlf over f77.
1094         * doc/autoconf.texi (Fortran Compiler): Remove mention of bug
1095         from last patch.
1097 2006-09-05  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
1099         * lib/autoconf/erlang.m4 (AC_ERLANG_CHECK_LIB): Added substitution
1100         of ERLANG_LIB_VER_* variables.
1101         * doc/autoconf.texi (Erlang Libraries): Document ERLANG_LIB_VER_*
1102         variables.
1104 2006-09-03  Paul Eggert  <eggert@cs.ucla.edu>
1105         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1107         * doc/autoconf.texi (Limitations of Builtins): Document 'unset'
1108         bugs of Bash 2.01 and 2.05a.
1109         (Fortran Compiler): Document that AC_PROG_CC should be called
1110         before AC_PROG_FC, due to a bug in Autoconf.
1112 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
1114         * NEWS: New macro AC_CACHE_CHECK_INT.  It replaces the
1115         old AC_COMPUTE_INT, which now behaves like _AC_COMPUTE_INT
1116         except the first two arguments are reversed.
1117         * doc/autoconf.texi (Caching Results): New macro AC_CACHE_CHECK_INT.
1118         (Generic Compiler Characteristics): AC_COMPUTE_INT no longer
1119         caches nor outputs a diagnostic.  Suggested by Bruno Haible.
1120         * lib/autoconf/general.m4 (AC_CACHE_CHECK_INT): New macro,
1121         equivalent to the old AC_COMPUTE_INT.
1122         (AC_COMPUTE_INT): No longer caches or reports.  New signature.
1123         All uses changed to AC_CACHE_CHECK_INT.
1124         * tests/base.at (AC_CACHE_CHECK_INT): New test.
1125         * tests/mktests.sh (ac_exclude_list): Add AC_CACHE_CHECK_INT.
1127 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
1129         * NEWS: AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_FUNC_GETLOADVG,
1130         and AC_REPLACE_FNMATCH are now obsolescent in Autoconf.  New
1131         programs should use their Gnulib counterparts.
1132         * doc/autoconf.texi (Particular Functions): Likewise.
1133         (Macro Names, testsuite Invocation): Replace uses of these
1134         obsolete macros with uses of non-obsolete macros.
1136 2006-08-29  Eric Blake  <ebb9@byu.net>
1138         * configure.ac (AC_INIT): Bump to 2.60b.
1139         * NEWS: Update.
1141 2006-08-28  Eric Blake  <ebb9@byu.net>
1143         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Fix logic that was
1144         mistakenly swapped on 2006-08-15.
1146 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
1148         * NEWS: Version 2.60a.
1150 2006-08-25  Stepan Kasal  <kasal@ucw.cz>
1152         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Remove the IPA/IPO
1153         file created by the PGI compiler.
1155 2006-08-25  Noah Misch  <noah@cs.caltech.edu>
1157         * lib/Autom4te/General.pm (END): Use `File::Path::rmtree' to
1158         simplify the code.
1160 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
1162         Fix Lex library problem reported to us by Julio Garvia.
1163         * doc/autoconf.texi (Particular Programs): YYTEXT_POINTER is
1164         for the default, which the user can override.
1165         * lib/autoconf/programs.m4 (AC_PROG_LEX): Let _AC_PROG_LEX_YYTEXT_DECL
1166         deal with LEXLIB.
1167         (_AC_PROG_LEX_YYTEXT_DECL): Handle caching correctly; the old code
1168         didn't work if some values were cached but not others.  Test for
1169         broken lex libraries like native ia64-hp-hpux11.22; see
1170         <http://sources.redhat.com/ml/binutils/2003-12/msg00337.html>, and
1171         work around the problem by preferring an empty LEXLIB to -lfl or
1172         -ll.  Let the user set LEXLIB='' to indicate no library needed.
1174         * NEWS: Recommend M4 1.4.6 instead of 1.4.5.
1175         * README: Likewise.
1176         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
1178 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
1180         Rework to use more-modern build style.
1181         Many files are renamed; all uses of their names were changed.
1182         * .x-sc_trailing_blank: Renamed from .x-sc_trailing_space.
1183         * .x-sc_useless_cpp_parens: New file.
1184         * build-aux/config.guess: Renamed from config/config.guess.  Update.
1185         * build-aux/config.sub: Renamed from config/config.sub.  Update.
1186         * build-aux/elisp-comp: Renamed from config/elisp-comp.
1187         * build-aux/install-sh: Renamed from config/install-sh.  Update.
1188         * build-aux/mdate-sh: Renamed from config/mdate-sh.
1189         * build-aux/missing: Renamed from config/missing.
1190         * build-aux/texinfo.tex: Renamed from config/texinfo.tex.  Update.
1191         * build-aux/vc-list-files: Renamed from config/vc-list-files.
1192         * config/Makefile.am: Removed.
1193         * config/mkinstalldirs: Removed.
1194         * config/move-if-change: Removed.
1195         * m4/m4.m4: Renamed from config/m4.m4.  Add (C) to copyright notice.
1196         * Makefile.am (SUBDIRS): Remove config.
1197         (ACLOCAL_AMFLAGS): Include from m4, not config.
1198         (EXTRA_DIST): Add config/announce-gen, config/prev-version.txt.
1199         (WGET, WGETFLAGS): New macros, since Makefile.maint no longer does this.
1200         (autom4te-update): Rewrite with a loop.  Get from gnulib, not automake.
1201         Fail if there's an error.
1202         * Makefile.cfg (move_if_change): Remove.
1203         (wget_files): Remove.
1204         (cvs_executable_files): New macro.
1205         (cvs_files): Use it.  Remove mkinstalldirs.  Add fdl.texi.
1206         (executable-update): Use $(cvs_executable_files).
1207         (local-checks-to-skip): Remove.
1208         * Makefile.maint: Merge from coreutils, plus add our own changes
1209         (gzip_rsyncable): New macro.
1210         (GZIP_ENV): Use it.
1211         (CVS_LIST): Use build-aux/vc-list-files.
1212         (VERSION_REGEXP): New macro.
1213         (local-checks-available): Add patch-check, $(syntax-check-rules),
1214         check-AUTHORS.
1215         (syntax-check-rules): Compute dynamically.
1216         (sc_cast_of_x_alloc_return_value): Work even if no source files.
1217         (sc_cast_of_alloca_return_value): Likewise.
1218         (sc_prohibit_atoi_atof): Simplify regexp.
1219         (sc_no_if_have_config_h, sc_require_config_h):
1220         (sc_prohibit_assert_without_use,
1221         (sc_obsolete_symbols): Check for O_NDELAY.
1222         (sc_texi_notab): Remove.
1223         (sc-changelog): Don't make an exception for '----' lines.
1224         (.re-list): Remove, so we don't have a junk file behind.
1225         (sc_system_h_headers): Remove the need for .re-list.
1226         (sc_the_the):  New rule.
1227         (sc_tight_scope): Simplify.
1228         (sc_trailing_blank): Renamed from sc_trailing_space.
1229         (longopt_re): New macro.
1230         (sc_two_space_separator_in_usage): New rule.
1231         (sc_unmarked_diagnostics): Look at all files under CVS.
1232         (sc_useless_cpp_parens, patch-check, check-AUTHORS): New rules.
1233         (news-date-check, changelog-check): Version is OK.
1234         (po-check): Look for lib files even if not in CVS.
1235         (copyright-check): Use $() not ``.
1236         (maintainer-distcheck): Do not depend on changelog-check.
1237         (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
1238         Also check for -Wpointer-arith.
1239         (WGET, WGETFLAGS, tgz-md5, tgz-sha1, bz2-md5, bz2-sha1):
1240         (xdelta-md5, xdelta-sha1, tgz-size, bz2-size, xd-size, rel-check):
1241         Remove.
1242         (announcement): Add --gpg-key-id arg.
1243         (cvs-sv): Remove.
1244         (move_if_change): Just use mv.
1245         (local_updates: Remove wget-update, po-update.
1246         (po_repo, do-po-update, po-update, wget_files, get-targets): Remove.
1247         (config.guess-url_prefix, config.sub-url_prefix): Remove.
1248         (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
1249         (standards.texi-url_prefix, make-stds.texi-url_prefix, target, url):
1250         ($(get-targets)): Remove.
1251         (cvs_files): Remove missing, mkinstalldirs, ansi2knr.c.
1252         (gnulib_repo): Renamed from automake_repo.  Get from gnulib now.
1253         (cvs-update): Get from gnulib.
1254         (emut_upload_commands): gnupload is in build-aux now.
1255         (alpha beta major): Add changelog-check.  Check version.
1256         * configure.ac (AC_CONFIG_AUX_DIR): Renamed from config to build-aux.
1257         (AC_CONFIG_FILES): Remove.
1258         * bin/autoconf.as: Add spaces to avoid distcheck warning.
1259         * config/announce-gen: Sync from coreutils.
1260         * doc/make-stds.texi: Sync from gnulib.
1261         * doc/standards.texi: Likewise.
1262         * man/Makefile.am: Adjust for config -> build-aux renaming.
1263         * tests/Makefile.am: Prefer $(FOO) to @FOO@.
1264         * tests/local.at: Adjust from config -> build-aux renaming.
1265         * tests/tools.at: Likewise.
1266         * tests/torture.at: Likewise.
1268         * NEWS: The C99 check now tests for vararg macros and 64-bit
1269         preprocessor ints.
1270         * doc/autoconf.texi (C Compiler): Document // comments, va_copy.
1271         * lib/autoconf/c.m4 (_AC_PROG_CC_C99): Test varargs macros and
1272         64-bit preprocessor ints.  Check for static initialization of
1273         long long.  Remove unnecessary casts.
1275 2006-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1277         * doc/autoconf.texi (Particular Programs): Mention that
1278         @INSTALL@ and @MKDIR_P@ may vary for different output files.
1279         Reported by Alexandre Duret-Lutz.
1281 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
1283         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Also ignore
1284         -lgcc?* and -lSystem, for Darwin/MacOS X.  Problem reported by
1285         Bill Northcott in
1286         <http://lists.gnu.org/archive/html/autoconf/2006-08/msg00083.html>.
1288 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
1290         * lib/autoconf/c.m4 (AC_C_CONST): Don't used shadowed vars, to
1291         pacify insanely picky compilers.  Problem reported by Eric Blake.
1293         * doc/autoconf.texi (Posix Variants): INTERACTIVE Unix is no
1294         longer supported by Sun.
1296 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
1298         * NEWS: Autoconf now uses constructs like "#ifdef HAVE_STDLIB_H"
1299         rather than "#if HAVE_STDLIB_H", so that it now works with "gcc
1300         -Wundef -Werror".  Problem reported by David Fang in
1301         <http://lists.gnu.org/archive/html/autoconf/2006-08/msg00045.html>.
1302         * doc/autoconf.texi (Header Templates, Default Includes):
1303         (Particular Functions, Generic Functions, Header Portability):
1304         (Particular Headers, Generic Headers, Generic Declarations, Guidelines):
1305         (Obsolete Macros, AC_FOO_IFELSE vs AC_TRY_FOO):
1306         (Present But Cannot Be Compiled, Preprocessor Symbol Index):
1307         Prefer #ifdef to #if.
1308         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prefer #ifdef to #if.
1309         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, _AC_FUNC_MALLOC_IF):
1310         (AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
1311         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETVBUF_REVERSED, _AC_FUNC_VFORK):
1312         Likewise.
1313         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
1314         (AC_HEADER_RESOLV, AC_HEADER_STAT): Likewise.
1315         * lib/autoconf/specific.m4 (AC_DECL_SYS_SYGLIST):
1316         (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
1317         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Don't assume that
1318         S_ISDIR etc. are valid for use in #if; POSIX doesn't guarantee
1319         this.
1321 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
1323         * doc/autoconf.texi (Limitations of Usual Tools): Document sed
1324         problems with arg script text that doesn't end in newline, and
1325         with '-e a...'.  Problems reported by Ralf Wildenhues.
1327 2006-08-12  Alexandre Julliard  <julliard@winehq.org>  (tiny change)
1329         * lib/autoconf/libs.m4 (AC_PATH_X_DIRECT): Replace another
1330         check for libXt by a check for libX11.
1332 2006-08-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1334         * doc/autoconf.texi (config.status Invocation): Adjust according
1335         to last change.
1337 2006-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1339         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): `config.status
1340         --help' should mention that `--version' outputs configuration
1341         settings.  Report by Bruno Haible.
1343 2006-08-06  Paul Eggert  <eggert@cs.ucla.edu>
1345         Fix test suite failures reported by Pierre in
1346         <http://lists.gnu.org/archive/html/bug-autoconf/2006-08/msg00005.html>.
1347         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't claim
1348         the compiler created a file "b.out" when it didn't create anything
1349         at all.
1350         * lib/autoconf/specific.m4 (AC_SYS_INTERPRETER):
1351         Discard stderr too, when invoking the test script.
1353 2006-08-05  Alexandre Julliard  <julliard@winehq.org>  (tiny change)
1355         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Fixed a typo
1356         in the restoring of the werror flag.
1358 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
1360         * doc/autoconf.texi (Volatile Objects): Be even a little
1361         less skeptical about "volatile", after discussion with
1362         Bruno Haible on bug-gnulib.
1363         (Limitations of Usual Tools): Warn about sed stripping
1364         leading white space from text.  From Bruno Haible.
1366 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
1368         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Don't use -R if the
1369         compiler complains about it, even if things works after the
1370         complaint.  Problem reported by Peter O'Gorman.
1372         * doc/autoconf.texi (Preset Output Variables): Document CFLAGS,
1373         CPPFLAGS, and LDFLAGS better.  Problem reported by Bruno Haible.
1374         Similarly for CXXFLAGS, OBJCFLAGS, ERLCFLAGS.
1376 2006-07-17  Paul Eggert  <eggert@cs.ucla.edu>
1378         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Do the check for space
1379         after -R regardless of host.  Patrick Welche reports that this
1380         fixes things on NetBSD 3.99.
1382         * NEWS: Recommend M4 1.4.5.
1383         * README: Likewise.
1384         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
1385         * tests/tools.at (autom4te cache): Update wording of diagnostic
1386         to match M4 1.4.5.
1388 2006-07-07  Paul Eggert  <eggert@cs.ucla.edu>
1390         * doc/autoconf.texi (C Compiler): Add a ref to Volatile Objects
1391         under AC_C_VOLATILE.
1392         (Volatile Objects): Be a little less skeptical about what
1393         "volatile" means.  Derived from thoughts by Ben Pfaff in
1394         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00092.html>.
1396 2006-07-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1398         * doc/autoconf.texi: Fix some typos.
1400 2006-07-07  Paul Eggert  <eggert@cs.ucla.edu>
1402         * tests/torture.at (Configuring subdirectories): Set CONFIG_SITE
1403         more globally, since the 2006-06-30 patch didn't suffice.  Problem
1404         reported by Keith Marshall.  Also, don't bother with builddir2,
1405         since it shouldn't be needed any more.
1407 2006-07-07  Paolo Bonzini  <bonzini@gnu.org>
1409         * doc/autoconf.texi (Generic compiler characteristics):
1410         Document AC_COMPUTE_INT.  Fix wrong statements on Default
1411         Includes for AC_CHECK_SIZEOF and AC_CHECK_ALIGNOF.
1413         * lib/autoconf/general.m4 (AC_COMPUTE_INT): New.
1414         (_AC_COMPUTE_INT): Add obsoletion warnings.
1415         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF, AC_CHECK_ALIGNOF): Use
1416         AC_COMPUTE_INT.
1418         * NEWS: Document change.
1420 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
1422         * doc/autoconf.texi (Volatile Objects): New section.
1424         * NEWS: Document previous change.
1426 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
1428         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT):
1429         Require that long long int be at least 64 bits wide.  C99 requires
1430         this and enough programs depend on it so we should check for it.
1431         Bruno Haible reports in
1432         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00286.html>
1433         that long long int is 32 bits wide with some nonstandard compilers.
1434         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
1436 2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
1438         * tests/torture.at (Configuring subdirectories): Set CONFIG_SITE
1439         to a nonexistent file, so that we don't have to worry about
1440         a local site configuration that doesn't use /usr/local.
1441         Problem reported by Keith Marshall in
1442         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00133.html>.
1444 2006-06-28  Paul Eggert  <eggert@cs.ucla.edu>
1446         * doc/autoconf.texi: Be more consistent about using @acronym with
1447         "HP" and "HP-UX".  Remove mention of OSF; the old version wasn't
1448         quite right (it talked about "OSF/Tru64", even though the
1449         operating systems were called OSF/1, Digital UNIX, and Tru64 UNIX,
1450         and it even mentioned "OSF 4"!) and at this point there's little
1451         reason to talk about OSF any more, since it died in 1994.
1452         (Specific Compiler Characteristics): Simplify example of
1453         negative-size array.
1454         (File Descriptors): Reorder to make the text flow better.
1455         Remove joke about "appreciate the various levels"; I didn't get it.
1456         Add remark about HP-UX sh -x bug with stderr noted by Bob Proulx in
1457         <http://lists.gnu.org/archive/html/bug-coreutils/2006-06/msg00225.html>.
1458         (File Descriptors, Limitations of Usual Tools):
1459         Tone down the advice against renaming or removing open files.
1460         (Limitations of Usual Tools): Add a new section, on 'rm'.
1462 2006-06-26  Stepan Kasal  <kasal@ucw.cz>
1464         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Use -lX11, not
1465         -lXt in LIBS, idea from Karsten Hopp; this was due since
1466         this change:
1468         2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
1469         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
1470         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
1471         (which belong to Xt, not X itself).  See Debian bug 327655.
1473 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1475         * configure.ac (AC_INIT): Bump to 2.60a.
1476         * NEWS: Update.
1478 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1480         Version 2.60.
1482         * configure.ac, NEWS: Update.
1484 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1486         * config/texinfo.tex: Sync from upstream.
1488         * bin/autom4te.in (handle_traces): Transform the `@S|@'
1489         quadrigraph correctly in traces.
1491         * NEWS, lib/Autom4te/C4che.pm, lib/autoconf/functions.m4:
1492         Fix typos.
1494         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Expand tests for
1495         datarootdir-related errors only if AC_DATAROOTDIR_CHECKED is
1496         not defined.
1497         * doc/autoconf.texi (Changed Directory Variables): New node,
1498         to document the whole `datarootdir' business a bit better.
1499         * NEWS: Update.
1500         * tests/torture.at (datarootdir workaround): Extend test.
1501         Prompted by report by Alexandre Julliard.
1503 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
1505         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Check for C89 incompatibility
1506         when using default mode of IBM C 6 for AIX.  Problem and two-line
1507         fix reported by Larry Jones.
1509 2006-06-22  Alexandre Julliard <julliard@winehq.org>
1511         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Avoid warning
1512         about literal '${datarootdir}' if a definition is found in the
1513         output file.
1515 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
1517         * NEWS: Use "M4" rather than "m4" when appropriate.
1518         Problem reported by Eric Blake.
1519         * doc/autoconf.texi: Likewise.
1520         Use @acronym around BSD, GCC, and GNU when appropriate.
1521         (Why GNU M4): Renamed from "Why GNU m4".
1522         (Redefined M4 Macros): Mention that Posix
1523         m4wrap takes only 1 argument, but GNU M4 1.4.x takes more.
1524         (Buffer Overruns): Mention size_t and ptrdiff_t as alternatives
1525         to int.
1527 2006-06-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1529         * bin/autom4te.in (handle_output): Do not forbid the empty
1530         pattern.
1531         * tests/tools.at (autoconf: the empty token): New test.
1533 2006-06-20  Stepan Kasal  <kasal@ucw.cz>
1535         * lib/m4sugar/m4sugar.m4 (m4_init): Merge the two m4_wrap
1536         calls, so that we do not care whether they are LIFO or FIFO;
1537         in the m4_wrap, do not check which diversion is the topmost
1538         one, just check that the stack is balanced at the end.
1539         * lib/m4sugar/m4sh.m4 (AS_INIT): We are going to change the
1540         base diversion forever--pop the previous diversion before
1541         opening the new one; consequently, remove the m4_wrap call.
1542         * lib/autotest/general.m4 (AT_INIT): Likewise.
1543         * tests/m4sugar.at: Do not use
1544         m4_wrap([m4_diversion_pop([..])]), for educational purposes.
1546 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
1547         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1549         * NEWS: Document that m4wrap/m4_wrap might not be LIFO.
1550         * doc/autoconf.texi (Redefined M4 Macros): Likewise.
1551         Rework example of m4wrap token-pasting trouble so that it doesn't
1552         care whether it's LIFO or FIFO.
1553         Fix some "contrary to"s that are awkward in English.
1555 2006-06-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1557         * lib/autoconf/types.m4 (_AC_TYPE_INT): Set `$ac_cv_c_int$1_t'
1558         to `yes' instead of `int$1_t' if the type is found, for more
1559         consistent configure output (where $1 is the number of bits).
1560         (_AC_TYPE_UINT): Likewise for `uint$1_t'.
1561         Suggested by Bruno Haible.
1563         * lib/autoconf/types.m4 (_AC_TYPE_UNSIGNED_INT): Solaris 2.5.1
1564         needs _UINT8_T and _UINT64_T defines as well, to avoid clashes
1565         with system headers.  Report by Bruno Haible.
1567 2006-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1569         * config/config.guess, config/config.sub: Sync from upstream.
1571         * bin/Makefile.am (autoconf.in): Use `--melt' for autom4te,
1572         in order to avoid picking up an older installed frozen m4sh.m4f.
1573         Besides an outdated shell startup, this could have been created
1574         by an earlier M4 version with incompatible frozen file format.
1576 2006-06-16  Paul Eggert  <eggert@cs.ucla.edu>
1578         * README: Recommend m4 1.4.4 instead of 1.4.3..
1579         * doc/autoconf.texi: Likewise.
1580         (Special Chars in Names): Say that $(.FOO) is portable, as
1581         suggested by Stepan Kasal.
1582         (Installation Directory Variables, Build Directories):
1583         (Automatic Remaking, Subdirectories, Fortran Compiler):
1584         (Making testsuite Scripts, Defining Directories):
1585         Quote variable usages better.
1586         (Making testsuite Scripts): Add clean-local rule to makefile
1587         snippet, by Eric Blake.
1588         (Installation Directory Variables): Fix table item font.
1589         Reword slightly to clarify.  Generalize advice about
1590         not using special characters to include all file-related
1591         vars, not just VPATH.
1592         (Special Chars in Variables): Warn about special characters in
1593         $(srcdir) too.
1594         (Assignments): Clarify default-value example as suggested by
1595         Ralf Wildenhues in
1596         <http://lists.gnu.org/archive/html/autoconf-patches/2006-06/msg00072.html>.
1597         (Special Shell Variables): Note leading ./ or ../, as suggested
1598         by Eric Blake.
1599         (Limitations of Builtins): Under cd, warn about CDPATH.
1600         (The Make Macro MAKEFLAGS): Untabify.  Problem reported by
1601         Ralf Wildenhues.
1603 2006-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1605         * doc/autoconf.texi (Configuration Actions): Remove duplicate
1606         `@var', for texi2html.
1607         (Systemology): Some more word wrapping, for DVI output.
1608         (autom4te Invocation): The short option for `--melt' is `-M',
1609         not `-m'.
1611 2006-06-15  Paul Eggert  <eggert@cs.ucla.edu>
1613         * doc/autoconf.texi: More formatting and English tweaks,
1614         many suggested by Ralf Wildenhues.
1615         Reword to avoid "@code{...}'s" and the like, since it's ugly
1616         with Emacs info mode.  discontents -> woes.
1617         Put a few "will"s back.  time stamp -> timestamp.
1618         side-effect -> side effect.
1620 2006-06-14  Paul Eggert  <eggert@cs.ucla.edu>
1622         * doc/autoconf.texi (Initializing configure, Shell Substitutions):
1623         Warn about $@ not persisting.  Problem reported by Julien Danjou in
1624         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=372179>.
1625         (Special Chars in Names): Renamed from Leading _ in Macro Names.
1626         Mention other special chars, too.
1628 2006-06-14  Eric Blake  <ebb9@byu.net>
1630         * doc/autoconf.texi (The Make Macro MAKEFLAGS): New node.
1632 2006-06-13  Paul Eggert  <eggert@cs.ucla.edu>
1634         * doc/autoconf.texi: Some systematic minor improvements, as
1635         follows.  Use "makefile" when talking about makefiles
1636         generally (which might be named "makefile" or "Makefile" or even
1637         "foo.mk"), "Makefile" when talking about a specific makefile
1638         called "Makefile".  This unclutters the text from weird quotes
1639         (e.g., "`Makefile's" in info mode).  Similarly, use "@var{foo}
1640         values" rather than "@var{foo}s" and similar constructs containing
1641         "}s".  Use "Make rules" rather than "Makefile rules".  Minor
1642         English-language improvements.  Change the prefix "sub-" to "sub"
1643         and "re-" to "re".
1644         Put blank lines around examples more consistently.
1645         Avoid "rather" and "very" as intensifiers.
1646         Avoid "will" as an auxiliary.
1647         (Limitations of Make): Split this node into....
1648         (Portable Make, $< in Ordinary Make Rules, Failure in Make Rules):
1649         (Leading _ in Macro Names, Backslash-Newline-Newline):
1650         (Backslash-Newline Comments, Long Lines in Makefiles):
1651         (Macros and Submakes, The Make Macro SHELL, Comments in Make Rules):
1652         (obj/ and Make, make -k Status, VPATH and Make):
1653         (VPATH and Double-colon, $< in Explicit Rules):
1654         (Automatic Rule Rewriting, OSF/Tru64 Directory Magic):
1655         (Make Target Lookup, Single Suffix Rules, Timestamps and Make):
1656         New nodes, resulting from splitup of Limitations of Make.
1657         All cross-references changed.  Raise the top node from
1658         a section to a chapter, and all subnodes accordingly.
1659         Redo the introductory wording to match the new organization.
1660         (Installation Directory Variables): Use an example that is
1661         closer to what Autoconf actually does.  Mention that VPATH's
1662         value should not contain metacharacters or white space.
1663         (Fortran Compiler): Fix a VPATH bug in an example.
1664         (Leading _ in Macro Names): Mention that this problem is no longer
1665         of practical concern.
1666         (VPATH and Make): Reword the advice to make it clearer
1667         that Autoconf and Automake support VPATH in non-GNU make, but
1668         many packages have bugs in this area.
1669         ($< in Explicit Rules): Refer to Build Directories rather
1670         than using a (non-VPATH-safe) example.
1671         (Automatic Rule Rewriting): Mention the sort of disaster that
1672         can ensue with Solaris-style rule rewriting with VPATH.
1674 2006-06-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1676         * doc/install.texi (Compilers and Options): Weaken the
1677         suggestion to use GNU make for VPATH builds.
1679         * lib/autom4te.in (Automake-preselections): Add AM_PROG_CXX_C_O,
1680         AM_PROG_F77_C_O, AM_PROG_FC_C_O, AC_FC_SRCEXT, AC_FC_FREEFORM.
1682         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Fix M4 quotation
1683         in regular expression.
1685 2006-06-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1687         * doc/autoconf.texi (Installation Directory Variables):
1688         Drop extra @samp from `@table @samp' item.
1689         (Limitations of Usual Tools): Comment fix.
1690         Do not nest @samp just to point to other table items.
1691         (Writing testsuite.at) <AT_CHECK>: The second argument to
1692         `@dvar' is already @samp'ed.
1693         (Making testsuite Scripts) <AC_CONFIG_TESTDIR>: Likewise,
1694         do not use @var in the second argument.
1696 2006-06-07  Paul Eggert  <eggert@cs.ucla.edu>
1698         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Look for
1699         $as_shell.exe too.  Problem reported by Andreas Buening in
1700         <http://lists.gnu.org/archive/html/autoconf/2006-06/msg00038.html>.
1702 2006-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1704         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA): Work around
1705         `unused variable' compiler warning, for `-Wall -Werror'.
1706         Reported by Jaap Haitsma in
1707         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00012.html>.
1709 2006-06-06  Paul Eggert  <eggert@cs.ucla.edu>
1711         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove core file, in
1712         case the compiler dumps core.  Problem reported for
1713         OpenServer 5.0.7 by Tim Rice in
1714         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00019.html>.
1715         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
1716         Likewise.
1718 2006-06-06  Tim Rice <tim@multitalents.net>.
1720         * lib/freeze.mk: Quiet check-forbidden-patterns so the string
1721         "ERROR" only shows up in "make check" output if there is an
1722         error.
1724 2006-06-06  Eric Blake  <ebb9@byu.net>
1726         * tests/tools.at (automatically allowed tokens): Fix typo.
1728 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
1730         * NEWS: Don't blame non-GNU VPATH compatibility issues on Automake.
1732         * doc/autoconf.texi (Integer Overflow): Mention that INT_MIN % -1
1733         typically overflows on x86 CPUs, even though the C standard
1734         requires otherwise.
1736 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1738         * configure.ac (AC_INIT): Bump to 2.59e.
1739         * NEWS: Update.
1741 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1743         Version 2.59d.
1745         * config/texinfo.tex: Sync from upstream.
1747         * bin/autoreconf.in: Trace `LT_CONFIG_LTDL_DIR'; if it has been
1748         seen, invoke libtoolize with `--ltdl' argument.
1749         * lib/autom4te.in (Autoreconf-preselections): Adjust.
1750         * NEWS: Update.
1751         Suggested by Eric Blake.
1753 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
1755         * NEWS: Whoops!  AC_FUNC_STRNLEN isn't obsolescent.  Problem
1756         reported by Ralf Wildenhues.
1757         * doc/autoconf.texi (AC_FUNC_STRNLEN): Likewise.
1759 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1761         * THANKS: Update.
1763 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
1765         * doc/autoconf.texi: Modernize some of the references to Solaris.
1767 2006-06-05  Stepan Kasal  <kasal@ucw.cz>
1769         * lib/m4sugar/m4sugar.m4 (m4_require): Modify the error
1770         message issued by AC_REQUIRE.
1771         * tests/m4sugar.at: Check m4_require's error message.
1772         * tests/base.at: Check AC_REQUIRE's error message.
1773         * tests/local.at (AT_CHECK_M4): New macro, almost identical
1774         to...
1775         (AT_CHECK_AUTOM4TE): ... which is now a thin wrapper around
1776         AT_CHECK_M4.
1777         (AT_CHECK_AUTOCONF): Use AT_CHECK_M4; no longer support
1778         `expout' as the last parameter.
1779         * tests/tools.at: Adapt to the above change.
1781 2006-06-04  Stepan Kasal  <kasal@ucw.cz>
1783         * doc/autoconf.texi (Limitations of Usual Tools): Correct
1784         information about race-free implementations of mkdir.
1786 2006-06-04  Eric Blake  <ebb9@byu.net>
1788         * bin/autoreconf.in (help): Document M4 environment variable.
1789         * bin/autoconf.as (Usage): Likewise.
1790         * bin/autom4te.in (help): Likewise.
1791         * doc/autoconf.texi (autom4te Invocation): Likewise.
1793 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
1795         * NEWS: GNU make now recommended for VPATH builds.
1796         Mention that some macros are now documented to be obsolescent.
1797         * doc/autoconf.texi:
1798         Prefer "current" to "modern" to describe
1799         currently-used (albeit perhaps old-fashioned) hosts.
1800         Mention which ancient features no longer need to be worried about.
1801         setgid -> set-group-ID
1802         setuid -> set-user-ID (these are the Posix terms)
1803         Fix some misuses of "only".
1804         (AC_C_BACKSLASH_A, AC_C_CONST, AC_C_PROTOTYPES):
1805         (AC_C_STRINGIZE, AC_C_VOLATILE, AC_FUNC_CLOSEDIR_VOID):
1806         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT, AC_FUNC_MEMCMP):
1807         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP):
1808         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_STAT, AC_FUNC_STRFTIME):
1809         (AC_FUNC_STRNLEN, AC_FUNC_UTIME_NULL, AC_FUNC_VPRINTF):
1810         (AC_HEADER_DIRENT, AC_HEADER_STAT, AC_HEADER_STDC):
1811         (AC_HEADER_SYS_WAIT, AC_HEADER_TIME, AC_ISC_POSIX):
1812         (AC_PROG_GCC_TRADITIONAL, AC_STRUCT_TM):
1813         Mention that these macros are obsolescent.
1814         (Installation Directory Variables): shall -> should
1815         (File Descriptors): Mention that 0, 1, 2 might get reopened.
1816         Mention that it's now safe to use 3 and 4.
1817         (Limitations of Usual Tools): cp -r is now specified by Posix.
1818         Omit longwinded and obsolescent discussion of cp -f.
1819         Modernize discussion of expr, ls.
1820         (Limitations of Make): Modernize discussion of VPATH builds.
1821         Mention $? as a workaround in some cases.
1822         * doc/install.texi (Basic Installation):
1823         Mention "./configure; make; make install" first.  Be more
1824         specific about why this file is generic.  Remove unnecessary
1825         parens.  Remove misleading "only".  Remove obsolete advice
1826         about csh.  Don't say "configure" takes awhile; say it
1827         might take a while.  Suggest CFLAGS=-g rather than CFLAGS=-O2,
1828         and CC=c99 rather than CC=c89, as these are blessed by current
1829         Posix.  Recommend GNU make if doing a VPATH build.
1831 2006-06-03  Paul Eggert  <eggert@cs.ucla.edu>
1833         * doc/autoconf.texi: Use a consistent style "$ @kbd{...}" for
1834         examples involving shell prompts.
1836 2006-06-02  Stepan Kasal  <kasal@ucw.cz>
1837         and Paul Eggert  <eggert@cs.ucla.edu>
1839         * doc/autoconf.texi (Here-Documents): Add details about the
1840         pre-ksh93g bug.  Reword slightly to make it clearer.  Consistently
1841         use "here-documents" instead of "here documents".
1843 2006-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1845         * config/texinfo.tex, doc/standards.texi: Sync from upstream.
1847 2006-06-01  Paul Eggert  <eggert@cs.ucla.edu>
1849         * doc/autoconf.texi (File System Conventions): Warn about ":"
1850         anywhere in directory names.
1852 2006-05-31  Paul Eggert  <eggert@cs.ucla.edu>
1854         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be even more conservative
1855         about quoting the case statement, just in case.
1856         * doc/autoconf.texi (Here-Documents): Mention that the ksh bug
1857         was fixed in ksh93g; reported by Ralf Wildenhues.
1859 2006-05-31  Stepan Kasal  <kasal@ucw.cz>
1861         * doc/autoconf.texi (System Services): Do not document
1862         overriding EXEEXT via ac_cv_exeext=ext.
1863         (Particular Programs) <AC_PROG_MKDIR_P>:
1864         Document that ${MKDIR_P} understands --.
1865         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Improve the
1866         comment.
1868 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1870         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Guard against test
1871         argument with leading hyphen.  Problem reported by Paul Eggert.
1873 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
1875         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be more conservative
1876         about quoting ac_try: quote all of it, if any of it seems suspicious.
1877         This means we don't have to worry about ${ or sed any more.
1878         Also, double-quote the case statement, to work around misuses via
1879         underquoting as reported by Ralf Wildenhues in
1880         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00169.html>.
1881         (_AC_EVAL_STDERR): Revert, since evidently some packages rely on this
1882         undocumented and dangerous macro.
1883         Problem reported by Ralf Wildenhues in
1884         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00168.html>.
1886 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1888         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Check whether
1889         `dirname -- /' returns `/', for SunOS dirname scripts that escaped.
1890         Report by Sam Sirlin <sam@kalessin.jpl.nasa.gov>.
1892 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
1894         * lib/autoconf/general.m4: Revert AC_TRY_EVAL and AC_TRY_COMMAND,
1895         since evidently some packages rely on the old, broken behavior.
1896         Problem reported by Ralf Wildenhues in
1897         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00160.html>.
1898         (AC_TRY_EVAL, AC_TRY_COMMAND, _AC_EVAL): Go back to the
1899         pre-2006-05-26 definitions, but leave in the comments that
1900         these macros are dangerous and should not be used.
1901         (_AC_DO_ECHO): Renamed from _AC_EVAL_ECHO.  All callers changed.
1902         (_AC_DO): Renamed from _AC_EVAL.  All callers changed.
1903         (_AC_DO_STDERR): Renamed from _AC_EVAL_STDERR.  All callers changed.
1904         (_AC_DO_VAR): Renamed from AC_TRY_EVAL.
1905         (_AC_DO_TOKENS): Renamed from AC_TRY_COMMAND.
1907 2006-05-29  Paul Eggert  <eggert@cs.ucla.edu>
1909         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS): Rewrite to avoid
1910         the use of 'tr', since this is our only use of 'tr'.
1912 2006-05-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1913         and Paul Eggert  <eggert@cs.ucla.edu>
1915         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
1916         Don't assume 'grep' works on long lines, since AIX grep doesn't.
1918 2005-05-28  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1920         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Do not use `grep' on
1921         the output file in the `${datarootdir}' test.
1923 2005-05-28  Stepan Kasal  <kasal@ucw.cz>
1924         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1926         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If we have not seen
1927         mention of `datarootdir' in the input file(s), but literal
1928         `${datarootdir}' in the output file, and we haven't warned yet,
1929         then warn as well: the user may have (erroneously) used
1930         `AC_SUBST([mydatadir], [$datadir/my])' instead of the correct
1931         `AC_SUBST([mydatadir], ['${datadir}/my'])'.
1932         * tests/torture.at (datarootdir workaround): Extend this test.
1933         * NEWS: Update.
1935 2006-05-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1936         and Paul Eggert  <eggert@cs.ucla.edu>
1938         * doc/autoconf.texi (autoheader Invocation): The first argument to
1939         `AC_DEFINE_UNQUOTED' need not be a literal.  Mention the
1940         alternatives and clear up the language a bit.
1942 2006-05-27  Paul Eggert  <eggert@cs.ucla.edu>
1944         * NEWS: Reword notice for AC_TRY_COMMAND, AC_TRY_EVAL,
1945         ac_config_guess, ac_config_sub, ac_configure.
1946         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
1947         Fix typo that prevented an unnecessary space from being removed.
1948         Problems reported by Ralf Wildenhues in:
1949         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00143.html
1951 2006-05-26  Paul Eggert  <eggert@cs.ucla.edu>
1953         * doc/autoconf.texi (Particular Programs, Limitations of Usual Tools):
1954         Use better wording to talk about AC_PROG_MKDIR_P's thread-safety.
1955         Don't use the term "thread-safe" to talk about mkdir race
1956         conditions, since the problem is more a process than a thread
1957         issue.  Problem reported by Stepan Kasal in:
1958         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00088.html
1959         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Use code that mimics
1960         the test for 'install' more closely.  Look at MKDIR_P first.
1961         Look in the PATH, and at /opt/sfw/bin.
1962         Look for a 'gmkdir' program as well (Solaris 10 /opt/sfw/bin/gmkdir).
1963         Don't bother to try mkdir -p, since we already check mkdir --version;
1964         just look at the version number.  (There's no easy way to check
1965         for race-free implementations.)
1966         * tests/tools.at (autoconf: subdirectories): Adjust to above
1967         changes, since MKDIR_P now might end in "/mkdir -p".
1969         * doc/autoconf.texi (autoheader Invocation): Mention that the
1970         first arg of AC_DEFINE_UNQUOTED must be a literal.
1971         Problem reported by Ben Pfaff in
1972         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00090.html>.
1974         * NEWS: Mention that AC_TRY_COMMAND and AC_TRY_EVAL may be removed.
1975         * doc/autoconf.texi (Special Chars in Variables): New section.
1976         (Preset Output Variables): Warn about special chars in CPPFLAGS.
1977         (Installation Directory Variables): Quote $(datadir) better.
1978         (Limitations of Builtins): Describe some of eval's trickiness.
1980         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Simplify quoting.
1981         * lib/autoconf/fortram.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
1982         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put leading space
1983         in front of every arg, not just trailing args.  Quote apostrophes.
1984         (_AC_EVAL_ECHO): New macro.
1985         (_AC_EVAL, AC_EVAL_STDERR): Use it.  Quote arg of eval.
1986         (AC_TRY_EVAL, AC_TRY_COMMAND): Mention that these macros might get
1987         removed.
1988         (_AC_LINK_IFELSE): Use proper rule for shell continuation lines,
1989         exposed by quoting of eval argument.  Put the command on line line
1990         so it logs better.
1991         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use eval more safely.
1992         (_AC_PATH_X, AC_PATH_X): Quote more safely.
1993         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use eval more safely.
1994         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Don't use eval.
1995         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Minor style change.
1996         Handle special chars in prefix, ac_srcdir, ac_aux_dir.
1997         Use eval more safely.
1998         (_AC_OUTPUT_CONFIG_STATUS): Adjust to above changes.
1999         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Note that this API needs
2000         to be replaced.
2001         * tests/base.at (AC_TRY_COMMAND): Use proper rule for shell continuation
2002         lines, exposed by quoting of eval argument.
2004 2006-05-26  Stepan Kasal  <kasal@ucw.cz>
2005         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2007         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Drop the
2008         initialization of `ac_cv_exeext', do not override it if it was
2009         already set, unless it was set to `no', for compatibility with
2010         Autoconf-2.13, and comment this.
2011         Do not export `ac_cv_exeext', Libtool hasn't needed this for years.
2012         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise, do not export it.
2013         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_CROSS): Typos.
2014         * doc/autoconf.texi (Compilers and Preprocessors) <EXEEXT>:
2015         Document that this test may be overridden by setting
2016         `ac_cv_exeext'.
2018 2006-05-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2020         Revert these two patches:
2022         2006-04-06  Eric Blake  <ebb9@byu.net>
2023         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
2024         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
2025         2006-04-01.
2027         2006-04-01  Stepan Kasal  <kasal@ucw.cz>
2028         Clean up _AC_COMPILER_EXEEXT* macros.
2029         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
2030           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
2031           ac_file to the name of the default output file and call
2032           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
2033           initial `rm' of the candidate files...
2034         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
2035           the same list in subsequent `rm' calls, and for the temporary
2036           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
2037           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
2038         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
2039         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
2040           no longer needed) by libtool.  Make it a cache check.
2041         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
2042           copied here by mistake.
2043         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
2044           _AC_COMPILER_EXEEXT.
2045         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
2046           _AC_COMPILER_OBJEXT directly.
2047         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2049 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2051         * doc/autoconf.texi (Limitations of Usual Tools) < sed (`t')>:
2052         Fix description of how the buggy `sed' works.
2054 2006-05-25  Noah Misch  <noah@cs.caltech.edu>
2056         Sync from Automake:
2058         * lib/Autom4te/XFile.pm (lock): Allow EOPNOTSUPP, besides
2059         ENOLCK.  Only mention `make -j' when applicable.  Only raise
2060         fatal errors when `make -j' is involved.  Improve error message.
2062 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2064         * doc/autoconf.texi (Here-Documents): We now know more about
2065         the variable expansion in here documents bug.
2066         Thanks to Tim Rice and Stepan Kasal.
2068         * doc/autoconf.texi (Making testsuite Scripts): Add an example
2069         how to use TESTSUITEFLAGS.  Suggested by Eric Blake.
2071 2006-05-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2073         * tests/autotest.at (Multiline command from M4 expansion):
2074         No failure to be expected if the shell quotes newlines in
2075         commands in the `set -x' output.  Report by Tim Rice.
2076         * THANKS: Update.
2078 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
2080         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Don't use shell
2081         expansion in the here-documents used by config.status, as that
2082         runs afoul of the Korn shell version M-12/28/93d bug described in
2083         the Autoconf manual, and this in turn causes a Coreutils 5.95 build to
2084         fail as described by Tim Rice and diagnosed by Ralf Wildenhues in
2085         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00082.html>.
2087 2006-05-23  Jim Meyering  <jim@meyering.net>
2089         * lib/autoconf/functions.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK):
2090         Fix typo introduced with 2006-04-02 change.  It reversed the sense
2091         of the test.
2093 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
2095         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Simplify ac_dA and
2096         ac_dB slightly, to save bytes in the script.
2097         Max out at 50 lines, rather than 96; this is more likely
2098         (though not guaranteed) to avoid obscure 'sed' failures.
2100 2006-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2102         * lib/autotest/general.m4 (AT_INIT): UnixWare `tr' may interpret
2103         `tr -d -' as bad option argument.  Work around this by deleting
2104         an unrelated character.
2105         Report by Tim Rice <tim@multitalents.net>.
2107 2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>,
2108             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
2109             Stepan Kasal  <kasal@ucw.cz>
2111         * doc/autoconf.texi (Particular Programs): Do not promise that
2112         we always prefer the GNU version of the program, and that we
2113         search according to PATH; both rules can have exceptions.
2114         Update description of AC_PROG_GREP, AC_PROG_EGREP, AC_PROG_FGREP,
2115         AC_PROG_SED.  Move descriptions of limitations
2116         to the Limitations of Usual Tools section.
2117         (Limitations of Usual Tools) <sed>: Mention script length
2118         limitations with Solaris /usr/ucb/sed.
2119         <grep>: Fix wording for empty alternative.  Mention that -c and
2120         -l should not be combined, and that -E and -F should not be
2121         combined.
2123 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
2124         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2126         * lib/autoconf/programs.m4 (AC_PROG_SED): Catch script length
2127         limits in Solaris 8 /usr/ucb/sed by testing a long script.
2129 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
2131         * doc/autoconf.texi (Defining Symbols): Literal parameter of
2132         AC_DEFINE is now passed to m4_pattern_allow.
2133         * NEWS: Mention that; likewise for AC_SUBST.
2134         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL): Pass
2135         the parameter to m4_pattern_allow.
2136         * tests/tools.at: Add a check for that.
2138 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
2140         * lib/autoconf/status.m4: Fix typos.
2142 2006-05-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2144         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
2145         only the files that this macro generates.
2147 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
2149         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: For
2150         the HP-UX sed limitation of 99 commands, labels do not count.
2151         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Mention that
2152         in the comment.
2153         (_AC_OUTPUT_HEADER): Revert the change from 2006-05-19.
2155 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
2157         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
2158         Import the following fix from coreutils:
2160         2006-01-13  Jim Meyering  <jim@meyering.net>
2162         Invoke AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
2163         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need
2164         not double-quote uses of that variable, to accommodate the rare
2165         case in which getmntent is available in none of the libraries
2166         checked.  This happens at least on FreeBSD 5.0.
2168 2006-05-20  Paul Eggert  <eggert@cs.ucla.edu>
2170         * lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Bring back
2171         ac_config_guess, ac_config_sub, and ac_configure, since evidently
2172         some other programs unwisely rely on these undocumented vars.
2173         But put in warning comments about them.
2174         Problem reported by Ralf Wildenhues in
2175         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00068.html>.
2176         * NEWS: Document that these variables are intended to go away.
2178 2006-05-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2180         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): Require AC_PROG_CXX,
2181         and set the language to C++ (analogous to the equivalent Fortran
2182         tests).
2184         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): New macro.
2185         * doc/autoconf.texi (C++ Compiler): Document it.
2186         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Adjust comment.
2187         * NEWS: Update.
2189 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
2191         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Fix off-by-one bug
2192         that caused config.status to generate 100-command sed scripts; the
2193         portable limit is 99.
2195 2006-05-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2197         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Name temporary
2198         variable `ac_d' instead of `d' to avoid infringing namespace.
2199         Report by Ralf Menzel.
2201 2006-05-18  Paul Eggert  <eggert@cs.ucla.edu>
2203         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Don't prepend
2204         $ac_top_build_prefix to $MKDIR_P if it's just 'mkdir -p'.
2205         * tests/tools.at (autoconf: subdirectories): New test, taken from
2206         the corresponding problem report by Ralf Wildenhues in:
2207         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00053.html
2209         * lib/autoconf/functions.m4 (AC_REPLACE_FNMATCH, AC_FUNC_FNMATCH_GNU):
2210         Quote some uses of shell variables if they might suffer unexpected
2211         globbing.  This doesn't fix all instances of quoting problems that
2212         I found, just the easy ones that look safe.
2213         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR, _AC_INIT_HELP):
2214         (AC_CONFIG_AUX_DIR, AC_CONFIG_AUX_DIR_DEFAULT, AC_CONFIG_AUX_DIRS):
2215         (AC_CANONICAL_BUILD, AC_CANONICAL_HOST, AC_CANONICAL_TARGET):
2216         (AC_CACHE_LOAD, AC_CACHE_SAVE): Likewise.
2217         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT): Likewise.
2218         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
2219         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK, _AC_OUTPUT_SUBDIRS):
2220         Likewise.
2221         * lib/autotest/general.m4 (_AC_INIT_PARSE_ARGS): Likewise.
2222         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Likewise.
2224 2006-05-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2226         * bin/autoreconf.in ($help): Reword according to the manual.
2227         Suggested by Olly Betts.
2229 2006-05-17  Olly Betts  <olly@survex.com>  (tiny change)
2230         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2232         * bin/autoreconf.in: Pass the directory argument to
2233         `require_configure_ac'.  Fix comment.
2234         * tests/torture.at (Configuring subdirectories): Expose this.
2235         Reported by Olly Betts.
2237 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2239         * lib/Automake/Configure_ac.pm, lib/Automake/Channels.pm,
2240         lib/Automake/FileUtils.pm, lib/Automake/Struct.pm: Sync from
2241         Automake as follows:
2243         * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
2244         `$configure_in' instead of `configure.in', to preserve
2245         directory component.
2247 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2249         * config/config.guess, config/config.sub, config/texinfo.tex,
2250         doc/make-stds.texi, doc/standards.texi: Sync from upstream.
2252 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
2254         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Fix overly-picky
2255         test for C99 conformance; (bool) 0.5 is an integer constant
2256         expression, but (bool) -0.5 is not.  Problem reported by Fedor
2257         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
2259 2006-05-13  Paul Eggert  <eggert@cs.ucla.edu>
2261         * doc/autoconf.texi (Particular Programs): AC_PROG_MKDIR_P now
2262         sets MKDIR_P, not mkdir_p, to avoid collisions with Automake.
2263         Warn about obsolete install-sh files.  Remove stray sentence
2264         fragment and fix cross reference.
2265         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Don't insist on
2266         install -d; this undoes the 2006-05-10 change.
2267         (MKDIR_P): Mark with AN_MAKEVAR.
2268         (AC_PROG_MKDIR_P): Fall back on $ac_install_sh, not $INSTALL, so
2269         that we don't require $INSTALL to be thread-safe.  Move comments
2270         out of generated code.  Require AC_CONFIG_AUX_DIR_DEFAULT instead
2271         of AC_PROG_INSTALL.  Output a message saying that we're checking
2272         mkdir -p.  Set MKDIR_P rather than mkdir_p.  Do special magic for
2273         MKDIR_P instead of AC_SUBST.
2274         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE, _AC_OUTPUT_CONFIG_STATUS):
2275         Special magic for MKDIR_P, too.
2276         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Remove comment that defeated
2277         a dnl.
2278         * tests/local.at (AT_CHECK_ENV): mkdir_p -> MKDIR_P.
2280 2006-05-11  Paul Eggert  <eggert@cs.ucla.edu>
2282         Sync from Automake, as follows:
2284         2006-05-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2285         * config/install-sh: Initialize IFS, so field splitting isn't
2286         turned off later.
2287         * config/mkinstalldirs: Likewise.
2288         * config/missing: Remove superfluous quotes.  Replace all uses of
2289         `[' by `test', for consistency, and for..
2290         * config/missing (sed_minuso, sed_output): New variables.
2291         (autom4te, help2man, makeinfo): Use them.  Unifies detection of
2292         `-o FILE', `--output FILE', `--output=FILE', stricter regex.
2293         Fixes `missing' to detect `--output' for help2man.  Fixes
2294         PR automake/483.  Report by Dennis J. Linse.
2295         (autom4te): Document in `missing --help'.
2297 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
2299         * NEWS: New macro AC_PROG_MKDIR_P.  AS_MKDIR_P is now more robust.
2300         * config/install-sh: Don't use 'path' to talk about file names,
2301         as per GNU coding standards.  Close a race condition reported by Ralf
2302         Wildenhues and Stepan Kasal.  There is still a race condition
2303         on hosts that predate Posix 1003.1-1992, but we can't help this.
2304         Don't mishandle weird characters like space on pre-Posix hosts.
2305         Invoke mkdir at most once per dir arg on pre-Posix hosts.
2306         * doc/autoconf.texi (Programming in M4sh): Cross-reference to
2307         AC_PROG_MKDIR_P from AS_MKDIR_P.
2308         (Limitations of Usual Tools): Cross-reference to AC_PROG_MKDIR_P
2309         from mkdir.  Mention that Autoconf 2.60 install-sh is safe but
2310         earlier editions are not (including Automake 1.8.3).
2311         Do not suggest mkinstalldirs for thread-safety.
2312         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Insist on an 'install'
2313         that understands -d, so that AC_PROG_MKDIR_P can fall back on $INSTALL.
2314         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Make it more robust in the
2315         presence of special characters and race conditions.
2316         * tests/local.at (AT_CHECK_ENV): Add mkdir_p to the list of variables
2317         in Autoconf's name space.
2319 2006-05-10  Bruno Haible  <bruno@clisp.org>
2320         and Paul Eggert  <eggert@cs.ucla.edu>
2322         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): New macro, taken
2323         from Automake with minor changes.
2324         * doc/autoconf.texi (Particular Programs): Document AC_PROG_MKDIR_P.
2326 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
2328         * config/install-sh: Update to Automake CVS version, as follows:
2329         2006-04-25  Stepan Kasal  <kasal@ucw.cz>
2330         * lib/install-sh: Simplify the expr implementation of dirname.
2331         2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
2332         * lib/install-sh: Handle --, and diagnose unknown options.
2334 2006-05-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2336         * tests/Makefile.am (AUTOTEST): Use `$(MY_AUTOM4TE)' instead of
2337         `./autom4te' to create `./testsuite', since the `all' target
2338         will ensure its presence, but `installcheck' should not create
2339         the uninstalled wrappers.
2341         * tests/torture.at (Unusual Automake input files): Skip if we
2342         detect automake < 1.8.
2344 2006-05-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2346         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If ac_cv_prog_cc_stdc
2347         is set to `no', then that overrides and sets ac_cv_prog_cc_c89
2348         and ac_cv_prog_cc_c99 to `no', for backward compatibility.
2349         * NEWS: Update.
2351 2006-05-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2353         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Take care not to
2354         munge (multiple) white space and other oddities.
2355         * tests/torture.at (AT_CHECK_AC_ARG_VAR): Make sure to M4-escape
2356         single quotes in variable assignment.
2357         (AC_ARG_VAR, configure invocation): Adjust tests to expose this
2358         and similar failures by adding multiple spaces, tabs, and other
2359         special characters.
2360         Report and different test suggested by Francesco Romani
2361         <fromani@gmail.com> and Andrew Church <achurch@achurch.org>.
2363         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): When we escape
2364         single quotes, we only need to search for single quotes; this
2365         both simplifies the search pattern, and makes us less
2366         susceptible to `echo' variations for arguments not containing
2367         single quotes.
2368         (_AC_ARG_VAR_VALIDATE): Likewise.
2370 2006-05-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2372         * doc/autoconf.texi (Special Shell Variables) <IFS>: Document
2373         `$*' and IFS concatenation issue with traditional shells and
2374         bash-2.04.  Report by Seanster@Seanster.com.
2376 2006-05-03  Bruno Haible  <bruno@clisp.org>
2378         * doc/autoconf.texi (Limitations of Usual Tools): Identify more
2379         precisely which Mac OS X versions have the od problem.
2381 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
2383         * doc/autoconf.texi: Use @option systematically.
2385 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
2386         and Bruno Haible  <bruno@clisp.org>
2388         * doc/autoconf.texi (Limitations of Usual Tools): Add a paragraph
2389         about 'od'.
2390         (Integer Overflow): Mention the special case of integer division
2391         overflow.
2393 2006-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2395         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Cater for
2396         traditional shells like the Solaris one that do not use the
2397         first IFS character for assembling `$*'.
2398         Prompted by a related report from autoconf_bug@nro.ca.
2400 2006-05-01  Paul Eggert  <eggert@cs.ucla.edu>
2401         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2403         * doc/autoconf.texi (Limitations of Builtins, Limitations of Make):
2404         Mention more problems with the -e option.
2406 2006-04-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2408         * NEWS: Typo.
2409         * doc/autoconf.texi (Systemology): Mention the Heirloom Project.
2411         * doc/autoconf.texi (Introduction, Pointers): Use `@/' liberally
2412         in URLs to improve DVI formatted output (requires texinfo 4.6).
2413         (System Services, Systemology, Shellology): Likewise.
2414         (Limitations of Usual Tools): Rewrite Mac OS X example for nicer
2415         output.
2417         * doc/autoconf.texi (Fortran Compiler): Do not use `@ovar' in
2418         continuous text.
2419         (Runtime): Fix macro argument names to match description:
2420         `action-if-found' -> `action-if-true' and similarly.
2421         (Obsolete Macros): Likewise.
2422         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE): Likewise.
2423         (AC_COMPILE_IFELSE, AC_TRY_COMPILE, _AC_LINK_IFELSE)
2424         (AC_LINK_IFELSE, AC_TRY_LINK, AC_COMPILE_CHECK): Likewise.
2426 2006-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2428         * doc/autoconf.texi (Limitations of Make): Clean up markup.
2430         * ChangeLog: Typo.
2431         * doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for
2432         DVI output.
2434 2006-04-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2436         * doc/autoconf.texi (Limitations of Builtins): Document FreeBSD
2437         /bin/sh set unsorted output.
2438         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Adjust.
2439         * tests/local.at: Likewise.
2441 2006-04-26  Paul Eggert  <eggert@cs.ucla.edu>
2443         * doc/autoconf.texi (Portable C and C++, Varieties of Unportability):
2444         (Integer Overflow, Null Pointers, Buffer Overruns):
2445         (Floating Point Portability, Exiting Portably): New sections.
2446         (Writing Test Programs): Fix some langauge.  Recommend exiting
2447         with status 1, not merely nonzero.  Clarify exit declaration.
2448         (Run Time): Move C exit status stuff to new Exiting Portably section.
2449         (Systemology): Mention Posix and levenez.  Update v7 reference.
2450         (Portable Shell): Mention the Posix shell.
2452 2006-04-25  Stepan Kasal  <kasal@ucw.cz>
2454         * bin/autoconf.as (me): Replace by as_me.
2456 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
2458         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Don't use AS_ERROR,
2459         since as_me isn't set yet.
2461 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
2463         Prepare for deprecation of AS_BASENAME and AS_DIRNAME, and fix
2464         a few minor bugs in this area.
2466         * doc/autoconf.texi (Programming in M4sh): Comment out the
2467         documentation of AS_BASENAME, for now.
2468         (Shell Substitutions): Do not use AS_DIRNAME in an example.
2469         (Limitations of Builtins) <basename>: Do not refer to
2470         AS_BASENAME.
2471         * bin/autoconf.as (me): Don't use AS_BASENAME.
2472         (dir): Remove the unused variable.
2473         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED): Renamed from
2474         AS_DETECT_REQUIRED.  All uses changed.
2475         (_AS_DETECT_SUGGESTED): Renamed from AS_DETECT_SUGGESTED.
2476         All uses changed.
2477         (_AS_DETECT_BETTER_SHELL): Put ;; at the end of a case.
2478         (AS_BASENAME): Use "basename --" to protect against leading "-".
2479         (_AS_BASENAME_EXPR): Renamed from AS_BASENAME_EXPR.  All uses changed.
2480         (_AS_BASENAME_SED): Renamed from AS_BASENAME_SED.  All uses changed.
2481         (_AS_BASENAME_PREPARE): Reject implementations that cannot handle "--".
2482         (_AS_DIRNAME_PREPARE): Likewise.
2483         (_AS_DIRNAME_EXPR): Renamed from AS_DIRNAME_EXPR.  All uses changed.
2484         (_AS_DIRNAME_SED): Renamed from AS_DIRNAME_SED.  All uses changed.
2485         (AS_DIRNAME): Use "dirname --".
2487 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
2489         * doc/autoconf.texi (Runtime): Renamed from "Run Time".  All uses
2490         of "run time" and "run-time" changed to "runtime", for consistency.
2491         * lib/autoconf/fortran.m4: Likewise (in comment).
2492         * lib/autoconf/functions.m4: Likewise.
2493         * lib/autoconf/general.m4: Likewise.
2494         * lib/autoconf/headers.m4: Likewise.
2496         * doc/autoconf.texi (Run Time): Document the exit status situation
2497         with more accuracy and detail.
2499 2006-04-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2501         * doc/autoconf.texi (Introduction): The GNU Autoconf Macro
2502         Archive is not officially `GNU' any more.  Update URL.
2503         (Defining Directories): Likewise
2504         * lib/autoconf/c.m4 (AC_C_RESTRICT): Update URL.
2506 2006-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2508         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Remove the leading
2509         newline from the `trap' code to finish `config.log'; the NetBSD
2510         /bin/sh resets the exit status after an empty command, as
2511         documented in doc/autoconf.texi.
2512         Reported by Dalibor Topic <robilad@kaffe.org>.
2514 2006-04-19  Paul Eggert  <eggert@cs.ucla.edu>
2516         * doc/autoconf.texi (C Compiler): Clarify AC_C_TYPEOF.
2517         Suggested by Bruno Haible.
2519 2006-04-18  Paul Eggert  <eggert@cs.ucla.edu>
2521         * configure.ac (ac_cv_sh_n_works): Don't try to test for it, since
2522         some shells (e.g., Solaris 8 /bin/sh) implement it verrrry slowly.
2523         Instead, just list the shells that we know work.
2524         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Remove 2nd arg.  All uses
2525         changed.  Be more cautious about the _cv_ variable.
2526         * tests/tools.at (Syntax of the shell scripts): Check the
2527         _cv_ variable once, at first, to avoid an internal autoconf error
2528         when sh -n does not work.
2530 2006-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2532         * lib/Autom4te/FileUtils.pm: Sync from Automake.
2534 2006-04-16  Paul Eggert  <eggert@cs.ucla.edu>
2536         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Don't
2537         use ">&-" since we're only 99.999% sure that this is portable,
2538         and since the MinGW bug is fixed in a different way.
2539         * lib/autotest/general.m4 (AT_INIT): Likewise.
2541 2006-04-16  Stepan Kasal  <kasal@ucw.cz>
2543         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle --recheck
2544         before opening config.log, to avoid hitting a bug on MinGW.
2546 2006-04-14  Paul Eggert  <eggert@cs.ucla.edu>
2548         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Close
2549         AS_MESSAGE_LOG_FD before reopening it onto the log file.
2550         This works around a MinGW bug reported by Eric Paire.
2551         Make sure that all writes to the log file append to it,
2552         rather than possibly losing data.
2553         * lib/autotest/general.m4 (AT_INIT): Likewise.
2555 2006-04-14  Stepan Kasal  <kasal@ucw.cz>
2557         * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
2558         description.
2560 2006-04-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2562         * NEWS: Update.
2564         * configure.ac (AC_INIT): Bump to 2.59d.
2566 2006-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2568         Version 2.59c.
2570         * Makefile.maint (news-date-check): Do not require a leading `*'
2571         before the release date in NEWS.
2573 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
2574         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2576         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If the templates for
2577         the instantiated file do not contain the string 'datarootdir'
2578         but contain @datadir@, @docdir@, @infodir@, @localedir@, or
2579         @mandir@, replace the reference '${datarootdir}' by the value.
2580         * tests/torture.at (datarootdir workaround): New test.
2581         * NEWS: Advertise this temporary fixup.
2582         Based on a patch by Bruno Haible, reported and analyzed by
2583         Paul Eggert and Noah Misch.
2585 2006-04-12  Eric Blake  <ebb9@byu.net>
2587         * tests/autotest.at (Debugging a failed test): Fix comment.
2589 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
2591         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Simplify the summary of
2592         all the changes since 2006-04-07.
2594 2006-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2596         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): If `ln -s file1 file2'
2597         succeeded, but `ln -s file dir' failed, take care to remove the
2598         leftover target before the next test, to prevent its spurious
2599         failure; also make sure `ln file dir' works before selecting it.
2600         Thanks to Keith Marshall for pointing this out.
2601         * THANKS: Update.
2603         * lib/autotest/general.m4 (AT_INIT): Store quoted variable
2604         assignments in `at_debug_args', so that we put them correctly
2605         in the `run' script.
2606         * tests/autotest.at (Debugging a failed test): Unmark XFAIL.
2607         Reported by Eric Blake.
2609 2006-04-11  Eric Blake  <ebb9@byu.net>
2611         * tests/autotest.at (AT_CHECK_AT): Add new argument, to allow
2612         top-level tests after micro-suite has been run.   Used in...
2613         (Debugging a successful test, Debugging script and environment),
2614         (Debugging a failed test): ...these new tests.  The first of these
2615         is fixed by...
2616         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): New
2617         macro, split out from...
2618         (AT_INIT): ...here, so that using -d also generates a run script.
2619         Document that -d inhibits top-level logging.
2620         * doc/autoconf.texi (testsuite Invocation): Document that -d only
2621         inhibits top-level logging; debug scripts are created.
2623         * lib/autotest/general.m4 (_AT_CHECK): Avoid syntax error on empty
2624         check.
2625         * tests/autotest.at (Empty test, Empty check): New test to check it.
2627         * lib/autoconf/c.m4 (AC_C_CONST, AC_C_VOLATILE): Avoid warnings
2628         from gcc.
2630 2006-04-10  Stepan Kasal  <kasal@ucw.cz>
2632         * tests/mktests.sh: Use "trap '' 0", not "trap 0".  Do not touch
2633         the files if a problem appears.  Make the empty *.at files
2634         read-only, too.  Proposed by Ralf Wildenhues.
2636 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2638         * config/Makefile.am: Add comment to force updated Makefile.in.
2640         * lib/freeze.mk: Fix typo in comment.  Unlike the last, white
2641         space only patch to this file, this patch causes the Makefile.in
2642         files that include freeze.mk to be updated, and thus have a
2643         newer time stamp again, which in turn makes a pristine CVS
2644         checkout have correct time stamps.
2646         * Makefile.maint (cvs-sv): New macro, to be used..
2647         (config.guess-url_prefix, config.sub-url_prefix)
2648         (texinfo.tex-url_prefix, standards.texi-url_prefix): ..here;
2649         point to CVS text checkout of Gnulib files.
2650         (copyright-check): Bump current year.
2651         (announcement): Do not hard-wire `./announce-gen'.
2652         (cvs-update): Propagate failures of `cvs' and `move-if-change'
2653         correctly.
2654         * Makefile.cfg (executable-update): Use `chmod a+x' instead of
2655         `chmod +x'.
2656         (wget_files): Update config.guess, config.sub, texinfo.tex by
2657         `wget-update', now that their URLs work again.
2659 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
2661         * doc/autoconf.texi (Particular Types): Don't use AC_CHECK_TYPE.
2662         Problem noted by Paul D. Smith.
2664 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2666         * doc/autoconf.texi: Remove unused words from word list.
2667         * .x-sc_prohibit_atoi_atof, .x-sc_space_tab, .x-sc_sun_os_names,
2668         .x-sc_trailing_space: New files.
2670         * doc/standards.texi: Sync from gnulib.
2672         * NEWS, doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): Mark
2673         `LIBOBJDIR' as experimental.
2675         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): MSYS `ln -s' fails
2676         with a target directory; it's internally implemented as `cp'
2677         anyway, but since Autoconf advertises the possibility to use
2678         a target directory when LN_S is `ln -s', we need to find out.
2679         Reported by Rolf Ebert <rolf.ebert.gcc@gmx.de> against MSYS,
2680         analyzed by Keith Marshall <keith.marshall@total.com>.
2682         * THANKS: Update.
2684 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
2686         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
2687         confdefs.h as-is.  In general, if it has backslash-newline or the
2688         like, then it doesn't work either to sort or to remove empty
2689         lines.
2691 2006-04-09  Stepan Kasal  <kasal@ucw.cz>
2693         * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
2695 2006-04-09  Alexandre Duret-Lutz  <adl@gnu.org>
2697         * lib/autom4te.in (Automake-preselections): Preselect
2698         _AM_SUBST_NOTMAKE.
2700 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
2702         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Use '\'' for an
2703         apostrophe within a single-quoted string, as this is the usual
2704         tradition and is easier to read than '"'"'.  Don't rely on the
2705         shell treating "$/" like '$/'.  Use a more-consistent indenting
2706         style for the trap.
2708 2006-04-09  Eric Blake  <ebb9@byu.net>
2710         * tests/autotest.at (Backquote command substitution),
2711         (Multiline backquote command substitution): Remove mistaken
2712         AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
2713         applied...
2714         (Parenthetical command substitution, Multiline parenthetical
2715         command substitution): here.
2717 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
2719         Import macros from gnulib (often changing their name).
2721         * NEWS: AC_C_TYPE_LONG_DOUBLE is now obsolete.
2722         New macros AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE,
2723         AC_CHECK_HEADERS_ONCE, AC_FUNC_STRTOLD, AC_HEADER_ASSERT,
2724         AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE,
2725         AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_INT8_T,
2726         AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
2727         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT,
2728         AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T,
2729         AC_TYPE_UINT64_T, AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T,
2730         AC_TYPE_UNSIGNED_LONG_LONG_INT, AC_USE_SYSTEM_EXTENSIONS.
2731         The manual mentions Gnulib more prominently.
2732         * doc/autoconf.texi (Gnulib): New node.
2733         (Pointers): Add Gnulib URL.
2734         (Particular Functions): Alphabetize.  Add AC_FUNC_STRTOLD.
2735         (Generic Functions): Add AC_CHECK_FUNCS_ONCE.  Refer to new
2736         Gnulib section.
2737         (Particular Headers): Add AC_HEADER_ASSERT.  For stdbool.h,
2738         suggest a #define rather than a typedef for _Bool, and mention
2739         Gnulib rather than trying to substitute stdbool code.
2740         (Generic Headers): Add AC_CHECK_HEADERS_ONCE.
2741         (Generic Declarations): Add AC_CHECK_DECLS_ONCE.
2742         (Particular Structures): Add AC_STRUCT_DIRENT_D_INO,
2743         AC_STRUCT_DIRENT_D_TYPE.
2744         (Particular Types): Mention stdint.h and inttypes.h as standard
2745         headers too.
2746         Add AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
2747         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_DOUBLE,
2748         AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_LONG_LONG_INT, AC_TYPE_UINT8_T,
2749         AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
2750         AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT.
2751         (C Compiler): Move AC_C_LONG_DOUBLE to ...
2752         (Obsolete Macros): here.  Under AC_LONG_DOUBLE, mention
2753         AC_TYPE_LONG_DOUBLE or AC_TYPE_LONG_DOUBLE_WIDER instead.
2754         (Posix Variants): Add AC_USE_SYSTEM_EXTENSIONS.
2755         (Coding Style).  Don't mention m4_expand_once.
2756         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Implement via
2757         AC_TYPE_LONG_DOUBLE_WIDER.  Now obsolete.
2758         * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): New macro.
2759         (AC_CHECK_FUNCS): Use it.
2760         (AC_CHECK_FUNCS_ONCE, AC_FUNC_STRTOLD): New macros.
2761         (AC_FUNC_WAIT3): "the Open Group standards" -> "POSIX".
2762         * lib/autoconf/general.m4 (AC_CHECK_DECLS_ONCE): New macro.
2763         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): New macro.
2764         (AC_HEADER_ASSERT): New macro.
2765         (AC_HEADER_STDBOOL): Don't assume "#error" works.
2766         Catch a bug in IBM AIX xlc compiler version 6.0.0.0.
2767         Catch a bug in an HP-UX C compiler.
2768         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): New macro.
2769         * lib/autoconf/types.m4 (AC_TYPE_INTMAX_T. AC_TYPE_UINTMAX_T):
2770         (AC_TYPE_INTPTR_T, AC_TYPE_UINTPTR_T. AC_TYPE_LONG_DOUBLE):
2771         (AC_TYPE_LONG_DOUBLE_WIDER, AC_C_LONG_DOUBLE, AC_TYPE_LONG_LONG_INT):
2772         (AC_TYPE_UNSIGNED_LONG_LONG_INT, _AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT):
2773         (_AC_STRUCT_DIRENT, AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE):
2774         New macros.
2776         * tests/mktests.sh (ac_exclude_list, au_exclude_list): Do not
2777         use /^foo|bar$/, it does not mean /^(foo|bar)$/.
2779 2006-04-08  Stepan Kasal  <kasal@ucw.cz>
2781         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Fix the wording
2782         of the warning introduced by the 2001-08-28 change.
2784 2006-04-08  Stepan Kasal  <kasal@ucw.cz>,
2785             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2787         * lib/autoconf/general.m4 (AC_CACHE_SAVE): All `ac_cv_env_foo'
2788         variables shall be overriden by the cache.
2789         * tests/torture.at (AC_ARG_VAR): Test also with a first value
2790         that contains braces.
2792 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
2794         Revert the patch from 2006-04-01 and only improve
2795         _AS_DETECT_BETTER_SHELL:
2797         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not optimize; do not
2798         skip nonexistent directories.
2799         (_AS_DETECT_BETTER_SHELL): The optimization is moved here--try
2800         only shell candidates which exist.
2801         (AS_UNAME): No need to give three parameters to _AS_PATH_WALK.
2802         * lib/autotest/general.m4 (AT_INIT): No need to give three
2803         parameters to _AS_PATH_WALK.
2805 2006-04-07  Stepan Kasal  <kasal@ucw.cz>,
2806             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2808         * bin/autoupdate.in (handle_autoconf_patches): Change the way we
2809         distinguish m4sugar macros.
2810         * tests/tools.at (autoupdating with aclocal and m4_include):
2811         New test.  Bug reported by Gary V. Vaughan <gary@gnu.org>,
2812         test case by Noah Misch <noah@cs.caltech.edu>.
2814 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
2816         Revert my change from 2006-03-17, in other words:
2817         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Insert BIN_SH=xpg4
2818           and DUALCASE=1.
2819         (AS_SHELL_SANITIZE): Remove DUALCASE=1.
2820         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Say that
2821           it is set.
2823 2006-04-07  Eric Blake  <ebb9@byu.net>
2825         * doc/autoconf.texi (Programming in M4sh): Document that
2826         AS_MKDIR_P exits the script on failure.
2827         * lib/autotest/general.m4: Remove redundant AS_ERROR.
2829 2006-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2831         * config/elisp-comp, config/install-sh, config/mdate-sh,
2832         config/missing, config/mkinstalldirs: Sync from Automake.
2834         * lib/Autom4te/FileUtils.pm, lib/Autom4te/Struct.pm: Sync
2835         from Automake.
2837         * doc/make-stds.texi: Sync from gnulib.
2839 2006-04-06  Eric Blake  <ebb9@byu.net>
2841         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
2842         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
2843         2006-04-01.
2845 2006-04-06  Stepan Kasal  <kasal@ucw.cz>,
2846             Eric Blake  <ebb9@byu.net>,
2847             Paul Eggert  <eggert@cs.ucla.edu>,
2848             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2850         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Fix the detection of
2851         whether `set' quotes correctly: redirect stderr of the tested
2852         `set', and use a subshell, for Ultrix; use `sed' instead of
2853         `grep' for zsh `set' which may write binary output; match only
2854         at the beginning of a line, to avoid false positives.
2855         In order to avoid false positives by unrelated variables with
2856         multiline content, put the dump algorithm in a subshell and
2857         unset all variables containing newlines (except some which are
2858         special to the shell).  Warn about cache variables that are
2859         unset.
2861 2006-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2863         * config/config.guess, config/config.sub, config/texinfo.tex:
2864         Sync from upstream.
2866         * tests/mktests.sh: Reword comments.
2868         * tests/mktests.sh: Only skip internal macros starting with
2869         `_AC_' or `__AC_'.  Noted by Stepan Kasal.
2870         Update exclusion lists for the test suite to this end:
2871         (AC_ARG_VAR): Do test this now.
2872         (AC_SEARCH_LIBS, AC_REPLACE_FUNCS): Need an argument.
2873         (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
2874         (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
2875         (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
2877         * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
2878         shell issue with double-quoted command substitutions of native
2879         commands.
2880         Reported to MSYS by Mark Cave-Ayland, to Autoconf by Keith
2881         Marshall.
2883         * Makefile.maint (sc_cast_of_argument_to_free): Do not fail when
2884         no file matches the glob, discard the warning, set `nullglob'.
2885         (syntax-check): Likewise.
2886         (sc_cast_of_x_alloc_return_value): Likewise.
2887         (sc_cast_of_alloca_return_value, sc_error_exit_success)
2888         (sc_prohibit_jm_in_m4, .re-list, sc_unmarked_diagnostics)
2889         (m4-check): Likewise.
2890         (sc_system_h_headers): Do not print rule on execution.
2891         (sc_tight_scope): Do not fail for non-existing `src' directory.
2892         (sc_changelog): Skip the Copyright footer.
2893         * lib/autoconf/lang.m4: Remove trailing space.
2895         * lib/autoconf/status.m4: More replacements to
2896         <tab><space> where this makes sense.
2898 2006-04-06  Stepan Kasal  <kasal@ucw.cz>
2900         * tests/Makefile.am (maintainer-check-posix):
2901           s/POSIXLY_CORRECTLY/POSIXLY_CORRECT/
2903         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Append TAGS to
2904           ac_config_<foo>s again, sometimes normalized, sometimes not.
2905         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS):
2906         (AC_CONFIG_COMMANDS): Do not do so here.
2907         (_AC_CONFIG_REGISTER_DEST): Double quote the tags in macros _AC_LIST_TAGS
2908           and_AC_LIST_TAG_COMMANDS; fixes another regression introduced by the
2909           2005-07-25 rewrite.  Noticed by Noah Misch.
2911         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): Do not define
2912           _AC_PRESERVE_HELP_ORDER, ...
2913         (AC_ARG_ENABLE, AC_ARG_WITH): ... use AC_PROVIDE_IFELSE insetad.
2915         * lib/autoconf/general.m4 (AC_ARG_VAR): Do not use m4_divert_once
2916           inside m4_expand_once; it is redundant.
2918         * lib/autoconf/general.m4 (_AC_INIT_HELP): Remove the broken support
2919           for --help from Cygnus `configure.'
2921 2006-04-06  Paul Eggert  <eggert@cs.ucla.edu>
2923         * doc/autoconf.texi (C Compiler): Warn about #error.  Follows up
2924         on a patch proposed by Ralf Wildenhues.
2926 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
2928         * lib/autoconf/status.m4: Replace <space>''<tab> with
2929         <tab><space> where this makes sense.
2931 2006-04-05  Howard Chu  <hyc@highlandsun.com>  (trivial change)
2932             Noah Misch  <noah@cs.caltech.edu>
2934         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): New macro.
2935         (AC_ARG_ENABLE, AC_ARG_WITH): Adjust.
2936         * doc/autoconf.texi (Help Formatting): New node.
2937         * NEWS: Announce AC_PRESERVE_HELP_ORDER.
2939 2006-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2941         * TODO, config/Makefile.am, lib/freeze.mk, lib/autoconf/c.m4,
2942         lib/autoconf/specific.m4, lib/autoconf/status.m4,
2943         lib/autoconf/types.m4, lib/autotest/general.m4,
2944         tests/mktests.sh, tests/torture.at: White space cleanup:
2945         remove some SPACE before TAB, or add quoting ('' or @&t@).
2947         * NEWS, TODO, bin/autoreconf.in: `filesystem' -> `file system'.
2949         * doc/autoconf.texi (Shell Substitutions): Document `^' vs. `|'.
2951 2006-04-05  Eric Blake  <ebb9@byu.net>
2953         * lib/autotest/general.m4 (AT_INIT): Prep AT_*_all, so that an
2954         empty test suite works.
2955         * tests/autotest.at (Empty test suite): Remove xfail.
2957 2006-04-05  Noah Misch  <noah@cs.caltech.edu>
2959         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Do not append normalized
2960         TAGS to ac_config_<foo>s.
2961         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS): Do so here.
2962         (AC_CONFIG_COMMANDS): Append NAME to ac_config_commands without
2963         normalizing it, consistent it with previous releases.
2964         * tests/torture.at (Macro calls in AC_CONFIG_COMMANDS tags): New test.
2966 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
2968         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR, AS_DIRNAME_EXPR):
2969         Use simplified args that Eric Blake originally suggested.
2971 2006-04-04  Paul Eggert  <eggert@cs.ucla.edu>
2973         * tests/mktests.sh: Don't use 'cat'; just read the files directly.
2974         Prefer 'sort -u' to 'sort | uniq'.  Filter data before sorting it.
2975         Use 'comm' rather than N instances of grep; this also fixes a bug
2976         whereby substrings were incorrectly matched, causing us to not
2977         generate tests for AC_F77_NAME_MANGLING and AC_FUNC_LSTAT.
2978         (exclude_list): Exclude empty macros.
2979         (ac_exclude_list): Exclude AC_INCLUDES_DEFAULT.
2981         Use awk rather than grep -E or egrep, to avoid
2982         portability problems with regular expressions containing newlines.
2983         (exclude_list, ac_exclude_list, au_exclude_list, ac_exclude_script):
2984         Switch from grep to awk syntax.
2985         (ac_exclude_script): Renamed from ac_exclude_egrep.
2986         (au_exclude_script): Renamed from au_exclude_egrep.
2988 2006-04-04  Noah Misch  <noah@cs.caltech.edu>
2990         * lib/autoconf/general.m4 (_AC_INIT_HELP): Only `configure.in' evidences
2991         a subdirectory subject to Cygnus `configure'.
2992         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Likewise.
2994         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Omit the bug
2995         report request when we have no AC_PACKAGE_BUGREPORT.
2997 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2999         * THANKS: Update.
3001         * tests/mktests.sh: Update copyright year in the header of the
3002         generated files.
3004         * lib/autoconf/c.m4 (AC_C_INLINE): Do not skip cleanup code.
3005         (AC_C_RESTRICT): Likewise.  Furthermore, add a function with a
3006         typedef'ed restricted pointer, to catch a compiler bug on
3007         HP-UX 11.x, and fix warnings so it passes with -Werror.
3008         (_AC_PROG_CC_C99): Likewise.
3009         Reported by Albert Chin <china@thewrittenword.com>.
3010         * tests/mktests.sh: Do not skip AC_C_INLINE, AC_C_RESTRICT.
3012 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
3014         * bin/autoscan.in (subdirs): New global.
3015         (scan_file): Prune directories with configure{,.{ac,in,gnu}}.
3016         (output): Emit AC_CONFIG_SUBDIRS as needed.
3017         * tests/autoscan.at (autoscan): Remove XFAIL.
3019 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
3021         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
3023 2006-04-03  Eric Blake  <ebb9@byu.net>
3025         * THANKS: Add myself.
3027 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3029         * lib/autotest/general.m4 (AT_INIT): Add `at_testdir' to pointer
3030         to log, point to testsuite output tree.
3032 2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
3034         * NEWS: AC_PROG_CC and AC_PROG_CXX no longer declare 'exit'.
3035         * doc/autoconf.texi (Function Portability): Mention that C++
3036         has trouble with 'exit'.
3037         (Guidelines): Test programs shouldn't use 'exit'.
3038         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
3039         Remove; all uses removed.
3040         (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN):
3041         Return from 'main' instead of calling 'exit'.
3042         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_CLOSEDIR_VOID):
3043         (_AC_FUNC_FNMATCH_IF, AC_FUNC_GETGROUPS):
3044         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, _AC_FUNC_MALLOC_IF):
3045         (AC_FUNC_MEMCMP, AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
3046         (AC_FUNC_SETPGRP, _AC_FUNC_STAT, AC_FUNC_STRTOD, AC_FUNC_STRERROR_R):
3047         (AC_FUNC_STRNLEN, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
3048         (_AC_FUNC_FORK, _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
3049         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Likewise.
3050         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
3051         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
3052         * tests/compile.at: Likewise.
3054 2006-04-02  Pavel Roskin  <proski@gnu.org>
3056         * doc/autoconf.texi (AC_PATH_X): Update per 2005-08-26 change.
3058 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
3060         Clean up _AC_COMPILER_EXEEXT* macros.
3062         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
3063           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
3064           ac_file to the name of the default output file and call
3065           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
3066           initial `rm' of the candidate files...
3067         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
3068           the same list in subsequent `rm' calls, and for the temporary
3069           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
3070           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
3071         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
3072         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
3073           no longer needed) by libtool.  Make it a cache check.
3074         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
3075           copied here by mistake.
3076         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
3077           _AC_COMPILER_EXEEXT.
3078         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
3079           _AC_COMPILER_OBJEXT directly.
3080         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
3082 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
3084         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): New macro.
3085         (AS_DIRNAME): Use it.
3086         (_AS_PREPARE): Add _AS_DIRNAME_PREPARE.
3088         * tests/*.at: Remove the generated ones.
3090 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
3092         * lib/autotest/general.m4 (AT_INIT): Don't optimize the first PATH walk.
3094 2006-04-01  Eric Blake  <ebb9@byu.net>
3096         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Optimize nonexistent
3097         directories, unless optional third argument supplied.
3098         (AS_UNAME): Don't optimize PATH walk.
3100         * lib/Autom4te/Struct.pm, lib/autoconf/c.m4: s/non-existent/nonexistent/
3102 2006-04-01  Eric Blake  <ebb9@byu.net>
3103         and Stepan Kasal  <kasal@ucw.cz>
3105         * lib/m4sugar/m4sh.m4: Sort sections as implied by the comments,
3106         and fix some typos.
3108 2006-04-01  Noah Misch  <noah@cs.caltech.edu>
3110         * lib/autoconf/general.m4 (_AC_INIT_VERSION): Emit script name and
3111         Autoconf version number despite a zero- or one-argument AC_INIT.
3113         * bin/autoreconf.in (parse_args): Multiple -v send --verbose to
3114         subordinate tools.
3115         * lib/Autom4te/General.pm (getopt): Make -v and -d incremental.
3116         * doc/autoconf.texi (autoreconf Invocation): Document it.
3118         * doc/autoconf.texi: Use `Cygwin', `MinGW', and `license' consistently.
3119         Append LocalWords so ispell-buffer passes cleanly.  Spelling fixes.
3121 2006-04-01  Eric Blake  <ebb9@byu.net>
3123         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Allow use in shell lists.
3124         * lib/autotest/general.m4: Be tolerant of existing directory when
3125           rm failed to remove it.
3127 2006-04-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3129         * bin/autoupdate.in: Redefine m4_location so that warnings print
3130         the correct lines of the input file by subtracting..
3131         (_au__first_line): ..this new definition.
3133         * lib/autoconf/general.m4 (AC_COMPILE_CHECK): Prefer
3134         AC_MSG_CHECKING over obsolete AC_CHECKING in autoupdated code.
3135         Remove stray newline in output.
3136         (AC_FOREACH): AU_DEFUN this as literal for autoupdate, and also
3137         AC_DEFUN this for autoconf, including the obsoletion diagnose.
3138         Fixes autoupdating of code where the replacement output contains
3139         m4sugar macros.
3140         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
3141         * tests/mktests.sh (ac_exclude_list): Add AC_FOREACH.
3142          (au_exclude_list): Add AC_LANG_SAVE.
3143         * tests/tools.at: Several new tests for all of this.
3144         * doc/autoconf.texi (Obsoleting Macros): Give a hint about the
3145         hairy details.
3146         The AC_LANG_SAVE issue was reported against Libtool by
3147         Dalibor Topic <robilad@kaffe.org>, and against Autoconf 2.57 by
3148         Kristian Kvilekval <kris@cs.ucsb.edu>.
3150 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
3152         * bin/autoupdate.in: Handle m4 builtins and m4sugar macros together--
3153           switch all of them on and of when necessary.  Fixes the bug when
3154           m4sugar macros (e.g., m4_define) were expanded after the first
3155           automatic update (e.g., after AC_PREREQ or AC_INIT).
3157 2006-03-31  Paul Eggert  <eggert@cs.ucla.edu>
3159         * doc/autoconf.texi (Programming in M4sh): Sharpen the descriptions
3160         of AS_BASENAME and AS_DIRNAME.  Reported by Stepan Kasal.
3162         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): Handle ///, ////, etc.
3163         correctly.  Problem reported by Eric Blake.
3164         (_AS_EXPR_PREPARE): Detect Tru64 expr bug.  Problem reported by
3165         Ralf Wildenhues.
3167 2006-03-30  Paul Eggert  <eggert@cs.ucla.edu>
3169         * doc/autoconf.texi (Programming in M4sh, Limitations of Usual Tools):
3170         Tighten up the basename/dirname wording.
3172 2006-03-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3174         * Makefile.maint (sc_texi_notab): New check: do not use TABs
3175         in texinfo files outside of verbatim environments.
3176         (syntax-check-rules): Update.
3177         * doc/autoconf.texi (Configuration Headers): Conform to it.
3179 2006-03-30  Chris Pickett <cpicke@cs.mcgill.ca>  (tiny change)
3181         * doc/autoconf.texi (autoreconf Invocation): Mention that -I for
3182           aclocal cannot be given on the command line.
3184 2006-03-29  Paul Eggert  <eggert@cs.ucla.edu>
3186         * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME.
3187         Give an example for AS_DIRNAME instead of referring to Posix..
3188         (File System Conventions): Put discussion of // versus / here, and
3189         modernize it a bit.
3190         (Limitations of Usual Tools): Add basename.  Remove verbiage
3191         after dirname, since it got moved to the above sections.
3192         All this was inspired by a patch proposed earlier by Eric Blake.
3194 2006-03-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3196         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Quote
3197         `$0' to protect against spaces.
3198         * lib/autotest/general.m4 (AT_INIT): Likewise.
3199         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise, for
3200         `$0', $as_me.
3202 2006-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3204         * bin/autoscan.in: The value of find_configure_ac should be
3205         checked for existence, so we don't barf over a nonexisting
3206         configure.ac.  Reported by Laurence Darby <ldarby@tuffmail.com>.
3208 2006-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3210         * bin/autoupdate.in: Fix some typos.
3212 2006-03-21  Stepan Kasal  <kasal@ucw.cz>
3214         * doc/autoconf.texi (Installation Directory Variables): Fix typo.
3216         * lib/autoscan/autoscan.list: Refreshed.
3218 2006-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3220         * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C
3221         and Erlang related variables.
3223         * lib/autoconf/c.m4 (AC_LANG(Objective C), AC_LANG_OBJC)
3224         (_AC_LANG_ABBREV(Objective C), _AC_LANG_PREFIX(Objective C))
3225         (AC_LANG_SOURCE(Objective C), AC_LANG_PROGRAM(Objective C))
3226         (AC_LANG_CALL(Objective C), AC_LANG_FUNC_LINK_TRY(Objective C))
3227         (AC_LANG_BOOL_COMPILE_TRY(Objective C))
3228         (AC_LANG_INT_SAVE(Objective C), AC_LANG_PREPROC(Objective C))
3229         (AC_PROG_OBJCPP, AC_LANG_COMPILER(Objective C), AC_PROG_OBJC)
3230         (_AC_PROG_OBJC_G): New macros.
3231         (_AC_ARG_VAR_CPPFLAGS): Adjusted.
3232         * doc/autoconf.texi (Objective C Compiler): New node.
3233         (Preset Output Variables): Document OBJCFLAGS.
3234         (Language Choice): Document `Objective C' language.
3235         (Fortran Compiler): Fix typo.
3236         * NEWS: Updated.
3237         Inspired by a patch from David M. Lloyd <dmlloyd@tds.net>.
3239 2006-03-20  Stepan Kasal  <kasal@ucw.cz>
3241         * doc/autoconf.texi (Default Includes): Fix typo
3242           s/AC_HEADERS_STDC/AC_HEADER_STDC/
3243         (Limitations of Usual Tools): s/unwriteable/unwritable/
3244         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
3245           Fix typos in the comments.
3247 2006-03-17  Stepan Kasal  <kasal@ucw.cz>
3249         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
3250           Factor out the warning to...
3251         (_AC_TOOL_WARN): ... this new macro; use `cross_compiling'.
3252         * tests/local.at (AT_CHECK_MACRO_CROSS): Avoid this warning.
3253         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
3255         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Do not special
3256           case `ac_delim' when writing the sed script.
3258         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Removed BIN_SH=xpg4,
3259           moved DUALCASE=1 ...
3260         (AS_SHELL_SANITIZE): ... here.
3261         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Do not say
3262           that it is set.
3264         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Quote the parameter of
3265           AC_SUBST.
3266         (_AC_PATH_PROG): Store the result to VARIABLE.
3267         (AC_PATH_PROG): No need to set VARIABLE again.
3269         * tests/local.at (AT_CHECK_MACRO_CROSS): New macro, creates two tests:
3270           the first one is usual AT_CHECK_MACRO test, the second one checks
3271           that the same works when cross-compiling.
3272         * tests/semantics.at (AC_CHECK_ALIGNOF, AC_CHECK_ALIGNOF struct):
3273         (AC_CHECK_SIZEOF, AC_CHECK_SIZEOF struct): Use it.
3275 2006-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3277         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Prepend
3278         the directory `/usr/bin/posix' in the shell search, to prefer
3279         the Posix shell not only in subsequent spawns as with `$BIN_SH'
3280         on Tru64.
3282         * doc/autoconf.texi (contents): To fix texi2html output, hide
3283         `@setcontentsaftertitlepage' for HTML.
3284         (Writing Autoconf Macros): Likewise, insert space after `@c'.
3285         (Leviticus, Numbers, Deuteronomy): Likewise, change `@,c' to
3286         `@,{c}'.
3288 2006-03-16  Stepan Kasal  <kasal@ucw.cz>
3290         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Move the IFS setup and CDPATH
3291           sanitizing...
3292         (AS_SHELL_SANITIZE): ...here; mention _AS_PATH_WALK needs IFS set.
3293         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Add an explanation
3294           why IFS is restored so late; thank you, Ralf, for reminding us.
3296 2006-03-15  Stepan Kasal  <kasal@ucw.cz>
3298         * doc/autoconf.texi (Pretty Help Strings): No need to use cached
3299           variables in the examples.
3301 2006-03-14  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
3303         * doc/autoconf.texi (several sections): Cleaned up documentation for
3304         macros in erlang.m4.
3306 2006-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3308         * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine
3309         failure condition for `$(cmd)' style command substitutions.
3310         (Parenthetical command substition, Multiline parenthetical
3311         command substition): Use it.
3313         * doc/autoconf.texi (Special Shell Variables): Missing word.
3314         Reported by Keith Marshall <keith.marshall@total.com>.
3316         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not forget to reset
3317         IFS even in case of empty `$PATH'.
3319 2006-03-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3321         * lib/autotest/general.m4 (AT_INIT) <at_optarg>: Optimize
3322         `expr' away if there is nothing to do.
3323         < --keywords >: Simplify and robustify argument handling.
3324         Revert erroneous comment from 2005-08-23.  Extend to allow
3325         keyword negation with `!'.
3326         Update help message.  Remove broken code to prevent running
3327         tests multiple times.
3328         * doc/autoconf.texi (testsuite Invocation) < --keywords >:
3329         Update and fix the documentation accordingly.
3330         * tests/autotest.at (Keywords): Renamed to..
3331         (Keywords and ranges): .. this.  Extended to make sure negated
3332         keywords, keywords taken from AT_SETUP arguments, and numeric
3333         test ranges work, and that matching is case-insensitive.
3335 2006-03-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3337         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Use a typedef to
3338         allow to pass unnamed structs even in C++.
3339         (AC_CHECK_SIZEOF):  Likewise.
3340         Also fix quoting error in `AC_MSG_FAILURE' arguments.
3341         * tests/semantics.at (AC_CHECK_ALIGNOF struct, AC_CHECK_SIZEOF
3342         struct): New tests for unnamed structs, each both native and
3343         cross-compiling.
3345         * lib/autoconf/c.m4 (AC_C_TYPEOF): Use typedef to avoid defining
3346         a structure inside a cast, for C++ conformance.
3347         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Likewise.
3348         Also fix quoting error in `AC_MSG_FAILURE' arguments.
3350         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If we cannot enable C99
3351         nor C89 mode, set `$ac_cv_prog_cc_stdc' to `no' instead of
3352         trying to execute the command `no'.
3354         * lib/autoconf/lang.m4 (AC_LANG_CONFTEST): AC_DEFUN this, not
3355         m4_define, so that the requirements of `AC_INCLUDES_DEFAULT' are
3356         expanded outside.
3358         * doc/autoconf.texi (autoconf Invocation): Fix typos in trace
3359         example.  Do not emphasize `$%', it is hardly new and special.
3360         Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
3362         * doc/autoconf.texi (Limitations of Usual Tools): Document
3363         OpenBSD and traditional `grep' failure to handle multiple
3364         patterns separated by newlines.
3366 2006-03-10  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
3368         * doc/autoconf.texi (several sections): Add documentation for macros
3369         in erlang.m4.
3371 2006-03-10  Eric Blake  <ebb9@byu.net>
3373         * doc/autoconf.texi (Obsolete Macros): Fix wording of
3374         AC_TRY_LINK_FUNC.
3376 2006-03-10  Paul Eggert  <eggert@cs.ucla.edu>
3378         * doc/autoconf.texi: Use @acronym more consistently for acronyms
3379         like BSD, GPL, LGPL.  Fix minor English typos.
3380         (AC_STDC_HEADERS, AC_PROG_GCC_TRADITIONAL):
3381         Mention that these macros are becoming obsolete.
3382         (AC_STDC_HEADERS, AC_PROG_CC, AC_C_CONST, AC_C_VOLATILE):
3383         Use more modern terminology for which standard is what.
3384         (AC_PROG_CC): Mention gcc first, and remove obsolete references to egcs
3385         and to ansi2knr.
3386         (AC_PROG_CXX): Likewise.
3387         (AC_C_PROTOTYPES, Test Functions, AC_LIBOBJ vs LIBOBJS):
3388         Remove obsolete discussion about how to port to K&R.
3389         (Guidelines for Test Programs): Suggest AC_HEADER_STDBOOL rather than
3390         the obsolescent AC_HEADER_STDC.
3391         (AC_FOO_IFELSE vs AC_TRY_FOO): Don't use #error; test programs
3392         can't rely on it.
3394 2006-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3396         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
3397         Remove stdin redirection from /dev/null to allow pipe to work.
3399 2006-03-08  Paul Eggert  <eggert@cs.ucla.edu>
3401         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
3402         Require that /lib/cpp include stdio.h correctly.  Solaris 10's
3403         doesn't.  Problem reported by D'Arcy A MacIsaac and diagnosed by
3404         Ralf Wildenhues.
3406 2006-03-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3408         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): The limit for
3409         HP-UX sed is 99 commands, not 100.
3410         (_AC_OUTPUT_FILES_PREPARE): Do not count the `}' of an
3411         _AC_SUBST_FILES fragment.  Separate `{' and `r' commands by
3412         newline for portability.
3413         * tests/torture.at (Torturing config.status): Also test 100
3414         AC_SUBST_FILE invocations.  Fix test to actually verify the
3415         AC_CONFIG_FILES output.
3416         * doc/autoconf.texi (Limitations of Usual Tools): Document HP-UX
3417         command, label, and read-file `r' limits.  Unify HP-UX spelling.
3419         * tests/Makefile.am (edit, $(wrappers)): Do not use `$<' in
3420         non-suffix rule.
3421         ($(TESTSUITE_GENERATED_AT)): Use `$(srcdir)` for the benefit of
3422         non-GNU make.
3423         (autoconfdir, $(AUTOCONF_FILES)): Likewise.
3424         * tests/mktests.sh: Small shell portability fixes.
3426 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3428         * doc/autoconf.texi (Caching Results): Fix the examples to use a
3429         recommended quoting style and discard unwanted output.
3431 2006-03-05  Paul Eggert  <eggert@cs.ucla.edu>
3433         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
3434         (AT_INIT): Use it, to remove arbitrary limit of 999,999 test
3435         cases, and to work around Tru64 expr bug.
3437 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3439         * doc/autoconf.texi (Limitations of Usual Tools): Mention Tru64
3440         expr bug that turns the result of a regex match into a number if
3441         possible.
3443 2006-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3445         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Work around
3446         HPUX compiler bug, similarly to AC_CHECK_SIZEOF, as documented
3447         in section `Specific Compiler Characteristics'.
3449 2006-03-04  Eric Blake  <ebb9@byu.net>
3451         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R): Avoid unused
3452         variable warning.
3454 2006-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3456         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Force correct
3457         order of variable initialization, so even the Solaris 2.6 shell
3458         can create a config header correctly.  Fixes lots of test suite
3459         failures.
3461 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3463         * doc/autoconf.texi (Text processing Macros): New node to
3464         document the m4sugar macros m4_re_escape, m4_tolower,
3465         m4_toupper, m4_split, m4_normalize, m4_append, m4_append_uniq.
3467 2006-02-22  Paul Eggert  <eggert@cs.ucla.edu>
3469         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Fix typo:
3470         XrmInitialize (0) -> XrmInitialize ().
3471         Reported by Toshio Kuratomi.
3473 2006-02-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3475         * lib/m4sugar/m4sh.m4 (AS_IF): Extend to allow more than one
3476         test, as in `if tests; then cmd1; elif ...; else ...; fi'.
3477         * doc/autoconf.texi (Programming in M4sh): Adjusted.
3478         * tests/m4sh.at (AS_IF and AS_CASE): Test this.  Also make sure
3479         both macros are defun'ed so that required macros are evaluated
3480         outside.
3482         * doc/autoconf.texi (Prerequisite Macros): State more precisely
3483         where a required macro will be expanded.
3484         (Coding Style): Another reason not to use `m4_define'.
3486 2006-02-21  Eric Blake  <ebb9@byu.net>
3488         * lib/autoconf/general.m4 (_AC_LIBOBJ): Minor optimization.
3490 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3492         * doc/autoconf.texi (Looping constructs): New node, to
3493         document m4_for, m4_foreach, m4_foreach_w, and mention
3494         obsolete AC_FOREACH.
3495         (Obsolete Macros): Document AC_FOREACH.
3496         * lib/m4sugar/m4sugar.m4 (_m4_for): Fix declaration comment.
3497         (m4_for): Fix to never loop (almost) endlessly, work correctly
3498         with arithmetic expressions in arguments, a step of zero or
3499         non-integer multiple of the interval, and avoid integer
3500         overflow.
3501         * tests/m4sugar.at: New test for m4_for, m4_foreach, and
3502         m4_foreach_w.
3504 2006-02-20  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
3506         Add basic support for Erlang, both for configuring Erlang/OTP
3507         tools, and Erlang as a conf test language.
3508         * lib/autoconf/erlang.m4: New file.
3509         * lib/autoconf/autoconf.m4: Add erlang.m4.
3510         * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Likewise.
3511         * lib/freeze.mk (autoconf_m4f_dependencies): Likewise.
3512         * NEWS: Add short description of new macros.
3513         * THANKS: Add Romain Lenglet.
3515 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3517         * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
3518         native /bin/sh may not set KSH_VERSION (seen on OpenBSD).
3520 2006-02-15  Eric Blake  <ebb9@byu.net>
3522         * lib/autoconf/general.m4 (AC_CHECK_DECL): Avoid unused variable
3523         warning.
3525 2006-02-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3527         * lib/m4sugar/m4sh.m4 (AS_CASE): New macro.
3528         (_AS_CASE): Private helper macro.
3529         * tests/m4sh.at: Basic tests for AS_IF and AS_CASE.
3530         * doc/autoconf.texi (Programming in M4sh): Document AS_CASE.
3531         Fix syntax of AS_IF description
3532         (Prerequisite Macros): Mention AS_IF and AS_CASE as workarounds
3533         for the AC_REQUIRE mess.
3534         * NEWS: Mention AS_CASE, AS_BOURNE_COMPATIBLE, and
3535         AS_SHELL_SANITIZE.
3537 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
3539         * doc/autoconf.texi: Minor style cleanup.
3540         Be consistent about spaces after commas.
3541         Insert [] where empty args look a bit funny.
3542         Fix some "i.e." and "e.g." usages.
3543         Try to avoid "X/Y" usages.
3544         Don't be pedantic about "ISO C99"; just say C99.
3545         Prefer GNU style for spaces in front of parens.
3546         (Function Portability): Comment about C89 versus C99
3547         signed integer division.
3548         (Particular Headers): Use current gnulib style for dirent
3549         includes.
3551 2006-02-14  Stepan Kasal  <kasal@ucw.cz>
3552         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3554         * bin/autoupdate.in (handle_autoconf_macros): Fix updating of
3555         macros without parameters.
3556         * lib/autoconf/autoupdate.m4 (AU_ALIAS): Likewise.
3557         * doc/autoconf.texi (Obsoleting Macros): Document AU_ALIAS.
3558         * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS
3559         `$#' bug.
3560         (autoupdate): Updated to match AU_ALIAS fix.
3562 2006-02-13 Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3563         and Paul Eggert  <eggert@cs.ucla.edu>
3565         * doc/autoconf.texi (Programming in M4sh): Document
3566         AS_BOURNE_COMPATIBLE and AS_SHELL_SANITIZE.
3568 2006-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3570         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Renamed to..
3571         (AS_BOURNE_COMPATIBLE): ..this.
3572         (_AS_RUN, AS_SHELL_SANITIZE): Adjusted all callers.
3574 2006-02-12  Paul Eggert  <eggert@cs.ucla.edu>
3576         * doc/install.texi (Defining Variables): Tighten up the
3577         CONFIG_SHELL wording.
3579 2006-02-12 Paul Eggert  <eggert@cs.ucla.edu>
3580         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3582         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Look at the output
3583         of (set -o) rather than testing whether (set -o posix) succeeds,
3584         to work around a bug in the AIX 5.3 shell.  Problem originally
3585         reportd by Howard Chu for libtool.
3587 2006-02-10  J.T. Conklin  <jtc@acorntoolworks.com>
3589         * doc/autoconf.texi (Running the Compiler, Running the Linker):
3590         Changes the macro arguments in summaries to match the
3591         descriptions.
3593 2006-02-04  Stepan Kasal  <kasal@ucw.cz>
3595         * doc/install.texi (Defining Variables): Classify the `CONFIG_SHELL'
3596         hint as ``a workaround for a bug.''
3598 2006-01-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3600         * bin/autoreconf.in: New option `--no-recursive'.
3601         Improve wording for subpackages a bit.
3602         * doc/autoconf.texi (autoreconf Invocation): Updated.
3603         * NEWS: Updated.
3605         * doc/install.texi (Defining Variables): Put `CONFIG_SHELL'
3606         in environment of `configure', not the command line.
3607         Reported by Howard Chu <hyc@highlandsun.com>.
3609 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
3611         * doc/autoconf.texi (Limitations of Builtins): Document the
3612         problem with "trap -".
3614 2006-01-23  Steven G. Johnson  <stevenj@fftw.org>
3616         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN):
3617         (_AC_FC_MAIN, __AC_FC_NAME_MANGLING): Use _AC_LANG in check
3618         messages to differentiate Fortran and Fortran 77 tests.
3619         (AC_FC_SRCEXT, AC_FC_FREEFORM): Use AC_LANG_PUSH/POP instead of
3620         AC_LANG_ASSERT, to allow use in mixed-language projects.
3622 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
3624         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Prefer "defined
3625         FOO" to "defined (FOO)".
3626         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Likewise.
3627         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Likewise.
3628         * lib/autoconf/specific.m4 (AC_XENIX_DIR): Likewise.
3629         * tests/tools.at (ifnames): Likewise.
3631 2006-01-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3633         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Do not pass `-q' to mktemp.
3634         * lib/Autom4te/General.pm (mktmpdir): Likewise.
3635         (END): Improve error message a bit.
3636         Reported by Bruce Korb <bkorb@gnu.org>.
3638 2006-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3640         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
3641         `-LIST:' and `-LNO:', for PathScale 2.3 compilers.
3643 2006-01-11  Stepan Kasal  <kasal@ucw.cz>
3645         * doc/autoconf.texi (Header Portability): On Solaris 8, sys/ptem.h
3646         requires sys/stream.h.  Reported by Oliver Kiddle.
3648 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3649             Stepan Kasal  <kasal@ucw.cz>
3651         * lib/autotest/general.m4 (AT_INIT): When ensuring writability
3652         before the removals of test dirs, use `find' to avoid modification
3653         of symlinked directories.
3655 2006-01-11  Steven G. Johnson  <stevenj@alum.mit.edu>
3657         * lib/autoconf/fortran.m4 (AC_F77_DUMMY_MAIN, AC_FC_DUMMY_MAIN):
3658         Don't ignore the macro arguments.
3660 2006-01-11  David Thompson  <dthompsn@vizsolutions.com>
3662         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Add `exit'
3663         declaration that works for MSVC.
3665 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3667         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT):
3668         Add `*.map' and `.inf' for Green Hills compiler.
3669         Reported by Stefan Seefeld <stefan@codesourcery.com>.
3671         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Handle quadrigraphs
3672         correctly: pad with spaces after FIRST_PREFIX if necessary,
3673         and compute string lenghts with `m4_qlen' instead of `m4_len'.
3674         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Comments updated.
3675         * tests/m4sh.at (AS_HELP_STRING): Test extended.
3676         * NEWS: Updated.
3677         Reported by numerous people, numerous times.
3679 2006-01-05  Paul Eggert  <eggert@cs.ucla.edu>
3681         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in
3682         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in:
3683         * lib/autoconf/general.m4, lib/autoconf/status.m4:
3684         * lib/autotest/general.m4, tests/local.at:
3685         Update copyright year to 2006.
3687         * Makefile.maint (sc_root_tests): Use the recommended style s/a/b/ for
3688         sed substitutions.
3689         * doc/autoconf.texi (Installation Directory Variables): Use s|a|b|
3690         for file names, again.  Reported by Noah Misch.
3691         (Coding Style): Explain that s|a|b| is preferred for file names.
3692         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer s/a/b/.
3693         (AC_OUTPUT_MAKE_DEFS): Likewise.
3694         * lib/autotest/general.m4 (AT_INIT): Likewise.
3695         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise.
3696         * tests/local.at (AT_CHECK_AUTOM4TE): Likewise.
3698         Fix Posix-conformance bugs re use of { command in sed scripts,
3699         and improve the sed-related documentation a bit.
3700         * doc/autoconf.texi (Installation Directory Variables): Use
3701         our own style advice re 's,a,b,' versus 's|a|b|'.  Use "Sed"
3702         rather than "sed" when talking about Sed in general.
3703         (Particular Programs): Likewise.
3704         (Coding Style): y is like s with respect to / and ,.
3705         (Limitations of Usual Tools): Document the weird restrictions
3706         that Posix has about { }.  Use better quoting.
3707         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_HEADER):
3708         Rewrite to conform to Posix rules about { } in sed scripts.
3709         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_SED, AS_BASENAME_SED): Likewise.
3710         * tests/foreign.at (Libtool): Likewise.
3711         * tests/semantics.at (AC_CHECK_PROG & AC_CHECK_PROGS):
3712         Use our own style advice re 's,a,b,' versus 's|a|b|'.
3714 2006-01-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3716         * lib/autoconf/status.m4: Fix typo.
3718         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
3719         singly- or doubly-quoted arguments to `-cmdline', `-ignore',
3720         `-def', for the benefit of Portland `pgf90 -Mipa'.
3721         Reported by Christopher Hulbert <cchgroupmail@gmail.com>.
3723 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
3725         * doc/autoconf.texi: Update copyright (and other) dates to 2006.
3726         * doc/autoconf.texi (Shellology): Mac OS X 10.2 changed the default
3727         shell from zsh to bash.
3729 2005-12-31  Stepan Kasal  <kasal@ucw.cz>
3731         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Use $PATH_SEPARATOR;
3732           ":" caused problems on OS/2-EMX.  Suggested by Andrew Belov.
3734 2005-12-29  Paul Eggert  <eggert@cs.ucla.edu>
3736         * doc/autoconf.texi (Shell Substitutions): Warn about unbalanced
3737         parentheses in $(...).  Problem reported by Eric Blake.
3739 2005-12-12  Paul Eggert  <eggert@cs.ucla.edu>
3741         * doc/autoconf.texi (Limitations of Usual Tools):
3742         Mention which characters can be escaped with \ in portable regular
3743         expressions used in grep, sed, expr.  Mention the leading ^ problem
3744         with expr.  Clean up some confusing wording.  Mention which
3745         grep options are portable.
3747 2005-12-09  Stepan Kasal  <kasal@ucw.cz>
3749         * tests/local.at (AT_CHECK_AUTOM4TE): Fix typo in the comment.
3751 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
3753         * doc/autoconf.texi (Limitations of Builtins): Fix typos in previous
3754         patch, noted by Ralf Wildenhues.
3756 2005-12-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3758         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
3759         posix' unconditionally, for pdksh in `native sh' emulation.
3761 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
3763         * doc/autoconf.texi (Shellology): Document eval $? problem
3764         with ash.
3765         (Limitations of Builtins): Likewise.
3767 2005-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3769         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Pass
3770         CONFIG_SHELL in the environment of the configure rerun.
3771         * doc/autoconf.texi (Here-Documents, config.status Invocation):
3772         Suggest passing CONFIG_SHELL absolute, and in the environment
3773         rather than as option.
3775 2005-11-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3777         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
3778         Fix quoting of output line (triggered for many AC_SUBST_FILEs).
3779         Fix macro quoting.  Fix output for n * 98 substituted variables.
3781 2005-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3783         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Initialize
3784         `tmp' to avoid file removal race.
3786 2005-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3788         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
3789         ac_clean_files and LIBOBJS.
3791 2005-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3793         * lib/autoconf/programs.m4 (AC_CHECK_PROG, AC_PATH_PROG):
3794         Factor functionality to..
3795         (_AC_CHECK_PROG, _AC_PATH_PROG): these new macros, but only
3796         `AC_SUBST($1)' in the public version.
3797         (AC_CHECK_TOOL, AC_PATH_TOOL, AC_PATH_TARGET_TOOL)
3798         (AC_CHECK_TARGET_TOOL): Use internal versions for ac_ct_* and
3799         ac_pt_* variables.
3801 2005-11-01  Stepan Kasal  <kasal@ucw.cz>
3803         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove the comment about 8+3
3804         filesystems.
3806 2005-11-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3808         * NEWS: Move AH_HEADER mention to right place.
3810 2005-10-27  Stepan Kasal  <kasal@ucw.cz>
3812         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): "conftst2" -> "conftest2"
3813         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
3815 2005-10-25  Stepan Kasal  <kasal@ucw.cz>
3817         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): rm -f conftst2.*, not only
3818         conftst2.$ac_objext.
3819         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
3821 2005-10-24  Stepan Kasal  <kasal@ucw.cz>
3823         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Use conftst2.o instead of
3824         conftest.o, to see whether the compiler really obeys; rm the object
3825         file before and after the test and register it with ac_clean_files.
3826         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
3828 2005-10-21  Stepan Kasal  <kasal@ucw.cz>
3830         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When determining,
3831         the delimiter CEOF$ac_eof: fix quoting of CEOF[0-9]* and modify the
3832         code so that the most common case requires less forks.
3834 2005-10-20  Stepan Kasal  <kasal@ucw.cz>
3836         * doc/autoconf.texi (Shell Substitutions}: Document that ${10} is
3837         not portable; thanks to Paul Eggert and Alexandre.
3839         * NEWS: Fix an old typo.
3841 2005-10-20  Jim Meyering  <jim@meyering.net>
3843         * doc/autoconf.texi: Typo: s/feature/features/ in ``the features of
3844         the latter'', in two places.
3846 2005-10-19  Paul Eggert  <eggert@cs.ucla.edu>
3848         * doc/autoconf.texi (Generating Sources): AC_LANG_PROGRAMS ->
3849         AC_LANG_PROGRAM, fixing a typo.  Don't give details about
3850         the inner workings of AC_LANG_FUNC_LINK_TRY.
3851         * lib/autoconf/c.m4 (AC_LANG_CALL(C)): Reformat to match
3852         AC_LANG_FUNC_LINK_TRY.  This involves returning the value returned
3853         by the function rather than ignoring it.
3854         (AC_LANG_FUNC_LINK_TRY(C)): Call the function rather than simply
3855         comparing its address.  Intel's interprocedural optimization was
3856         outsmarting the old heuristic.  Problem reported by
3857         Mikulas Patocka.
3859 2005-10-19  Stepan Kasal  <kasal@ucw.cz>
3861         * lib/autoconf/general.m4 (AC_SUBST): Remove an obsolete comment.
3863 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
3865         * lib/m4sugar/m4sugar.m4 (_m4_map): New macro.
3866         (m4_map, m4_map_sep): Use it.  Handle the empty list correctly.
3868 2005-10-04  Stepan Kasal  <kasal@ucw.cz>
3870         * lib/autotest/general.m4 (AT_INIT): Really make the subtree writable
3871         before removing it (chmod -R u+rwx); there are three instances of this.
3873 2005-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3874             Stepan Kasal  <kasal@ucw.cz>
3876         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Balance parentheses.
3877         * lib/autotest/general.m4 (AT_INIT): If the test dir already exists,
3878         make its content writable before removing it.  Remove an errorneous
3879         comment from the end, where the logs of the failed tests are copied
3880         to the main log file.
3882 2005-09-27  Stepan Kasal  <kasal@ucw.cz>
3884         * tests/semantics.at (AC_C_BIGENDIAN): Pass --force to autoheader,
3885           in case the computer is too quick.  Double quote the configure.ac
3886           snippets.
3888         * tests/local.at (AT_CHECK_AUTOCONF): Always pass --force to prevent
3889           problems if the testsuite were running too fast.
3891 2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
3893         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
3894         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
3895         (which belong to Xt, not X itself).  See Debian bug 327655.
3896         * NEWS: Mention this.
3898 2005-09-07  Stepan Kasal  <kasal@ucw.cz>
3900         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Remove an incorrect comment.
3902 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
3904         * config/move-if-change: Don't output "$2 is unchanged";
3905         suggested by Ben Elliston.  Handle weird characters correctly.
3907 2005-09-06  Stepan Kasal  <kasal@ucw.cz>
3909         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Merge the two AC_LINK_IFELSE
3910           calls, so that the final expansion of this macro is shorter.
3911           Create the conftest.$ac_ext outside the `for' loop, to speed the run.
3912           Do not use `break' in the argument to AC_LINK_IFELSE, it would skip
3913           the cleanup there.  Use AS_VAR_* macros, to be more general.
3914         * tests/semantics.at (AC_SEARCH_LIBS): Check for the cleanup.
3916         * lib/autoconf/general.m4: Use AS_IF where appropriate.
3918         * lib/m4sugar/m4sh.m4 (AS_IF): Use m4_default.
3920 2005-09-01  Stepan Kasal  <kasal@ucw.cz>
3922         * doc/autoconf.texi (Configuration Headers): Add an index entry
3923           for AH_HEADER.
3925 2005-08-26  Pavel Roskin  <proski@gnu.org>
3927         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use shell variable
3928         XMKMF to locate xmkmf.  Make XMKMF precious.  Export CC when
3929         running xmkmf.
3931 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
3933         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
3934         The previous patch didn't work, so try a better one.
3936 2005-08-26  Stepan Kasal  <kasal@ucw.cz>
3938         * doc/autoconf.texi (Programming in M4sh) <AS_TR_CPP>: Fix m4 quoting
3939         in the example.  Reported by Bruno Haible.
3940         <AS_TR_SH>: Likewise.  Also modify the example to be more convincing:
3941         "if $undefined_var;" succeeds with my shell.
3943         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST,
3944         AC_CANONICAL_TARGET): Define by AC_DEFUN, no need to use AC_DEFUN_ONCE;
3945         but change the m4_divert_text to m4_divert_once.
3947 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
3949         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
3950         Work around bug in Solaris /usr/xpg4/bin/awk.
3951         The bug is present in at least Solaris 8 through 10.
3953 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
3955         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Simplify; rejecting
3956         some evil values and relying on the fact that $* concatenates the
3957         parameters by the first character from IFS.
3959 2005-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
3960             Stepan Kasal  <kasal@ucw.cz>
3962         * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER_DEST): When the
3963         first header appears, define AH_HEADER.
3964         * doc/autoconf.texi (Configuration Headers): Document AH_HEADER.
3965         Update limitations about when to call AC_CONFIG_HEADERS.
3966         (Configuration Commands): Document that AC_CONFIG_COMMANDS_PRE
3967         parameter can call AC_SUBST, AC_DEFINE, or AC_CONFIG_FOOS; explain
3968         that AC_CONFIG_COMMANDS_PRE and AC_CONFIG_COMMANDS_POST are not
3969         ``Configuration Actions''; fix their index entries.
3971         * lib/autotest/general.m4 (AT_INIT): Process multiple keywords
3972         options correctly.  Process N-M as M-N if M is smaller than N.
3973         Process ranges correctly so that N-N will run only N.
3974         Sort and uniquify the tests that will be run.  If there is more
3975         than one test, reinsert the banners for the tests.
3976         * tests/autotest.at (Keywords): Unmark XFAIL.
3978 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
3980         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Strip the parameter list
3981           before passing the macro name to AH_TEMPLATE.
3983         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): config.status
3984           now opens log after option processing; in particular, --version
3985           and --help do not touch config.log.
3987         * Makefile.maint: Revert the change from 2005-08-12.
3989 2005-08-22  Stepan Kasal  <kasal@ucw.cz>
3991         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Factor out
3992           common code to...
3993         (_AC_ENABLE_IF, _AC_ENABLE_IF_ACTION): ... these new macros.
3995 2005-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3997         * doc/autoconf.texi (Using Autotest, testsuite Scripts)
3998         (Autotest Logs, Writing testsuite.at, testsuite Invocation):
3999         Language cleanup.
4001         * doc/autoconf.texi (Defining Symbols, Changed Results):
4002         Prepend to LIBS, not append, in examples.
4004 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
4006         When building in place, set srcdir="."; suggested by Tim Van Holder.
4008         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Do this; to recognize
4009           build in place, we need ac_pwd, and thus have to AC_REQUIRE ...
4010         (_AC_INIT_DIRCHECK): ... this macro and AC_DEFUN both of them.
4011         * lib/autoconf/status.m4 (_AC_SRCDIRS): Fix a comment: srcdir="."
4012           does not mean "no --srcdir option".
4014 2005-08-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4016         * tests/autoscan.at (autoscan): New file.
4017         * tests/suite.at: Use it.
4018         * tests/Makefile.am (TESTSUITE_HAND_AT): Add it.
4019         Reported against Libtool by Gideon Go <gideon.go@gmail.com>.
4021         * tests/autotest.at (Keywords): Test keywords combinations.
4023 2005-08-12  Stepan Kasal  <kasal@ucw.cz>
4025         * Makefile.maint (GZIP_ENV): When checking the help text of gzip,
4026           add "2>&1"; gzip 1.2.4 prints help on stderr.
4028 2005-07-27  Stepan Kasal  <kasal@ucw.cz>
4030         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): The symbol at_reason
4031         was pushdef'ed twice while popped only once.  Push it only once.
4032         (_AT_CHECK): Cosmetic changes to the "case $at_status" command.
4034 2005-07-26  Stepan Kasal  <kasal@ucw.cz>
4036         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
4037         prefixed by mere "===", not "configure: === ".
4039 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
4041         * Makefile.maint: Update from Bison.
4043         * lib/m4sugar/m4sugar.m4 (m4_strip): Comment fix---change tab to
4044         "<tab>" in comment, so that the point is understandable.
4046 2005-07-25  Stepan Kasal  <kasal@ucw.cz>
4048         Rewrite substantial part of lib/autoconf/status.m4.
4049         The main change is that CONFIG_FILES, CONFIG_HEADERS, CONFIG_LINKS,
4050         and CONFIG_COMMANDS are not processed in four separate loops.
4051         Instead, there is one main loop.  This alows that the common code
4052         is expanded only once, thus config.status (and configure) is smaller.
4054         The registration mechnism in AC_CONFIG_FILES and cousins also changed;
4055         the AC_LIST_FILES and cousins macros are no longer used.
4057         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS,
4058         _AC_OUTPUT_LINKS, _AC_OUTPUT_COMMANDS): Renamed to ...
4059         (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER, _AC_OUTPUT_LINK,
4060         _AC_OUTPUT_COMMAND): ..., respectively.  These macros no longer
4061         contain the initialization, nor the for loop, nor the associated
4062         commands; all these go to ...
4063         (_AC_OUTPUT_MAIN_LOOP): ... this new macro, called from
4064         _AC_OUTPUT_CONFIG_STATUS.
4065         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST, _AC_CONFIG_SPLIT_FILE_IN):
4066         Nuked; the code was merged into _AC_OUTPUT_MAIN_LOOP.
4067         (_AC_OUTPUT_FILE): The creation of the sed script ...
4068         (AC_OUTPUT): ... and the setup of ac_vpsub goes to ...
4069         (_AC_OUTPUT_FILES_PREPARE): ... a new macro, also called from
4070         _AC_OUTPUT_MAIN_LOOP.
4071         (_AC_CONFIG_FILES, _AC_CONFIG_HEADERS, _AC_CONFIG_LINKS,
4072         _AC_CONFIG_COMMANDS): Use ...
4073         (_AC_CONFIG_FOOS): ... this new macro, which uses these ...
4074         (_AC_CONFIG_REGISTER, _AC_CONFIG_REGISTER_DEST): ... new macros.
4075         (_AC_CONFIG_FILE, _AC_CONFIG_HEADER, _AC_CONFIG_LINK,
4076         _AC_CONFIG_COMMAND, _AC_CONFIG_DEPENDENCIES): No longer needed.
4077         (_AC_CONFIG_DEPENDENCY): Update, it uses these ...
4078         (_AC_CONFIG_DEPENDENCY_DEFAULT, _AC_FILE_DEPENDENCY_TRACE_COLON):
4079         ... new macros.
4080         (_AC_CONFIG_UNIQUE): Update.
4081         (AC_LIST_FILES, AC_LIST_HEADERS, AC_LIST_LINKS, AC_LIST_COMMANDS):
4082         Replaced by this ...
4083         (_AC_LIST_TAGS): ... new common macro.
4084         (AC_LIST_FILE_COMMANDS, AC_LIST_HEADER_COMMANDS, AC_LIST_LINK_COMMANDS,
4085         AC_LIST_COMMAND_COMMANDS): Replaced by this ...
4086         (_AC_LIST_TAG_COMMANDS): ... new common macro.
4087         (_AC_CONFIG_COMMANDS_INIT): Moved top to the `registration' section;
4088         this didn't belong to the `config commands' section.
4089         (_AC_OUTPUT_COMMANDS_INIT): Don't initialize, m4_ifdef is our friend.
4090         (AC_CONFIG_COMMANDS_PRE, AC_OUTPUT_COMMANDS_PRE,
4091         AC_CONFIG_COMMANDS_POST): Moved to a new section, these didn't belong
4092         to the `config commands' section either.
4093         (AC_CONFIG_SUBDIRS): Don't touch diversion DEFAULTS.
4094         (_AC_LIST_SUBDIRS): Don't initialize, m4_ifdef is our friend.
4096         ... and many changes to the comments nearby.
4098         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): At the end of the day,
4099         set ac_subdirs_all='_AC_LIST_SUBDIRS'.
4100         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
4101         AC_CONFIG_COMMANDS(command:input,...) is no longer allowed.
4102         (#define header templates): The comment at the top of the generated
4103         header now includes the name(s) of the source file(s).
4105         Several unrelated small changes:
4107         * lib/autoconf/general.m4 (AC_CACHE_VAL): Be didactic, quote the first
4108         parameter to AC_DIAGNOSE.
4109         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
4110         (_AC_LINK_FILES_CNT): Don't AU_DEFUN this; it causes confusing messages
4111         with autoupdate; use m4_define_default inside AU_DEFUNed AC_LINK_FILES.
4112         (AC_OUTPUT): In the compatibility code, use m4_ifvaln, to be consistent
4113         with AU::AC_OUTPUT.
4114         (AU::AC_OUTPUT): Don't double-quote $2 and $3, the compatibility code
4115         in AC_OUTPUT doesn't double-quote it either.
4116         * tests/tools.at (autoupdate): AU::AC_OUTPUT no longer double-quotes the
4117         parameters.
4119 2005-07-10  Stepan Kasal  <kasal@ucw.cz>
4121         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Document which
4122         versions of Portland Group compiler produce single- and double-quoted
4123         -cmdline argument.  Reported by Steven G. Johnson <stevenj@fftw.org>
4124         and Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
4126 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
4128         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
4129         This is a corrected version of yesterday's patch.
4131 2005-07-07  Stepan Kasal  <kasal@ucw.cz>
4133         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
4134         path, too; insert a "===" to emphasize the line.
4136         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD): Rename
4137           ac_cv_build_alias to ac_build_alias.
4138         (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Simplify.
4140         On 2005-02-24, an unintentional AC_SUBST([CC]) was introduced; this
4141         change eliminates it.  Problem reported by Alexandre Duret-Lutz.
4142         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Move the AC_SUBST ...
4143         (AC_ARG_VAR): ... here.
4144         (_AC_INIT_PREPARE): Call AC_SUBST for build_alias, host_alias and
4145           target_alias.
4147         Keep a list of all precious variables and process them with one simple
4148         for loop, instead of expanding all commands, or, OTOH, complicated
4149         processing of output of "set".
4150         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Acumulate the
4151         variable names in new macro...
4152         (_AC_PRECIOUS_VARS): ... which will be assigned to ac_precious_vars.
4153         (_AC_ARG_VAR_STORE): New macro which writes to diversion PARSE_ARGS
4154           a loop to assign all ac_env_* and ac_cv_env_* variables.
4155         (_AC_ARG_VAR_VALIDATE): Use shell variable ac_precious_vars, divert
4156           to INIT_PREPARE.
4157         (_AC_INIT_DEFAULTS): At the end, if _AC_PRECIOUS_VARS is set, assign
4158           its value to shell variable ac_precious_vars and call
4159           _AC_ARG_VAR_STORE and _AC_ARG_VAR_VALIDATE.
4160         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't call
4161           _AC_ARG_VAR_VALIDATE.
4163         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Move AC_LANG_PUSH(C)
4164           and the AC_SUBSTs ...
4165         (AC_INIT): ... here.
4167         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Changed the title of
4168           the ac_subst_files section in config.log.
4170         * tests/local.at (AT_CONFIG_CMP): Revert Paul's previous change.
4172 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
4174         * NEWS: New macro AC_C_TYPEOF.
4175         * doc/autoconf.texi (C Compiler): Document AC_C_TYPEOF.
4176         * lib/autoconf/c.m4 (AC_C_TYPEOF): New macro.
4177         * tests/c.at (C keywords): Test AC_C_TYPEOF.
4179         Fix problems reported by Nicolas Joly.
4180         * tests/base.at (Input/Output): Ignore 'loading site script' chatter.
4181         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
4182         They are generated by the Tru64 v5.1B shell.
4184 2005-07-05  Stepan Kasal  <kasal@ucw.cz>
4186         Fix my changes from 2005-07-01; reported by Noah Misch.
4187         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES): Fix the
4188         description, the macro now accepts only a single tag.
4189         (_AC_CONFIG_UNIQUE): Likewise; s/AC_File/[$1]/
4191         Fix cases when the varsions of Autoconf and Autotest don't match.
4192         Reported by Noah Misch.
4193         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Set also
4194         at_top_builddir, for compatibility with older autotest.
4195         * lib/autotest/general.m4 (AT_INIT): If at_top_build_prefix
4196         is not set, use at_top_builddir, for compatibility with older
4197         versions of autoconf.
4199 2005-07-04  Paul Eggert  <eggert@cs.ucla.edu>
4201         * bin/autom4te.in ($m4): Catch usages like --nesting-limit=2048.
4202         Problem reported by Patrick Welche.
4204 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
4206         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use &, not |, in
4207         sed substitution command, so that we allow | in program prefixes
4208         and program suffixes.  (& is a problem anyway; we're not fixing
4209         that here.)
4210         * lib/autoconf/status.m4 (AC_CONFIG_FILES): Likewise, for
4211         configure_input, top_builddir, srcdir, etc.
4212         * lib/autotest/general.m4 (AT_INIT): Likewise, for
4213         PATH_SEPARATOR in AUTOTEST_PATH.
4215 2005-07-02  Alexandre Duret-Lutz  <adl@gnu.org>
4217         * lib/autoconf/general.m4 (AC_SITE_LOAD): Rewrite the
4218         for loop over config.site files using `set', to allow
4219         directory names containing IFS characters.
4221 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
4223         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Remove the tests for
4224         directories with weird names.  Apparently some people like living
4225         on the edge.  However, improve the test that "pwd" actually does
4226         report a name for the working directory.
4227         * NEWS: Remove the claim that we test for funny chars in dir names.
4229 2005-07-01  Stepan Kasal  <kasal@ucw.cz>
4231         * lib/autoconf/general.m4 (AC_FOREACH): Make obsolete; it's
4232         replaced ...
4233         * lib/m4sugar/m4sugar.m4 (m4_foreach_w): ... by this new macro.
4234         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES, _AC_CONFIG_UNIQUE):
4235         Now accept a single tag, not whitespace separated list.
4236         (AC_CONFIG_SUBDIRS): Call _AC_CONFIG_UNIQUE in a m4_foreach_w loop.
4238 2005-06-30  Stepan Kasal  <kasal@ucw.cz>
4240         * doc/autoconf.texi (Configuration Headers): Change the explanation
4241         about #include <config.h>.
4242         (Generic Functions): Mention the Gnulib project.
4243         (Limitations of Usual Tools) <sed>: Another minor rephrasing.
4245         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use a here
4246         document to output the default config_* lists to config.status.
4247         Don't recognize option --file, if the functionality is not there.
4248         Likewise for --header; moreover, recognize --he and --h as shortcuts
4249         for --help in that case.
4251         * lib/autoconf/status.m4: Fix the order of the "sections", so that it
4252         matches the order of execution.  No code changed.
4254 2005-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4256         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Fix also for
4257         single-quoted -cmdline argument in Portland Group compiler.
4258         Reported against LAM by Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
4260 2005-06-30  Alexandre Duret-Lutz  <adl@gnu.org>
4262         * lib/autom4te.in (Automake-preselections): Preselect AC_SUBST_TRACE.
4264 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
4266         * doc/autoconf.texi (File Descriptors): ksh doesn't pass open file
4267         descriptors to child processes; reported by Norman Gray.
4269 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
4271         * lib/autoconf/general.m4 (AC_ARG_VAR): Move next to _AC_ARG_PRECIOUS.
4273         * lib/autoconf/general.m4 (AC_SUBST_TRACE): New macro, to be traced
4274         instead of AC_SUBST; proposed by Alexandre Duret-Lutz.
4275         (AC_SUBST): Call it.
4276         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Call AC_SUBST_TRACE for
4277         the directory specific variables; but don't call it for configure_input.
4279 2005-06-28  Derek Price  <derek@ximbiot.com>
4281         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Reword recent
4282         addition.
4284 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
4286         * NEWS: Don't worry about spaces in bindir etc.  Only srcdir and working
4287         directory have inherent problems with special characters like spaces,
4288         due to limitations in Make syntax.  Problem reported by Alexandre
4289         Duret-Lutz.
4290         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Implement the above.
4291         Also, fix Tru64 porting problem with shell patterns,
4292         reported by Ralf Wildenhues.
4294 2005-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4296         * doc/autoconf.texi (Subdirectories): Fix markup typos.
4298 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
4300         * tests/local.at (AT_CHECK_ENV): Simplify regexp slightly.
4302         Fix some more shell quoting problems.  Prompted by a bug report
4303         from Justace Clutter.
4304         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Put name of invalid
4305         variable into diagnostic.  Make the diagnostic an error, not a warning,
4306         because we really don't support spaces and suchlike in dir names.
4307         (_AC_INIT_SRCDIR): Allow special characters in $ac_unique_file.
4308         Don't worry about backslashes in srcdir; it can't happen now.
4309         (_AC_INIT_PARSE_ARGS): Allow weird characters in ac_optarg.
4310         Simplify ac_optarg handling.
4311         (_AC_ARG_VAR_VALIDATE): Remove unnecessary and inconsistent quotes.
4313 2005-06-22  Stepan Kasal  <kasal@ucw.cz>
4315         Fix AT_CONFIG_CMP for Solaris hosts; idea from Ralf Menzel.
4316         * configure.ac: Call AC_PROG_EGREP and AC_PROG_SED.
4317         * tests/atlocal.in: Propagate $EGREP and $SED.
4318         * tests/local.at (AT_CHECK_ENV): Use $EGREP, not $GREP -E.
4319         (AT_CONFIG_CMP): Use sed instead of grep plumbing.
4321         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
4322         that '\|' is not allowed in BREs; recommend using newline separated
4323         list of patterns instead of multiple -e options.
4325         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Remove an old comment.
4327         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Use AC_SUBST/2.
4329 2005-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4331         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Fix typo.
4333 2005-06-21  Stepan Kasal  <kasal@ucw.cz>
4335         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Document that
4336         b, t, r, w commands require single space, while : cannot have any.
4337         (Special Shell Variables): Fix sed code this in the example.
4338         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Likewise; and fix a typo.
4339         * lib/autotest/general.m4 (AT_ARG_OPTION): Fix typo in the description.
4341         * lib/m4sugar/m4sugar.m4 (m4_split): If the parameter is empty,
4342         expand to the empty list.  Don't use two pairs of m4_changequote,
4343         it's not necessary.
4345 2005-06-20  Derek Price  <derek@ximbiot.com>
4347         * lib/m4/programs.m4 (AC_PROG_YACC): Declare YACC & YFLAGS precious.
4349 2005-06-17  Paul Eggert  <eggert@cs.ucla.edu>
4351         * lib/m4sugar/m4sh.m4 (as_awk_strverscmp): Port to Solaris /bin/awk.
4352         * doc/autoconf.texi:
4353         Don't mention Solaris versions so much, if a
4354         problem is common to all extant versions of Solaris.  Say "SunOS
4355         4" instead of "SunOS" for SunOS 4.
4356         (awk): Mention more of the limitations of traditional Awk.
4357         (cat): Don't talk about cat -v.
4359 2005-06-16  Paul Eggert  <eggert@cs.ucla.edu>
4361         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE): New macro.
4362         (AS_VERSION_COMPARE): New macro.  The API is taken from CVS,
4363         but the implementation is entirely different and is designed
4364         to be compatible with glibc strverscmp.
4365         * tests/m4sh.at (AS_VERSION_COMPARE): New test.
4367         * doc/autoconf.texi (Limitations of Usual Tools): Mention expr bug
4368         on Mac OS X 10.4 reported by Peter O'Gorman in:
4369         http://lists.gnu.org/archive/html/autoconf-patches/2005-06/msg00041.html
4370         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT):
4371         Use shell builtins rather than 'expr', to work around expr bug.
4373 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
4375         * doc/autoconf.texi: "filesystem" -> "file system".
4376         "behaviour" -> "behavior".
4377         Warn about \(...\)* in Solaris sed (written by Ralf Menzel).
4378         * lib/autoconf/general.m4: Omit blank after ":" sed command,
4379         as per POSIX.
4380         * lib/m4sugar/m4sh.m4: Likewise.
4381         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Work around problem
4382         with Solaris sed.  Fix by Ralf Menzel and Stepan Kasal.
4384         * man/Makefile.am (MOSTLYCLEANFILES): Add $(srcdir)/*.t.
4385         (.x.1): Ignore the time stamp in the .TH line when deciding whether
4386         to update the man page.  That way, we don't have to check in new
4387         man pages every month.
4389         * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Work even if $1 contains
4390         quotes and backslashes.  Patch from Derek Price.
4392 2005-06-10  Derek Price  <derek@ximbiot.com>
4394         * doc/autoconf.texi (Programming in M4sh): Document AS_TR_CPP &
4395         AS_TR_SH.
4397 2005-06-08  Paul Eggert  <eggert@cs.ucla.edu>
4399         * lib/autotest/general.m4 (AT_INIT): Don't accept Solaris 9's diff
4400         -u, since it outputs chatter if the input files are the same.
4401         Problem reported by Ralf Menzel.
4403 2005-06-08  Derek Price  <derek@ximbiot.com>
4405         * lib/m4sugar/m4sugar.m4: Undefine include & sinclude rather than
4406         renaming them since they are about to be redefined anyhow.
4408 2005-06-08  Derek Price  <derek@ximbiot.com>
4410         * doc/autoconf.texi (Redefined M4 Macros): Add index entries for most
4411         redefined M4 macros to this node.  Document m4_include & m4_sinclude.
4412         Move m4_undefine to alphabetical order.
4414 2005-06-07  Paul Eggert  <eggert@cs.ucla.edu>
4416         * README: Recommend GNU M4 1.4.3 or later.
4417         * doc/autoconf.texi (Introduction): Likewise.
4418         Reword to avoid some formatting glitches.
4419         Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days.
4420         Clarify explanation of HP compiler bug.
4421         Redo example output tp match current CVS snapshot.
4422         Use @example.org in email addresses when the examples
4423         might get inadvertently cut-and-pasted into user code.
4424         Remove example of autom4te usage that doesn't seem to work now.
4425         Use modern AC_INIT (except when the example is meant to be
4426         shown with Autoconf 2.13).
4427         Update ksh info for Solaris 9 and later.
4428         KB -> kB.
4429         Modernize description of Automake versions a bit.
4430         Don't claim a future version of Autoconf is near.
4431         * doc/install.texi: Reword to avoid some formatting glitches.
4433 2005-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4435         * doc/autoconf.texi: Add [] to examples, so that the manual
4436         follows its own advice about quoting better.
4437         Reword to avoid some formatting glitches.
4438         * doc/installt.exi: Reword to avoid some formatting glitches.
4440         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
4441         Tru64 ksh pattern matching bug.  Reported against Libtool by
4442         Albert Chin <libtool@mlists.thewrittenword.com> and
4443         Nicolas Joly <njoly@pasteur.fr>.
4445 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
4447         m4_cdr of one-member list was [[]] (one-member list containing an
4448         empty string) instead of [] (an empty list.  Callers were skewed to
4449         match this misbehaviour.  As a consequence of this:
4450          - m4_foreach([x], [], [foo]) expanded to `foo', while
4451          - the expansion of m4_foreach([x], [[]], [foo]) was empty.
4452         This bug has been fixed:
4454         * lib/m4sugar/m4sugar.m4 (m4_cdr): If only one argument is given,
4455           expand to an empty string; print error msg if called without
4456           an argument list.
4457         (m4_foreach, m4_map, m4_map_sep): Don't expect the previous
4458           misbehaviour; handle [] and [[]] correctly.
4460 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
4462         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Nuke ac_max_here_lines.
4463         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Simplify the sed
4464           scripts created and the loop applying them, use _AC_SED_CMD_LIMIT.
4466 2005-06-06  Ralf Menzel <menzel@ls6.cs.uni-dortmund.de>  (trivial change)
4468         * doc/autoconf.texi (Limitations of Usual Tools): Solaris' awk cannot
4469           swallow records with more than 99 fields.
4470         * lib/autotest/general.m4 (AT_INIT): Use the awk builtin `split' to
4471           parse the long line.
4473 2005-06-04  Stepan Kasal  <kasal@ucw.cz>
4475         * doc/autoconf.texi (Limitations of Usual Tools): AIX awk cannot
4476           swallow literals longer than 399.  Reported by Ralf Wildenhues.
4477         * lib/autotest/general.m4 (AT_INIT): Pass $at_groups though stdin,
4478           to workaround this limitation.
4480 2005-06-03  Steven G. Johnson  <stevenj@alum.mit.edu>
4482         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Find g95 in addition
4483         to gfortran, and make these the first two compiler names
4484         checked (following the general autoconf preference for gcc).
4486 2005-06-03  Stepan Kasal  <kasal@ucw.cz>
4488         * tests/Makefile.am (check_SCRIPTS): Set to $(wrappers).
4489         (DISTCLEANFILES): Remove $(check_SCRIPTS).
4490         (testsuite): Make sure autotest.m4f is up-to-date before using it.
4492 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
4494         * lib/autotest/general.m4 (AT_INIT): Don't create a regular
4495         expression of unbounded size when processing the --list
4496         option.  This runs afoul of a limit of 399 bytes per regular
4497         expression on AIX.  Problem reported by Ralf Wildenhues.
4499 2005-06-01  Paul Eggert  <eggert@cs.ucla.edu>
4501         * NEWS: Note yesterday's changes to AC_SUBST and AC_SUBST_FILE.
4502         * doc/autoconf.texi (Particular Headers): Reword example
4503         for multiline stdbool replacement.
4504         (Setting Output Variables): Reword text a bit.  Don't
4505         give all the details about |#_!!_#|.
4506         Reword description of line replacement.
4508 2005-05-31  Dan Manthey  <dan_manthey@partech.com>
4510         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Output variables may
4511         now contain newlines, and substituted files must be referenced on
4512         a line alone; the sed scripts to substitute them are now very
4513         different.
4514         (_AC_SED_CMD_LIMIT): Added; single place to store limit on how many
4515         commands can be put in a sed script portably.
4516         * doc/autoconf.texi (Setting Output Variables): Document above
4517         changes.  (Particular Header Checks) <AC_HEADER_STDBOOL>: Give exaple
4518         use of multiline substitution.
4519         * tests/torture.at: No longer expect substitution of newline to fail.
4521 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
4523         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
4524         From Ralf Menzel (trivial change).
4526 2005-05-25  Paul Eggert  <eggert@cs.ucla.edu>
4528         * tests/local.at: Don't attempt to check for negated character
4529         classes in shell scripts.  The test was too brittle.
4531 2005-05-25  Stepan Kasal  <kasal@ucw.cz>
4533         * bin/autoconf.as: Don't use "shift 2"; it's not portable enough.
4534         * doc/autoconf.texi (Limitations of Builtins): Document this
4535           limitation.
4537 2005-05-24  Stepan Kasal  <kasal@ucw.cz>
4539         * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): New macro to factor out
4540           common code; used in many places in the tree.
4541         (AS_ESCAPE): Make the pattern a bit simpler; use \& insetad of \1.
4542         (_AS_ECHO_UNQUOTED): Move the macro lower; no code change.
4544         * lib/m4sugar/m4sugar.m4 (m4_ifset): Use m4_ifval.
4546         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Merge the two error
4547           messages when ac_unique_file is not found.
4548         (AC_CONFIG_MACRO_DIR): Simplify the `if' at the end.
4549         (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo
4550           commands, for consistency with AC_MSG_ERROR and such.
4552         * bin/autoconf.as: Make more use of "shift 2" in option processing.
4554         * bin/Makefile.am: Merge the two rules for creating scripts.
4556 2005-05-23  Stepan Kasal  <kasal@ucw.cz>
4558         * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED): Make
4559         obsolete; it was never documented.
4560         (AC_CACHE_CHECK): Use AC_MSG_RESULT instead.
4562 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
4564         * NEWS: @top_builddir@ is now a dirname, ac_top_builddir will follow.
4565         * lib/autoconf/status.m4 (_AC_SRCDIRS): Rename ...
4566         (ac_top_builddir): ... this ...
4567         (ac_top_build_prefix): ... to this; the old name is also kept, for
4568           backward compatibility.
4569         (ac_top_builddir_sub): New variable, without the trailing slash,
4570           always nonempty.
4571         (_AC_OUTPUT_FILES): s/@top_builddir@/$ac_top_builddir_sub/
4572         * doc/autoconf.texi (Configuration Actions): Rename
4573           ac_top_builddir to ac_top_build_prefix.
4574         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Rename
4575           at_top_builddir to at_top_build_prefix.
4576         * lib/autotest/general.m4 (AT_INIT): Likewise.
4578 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
4580         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Simplify the init
4581           of confdefs.h .
4583 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
4585         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't m4_quote the second
4586           argument to m4_foreach.  I guess it was necessary in the past,
4587           but I think it's a no-op now.
4589 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
4591         * lib/autoconf/general.m4 (_AC_INIT_HELP): Merge two consecutive
4592           ``cat <<_ACEOF'' commands to one.
4593         (_AC_CANONICAL_SPLIT): Use expr, not ``echo|sed.''
4594         * lib/autoconf/status.m4: On various places, use expr instead of
4595           ``echo|sed.''
4596         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST):
4597         (_AC_CONFIG_SPLIT_FILE_IN): New macros, to factor out common code.
4598         * lib/autotest/general.m4 (AT_INIT): Use expr to get the numbers from
4599           a range.
4600         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Use awk to search for
4601           the wrong patterns between ``case'' and ``esac.''  The previous
4602           code had false positives.
4604 2005-05-14  Alexandre Duret-Lutz  <adl@gnu.org>
4606         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Prepend ${LIBOBJDIR},
4607         as on 2005-05-02.
4608         * doc/autoconf.texi (Particular Functions) <AC_FUNC_ALLOCA>:
4609         Mention LIBOBJDIR.
4611 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
4613         * AUTHORS, BUGS, COPYING, ChangeLog, ChangeLog.0, ChangeLog.1,
4614         ChangeLog.2, GNUmakefile, Makefile.am, Makefile.cfg,
4615         Makefile.maint, NEWS, README, README-alpha, TODO, configure.ac,
4616         bin/Makefile.am, bin/autoconf.as, bin/autoheader.in,
4617         bin/autom4te.in, bin/autoreconf.in, bin/autoscan.in,
4618         bin/autoupdate.in, bin/ifnames.in, config/Makefile.am,
4619         config/config.guess, config/config.sub, config/elisp-comp,
4620         config/m4.m4, config/mdate-sh, config/missing, config/texinfo.tex,
4621         doc/Makefile.am, doc/fdl.texi, lib/Makefile.am, lib/autom4te.in,
4622         lib/freeze.mk, lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
4623         lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
4624         lib/Autom4te/FileUtils.pm, lib/Autom4te/General.pm,
4625         lib/Autom4te/Request.pm, lib/Autom4te/Struct.pm,
4626         lib/Autom4te/XFile.pm, lib/autoconf/Makefile.am,
4627         lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
4628         lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
4629         lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
4630         lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
4631         lib/autoconf/general.m4, lib/autoconf/headers.m4,
4632         lib/autoconf/lang.m4, lib/autoconf/libs.m4,
4633         lib/autoconf/oldnames.m4, lib/autoconf/programs.m4,
4634         lib/autoconf/specific.m4, lib/autoconf/status.m4,
4635         lib/autoconf/types.m4, lib/autoscan/Makefile.am,
4636         lib/autoscan/autoscan.list, lib/autoscan/autoscan.pre,
4637         lib/autotest/Makefile.am, lib/autotest/autotest.m4,
4638         lib/autotest/general.m4, lib/emacs/Makefile.am,
4639         lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
4640         lib/m4sugar/Makefile.am, lib/m4sugar/m4sh.m4,
4641         lib/m4sugar/m4sugar.m4, man/Makefile.am, tests/Makefile.am,
4642         tests/atlocal.in, tests/autotest.at, tests/base.at, tests/c.at,
4643         tests/compile.at, tests/foreign.at, tests/fortran.at,
4644         tests/local.at, tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
4645         tests/semantics.at, tests/suite.at, tests/tools.at,
4646         tests/torture.at, tests/wrapper.as:
4647         Update FSF postal mail address.
4649 2005-05-13  Stepan Kasal  <kasal@ucw.cz>
4651         * lib/autoconf/general.m4 (AC_CONFIG_LIBOBJ_DIR): Remove the broken
4652           check.
4653         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Halt with error if we don't get
4654           enough arguments, similarly as in m4_bpatsubsts.
4656 2005-05-12  Stepan Kasal  <kasal@ucw.cz>
4658         * lib/autoconf/status.m4 (_AC_SRCDIRS): Simplify the computation
4659           of absolute paths.
4661 2005-05-11  Stepan Kasal  <kasal@ucw.cz>
4663         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Make the check
4664           for absolute directory names in one loop.
4665         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle
4666           abbreviations of --version and --debug.
4668 2005-05-10  Paul Eggert  <eggert@cs.ucla.edu>
4670         * doc/autoconf.texi (Autoconf Language): Be more precise about
4671         quoting rules.  Problems noted by Stepan Kasal.
4672         Also, throughout this document, be more careful about white space.
4673         "blank", "white space", and "space" all have different meanings
4674         and we should be careful to say what we mean.
4676 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
4678         Fix C++ related problems reported by Werner Lemberg.
4679         * doc/autoconf.texi (C++ Compiler): Mention .cpp extension.
4680         * lib/autoconf/c.m4 (AC_LANG(C++)): Set ac_ext to .cpp, not .cc.
4681         * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Simplify test, to
4682         avoid problems with C++ and throw.
4683         * tests/compile.at: .cpp, not .cc.
4685         * tests/semantics.at: Prepend LIBOBJDIR, as per 2005-05-02 change.
4687 2005-05-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4689         * doc/autoconf.texi (Generic Functions): Typos.
4691 2005-05-02  Gary V. Vaughan  <gary@gnu.org>
4693         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Prepend each
4694         object named in LIBOBJS and LTLIBOBJS with the ${LIBOBJDIR}, as
4695         set by latest automake.
4697 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
4699         * doc/autoconf.texi (Limitations of Usual Tools): "expr '' \| ''"
4700         outputs 0 on GNU/Linux these days.
4702 2005-04-29  Paul Eggert  <eggert@cs.ucla.edu>
4704         * doc/autoconf.texi (Autoconf Language): Add more description
4705         about quoting heuristics.
4706         (Limitations of Builtins): Describe "set -" problems.
4708 2005-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4710         * lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
4711         not newline.
4713         * doc/autoconf.texi (External Software): Replace AC_DEFINE_UNQUOTED
4714         by AC_DEFINE; it was a mistake.
4715         From bug reported against libtool by Dalibor Topic <robilad@kaffe.org>.
4717 2005-04-25  Stepan Kasal  <kasal@ucw.cz>
4719         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): A tiny optimization.
4721 2005-04-22  Stepan Kasal  <kasal@ucw.cz>
4723         * doc/autoconf.texi (External Software): Quadrigraphs are not
4724           processed correctly in AS_HELP_STRING; avoid this in the examples.
4725         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Add a FIXME about quadrigraphs.
4726         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Likewise; and rephrase the
4727           comment and reduce m4_default([foo], []) to [foo].
4728         (m4_strip): Update the explanation.
4730 2005-04-19  Paul Eggert  <eggert@cs.ucla.edu>
4732         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
4733         Remove core.conftest.* too; it's generated by Tru64 5.1.
4734         Problem reported by Jennis Pruett.
4735         * lib/autoconf/functions.m4
4736         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
4737         Don't bother to remove core files; AC_RUN_IFELSE should do that
4738         for you.
4740 2005-04-19  Stepan Kasal  <kasal@ucw.cz>
4742         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Add the b- to comment, too.
4744 2005-04-19  Alexandre Duret-Lutz  <adl@gnu.org>
4746         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle --docdir.
4747         Report from Horst Wente.
4749 2005-04-15  Stepan Kasal  <kasal@ucw.cz>
4751         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Fixed a typo in
4752           the comment.
4754 2005-04-14  Gregorio Guidi  <greg_g@gentoo.org>
4756         * doc/autoconf.texi (External Software, Package Options): Add
4757           examples showing how to implement --with-* and --enable-* options.
4759 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
4761         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
4762         as well as configure.in.  Problem reported by Gregorio Guidi.
4764 2005-04-10  Paul Eggert  <eggert@cs.ucla.edu>
4766         * doc/autoconf.texi (Particular Functions): Use gnulib's current
4767         pattern for alloca snippet.
4769 2005-04-04  Stepan Kasal  <kasal@ucw.cz>
4771         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix a typo.
4773 2005-04-01  Stepan Kasal  <kasal@ucw.cz>
4775         * doc/autoconf.texi (Generic Programs): Fix a typo.
4777 2005-04-01  Paul Eggert  <eggert@cs.ucla.edu>
4779         * lib/autotest/general.m4 (AT_INIT): Don't assume that "date +%s"
4780         fails if %s isn't supported.  Problem reported by Ralf Wildenhues.
4782 2005-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4784         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS):
4785         Merge `-z option' as well for the benefit of Solaris link flags.  Pass
4786         whole-archive (-zallextract, -zdefaultextract) options in the hope of
4787         unique libraries, for the Sun Fortran 95 8.0 compiler.  Bug reported
4788         against Libtool by Yury Puhalsky <pooh@cryptopro.ru>.
4790 2005-03-22  Paul Eggert  <eggert@cs.ucla.edu>
4792         * NEWS: The configure command now warns you if you attempt to use
4793         a directory whose name contains a special character like space,
4794         newline, or "\".
4795         * doc/autoconf.texi (Installation Directory Variables): Allow
4796         "," in file names.  Do not use \@; it's not a portable regexp.
4797         * bin/Makefile.am (edit): Likewise.
4798         * lib/Makefile.am (edit): Likewise.
4799         * tests/Makefile.am (edit): Likewise.
4800         * tests/semantics.at: Likewise.
4801         * tests/torture.at: Likewise.
4802         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Likewise.
4803         * lib/autoconf/status.m4 (_AC_SRCDIRS): Likewise.
4804         * doc/autoconf.texi (File System Conventions): Warn about
4805         unportable file names.
4806         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): New macro.
4807         (AC_INIT): Use it.
4808         (_AC_INIT_SRCDIR): Use ac_pwd rather than invoking pwd.
4809         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Propagate
4810         ac_pwd, and quote srcdir.
4811         * lib/autotest/general.m4 (AT_INIT): Quote file name args.
4813         * doc/autoconf.texi: Fix some systematic formatting problems.
4814         ".)"  needs a following @: if not at the end of a sentence, and
4815         similarly for "!)".  "etc." should be preceded by a comma.
4816         "n-th" -> "@var{n}th".  pdksh is still buggy, so update its date.
4818 2005-03-22  Bruno Haible  <bruno@clisp.org>
4820         * doc/autoconf.texi (Input): Mention that AC_CONFIG_AUX_DIR's
4821         argument is often called 'build-aux'.
4823 2005-03-07  Stepan Kasal  <kasal@ucw.cz>
4825         * doc/autoconf.texi (Quotation Rule Of Thumb): Mention that the
4826           macro AC_TRY_LINK is obsolete.
4827         (Installation Directory Variables): Change `AC_OUTPUT_FILES' to
4828           `AC_CONFIG_FILES'.
4830 2005-02-24  Stepan Kasal  <kasal@ucw.cz>
4832         * lib/autoconf/c.m4 (AC_PROG_CC): Be more careful to skip
4833           `/usr/ucb/cc'; use `cl.exe' to distinguish the MS compiler
4834           from a Common Lisp's `cl'.
4835         (AC_PROG_CXX): Behave according to the documentation: don't
4836           search for $ac_tool_prefix$CCC and $CCC, just set CXX=$CCC;
4837           make the variable CCC precious; use `cl.exe', not `cl'.
4839 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
4840             Alexandre Duret-Lutz  <adl@gnu.org>
4842         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin from
4843         /dev/null, as "configure" shouldn't read stdin, and this insulates
4844         us from problems (e.g., when testing for "cl").  Also, do this
4845         redirection before invoking "hostname" or "uname", and keep the
4846         original input stream available via...
4847         (AS_ORIGINAL_STDIN_FD): ... this new macro.
4848         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't
4849         bother with "</dev/null" since it's now done at the top of
4850         'configure'.
4851         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Likewise.
4852         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
4853         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
4854         * doc/autoconf.texi (File Descriptor Macros): New section.
4855         (Printing Messages): Mention it.
4856         * tests/base.at (Input/Output): New test.
4858 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
4860         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Don't set ECHO_C to
4861         newline if neither \c nor -n work, as that would output two
4862         newlines.  Prefer -n to \c.  Reported by Stepan Kasal.
4864 2005-02-12  Stepan Kasal  <kasal@ucw.cz>
4866         * lib/m4sugar/m4sh.m4 (AS_IF): Define by m4_defun, not m4_define.
4867         This causes that any required macros inside will get before the if.
4868         * doc/autoconf.texi (autom4te.cache): A typo.
4870 2005-02-12  Paul Eggert  <eggert@cs.ucla.edu>
4872         Undo previous change, except keep the change to
4873         lib/autoconf/programs.m4 that replaced grep with shell
4874         pattern-matching.  This is because net-snmp configure reads stdin.
4875         Reported by Noah Misch.
4877 2005-02-11  Paul Eggert  <eggert@cs.ucla.edu>
4879         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin
4880         from /dev/null, as "configure" shouldn't read stdin, and this
4881         insulates us from problems (e.g., when testing for "cl").
4882         Suggested by Alexandre Duret-Lutz.  Also, do this redirection
4883         before invoking "hostname" or "uname".
4884         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
4885         _AC_LINK_IFELSE): Undo previous change, as it's no longer needed.
4886         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Don't bother with
4887         "</dev/null" since it's now done at the top of 'configure'.
4888         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
4889         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
4890         Also, replace grep with shell pattern-matching, to save a process.
4892 2005-02-10  Paul Eggert  <eggert@cs.ucla.edu>
4894         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
4895         _AC_LINK_IFELSE): Redirect stdin to /dev/null, in an attempt to
4896         avoid thinking that Allegro Common Lisp's "cl" command is a C++
4897         compiler.
4899 2005-02-09  Paul Eggert  <eggert@cs.ucla.edu>
4901         * doc/autoconf.texi (Limitations of Usual Tools): Document that
4902         grep -q isn't portable.  Improve grep -s explanation.
4903         Problem reported by Dan Manthey.
4905 2005-02-08  Paul Eggert  <eggert@cs.ucla.edu>
4907         * doc/autoconf.texi (Special Shell Variables): Clarify
4908         PATH_SEPARATOR wording; fix typo in IFS.  Reported by Gary V. Vaughan.
4910 2005-02-07  Paul Eggert  <eggert@cs.ucla.edu>
4912         * doc/autoconf.texi: Use @acronym for DJGPP.
4913         Fix some @code's that should have been @env's, and vice versa.
4914         Sort environment variable names.
4915         Mention that shells no longer inherit IFS.
4916         Don't recommend PATH_SEPARATOR=';' so strongly.
4917         Mention that $RANDOM might expand to the empty string.
4918         "symlink" and "soft link" -> "symbolic link".
4919         Improve mktemp description (reported by Bruno Haible).
4921 2005-02-05  Paul Eggert  <eggert@cs.ucla.edu>
4923         * tests/foreign.at (Libtool): Don't overquote AT_SETUP arg.
4924         * tests/m4sh.at (AS_DIRNAME, AS_BASENAME, AS_MKDIR_P, AS_HELP_STRING):
4925         Likewise.
4926         * tests/semantics.at (AC_C_BIGENDIAN, AC_PATH_PROG & AC_PATH_PROGS):
4927         Likewise.
4929 2005-02-04  Paul Eggert  <eggert@cs.ucla.edu>
4931         * NEWS: Mention AT_COPYRIGHT.
4933         * tests/local.at (AT_CMP): Use diff directly on input files rather
4934         than copying them.
4936         * lib/autoconf/programs.m4 (AC_PROG_SED): Don't look in
4937         /usr/xpg4/bin since that sed dumps core (at least on Solaris 8).
4939 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
4940         and Paul Eggert  <eggert@cs.ucla.edu>
4942         * tests/autotest.at (Empty test suite): New test.
4943         * tests/torture.at (Substitute and define special characters)
4944         (Substitute a 2000-byte string, Define to a 2000-byte string)
4945         (Substitute a newline, Define a newline): New tests.
4947 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
4949         * lib/m4sugar/m4sugar.m4 (m4_re_string, m4_re_word): Revert 2002-03-04.
4950         * tests/local.at (AT_CHECK_M4SUGAR): Add `m4sugar' to keywords.
4951         (AT_CHECK_ENV): Ignore LTLIBOBJS, FC variables, EGREP, FGREP, and SED.
4952         * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, AT_CHECK_M4RE): New macros.
4953         (Standard regular expressions): New test.
4954         (m4_warn, m4_require: circular dependencies, m4_text_wrap): Strip
4955         excess test name quoting.
4956         * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADERS_NEW): Pass
4957         CPPFLAGS to `configure' instead of setting it in `configure'.
4959         * lib/m4sugar/m4sh.m4 (AS_UNAME): Try only /usr/bin/hostinfo, not
4960         any `hostinfo' in $PATH, since hostinfo.exe is a popular file name
4961         on some platforms.
4963         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_FC_SRCEXT):
4964         s/FC_SRCEXT/ac_fc_srcext/; s/FCFLAGS_SRCEXT/ac_fcflags_srcext/.
4966         * tests/local.at (AT_CMP): New macro.
4967         (AT_DATA_AUTOCONF): Do not call AC_PROG_GREP.
4968         (AC_SAVE_STATE): Move environment grep...
4969         (AT_CHECK_ENV): to here.  Filter out `'$''.  Use AT_CMP.
4970         (AT_CONFIG_CMP): New macro.
4971         (AT_CHECK_MACRO): Run `configure' twice with cache and compare results.
4972         * tests/c.at (Extensions): Do not exit early.
4973         * tests/atlocal.in: Inherit $GREP.
4975         * lib/autoconf/c.m4 (_AC_C_STD_TRY): New macro.
4976         (_AC_PROG_CC_C89, _AC_PROG_CC_C99): Use it.
4978         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Update for 2005.
4979         (AC_COPYRIGHT): Factor header comment portion out and move into...
4980         * lib/m4sugar/m4sh.m4 (AS_COPYRIGHT): This.
4981         * lib/autotest/general.at (AT_COPYRIGHT): New macro.
4982         (AT_INIT): Add Autotest copyright notice.  Display copyright notices in
4983         --version output.
4984         * tests/local.at: Add Autoconf test suite copyright notice.
4985         * doc/autoconf.texi (Writing testsuite.at): Document AT_COPYRIGHT.
4987 2005-02-04  Bruno Haible  <bruno@clisp.org>
4988         and Paul Eggert  <eggert@cs.ucla.edu>
4990         * doc/autoconf.texi (Limitations of Usual Tools): New mkstemp entry.
4992 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
4994         * lib/m4sugar/m4sugar.m4 (m4_re_escape): Escape ?, ^, \, $ too;
4995         this fixes a bug tickled by the AT_CAPTURE_FILE change noted below.
4997         Try not to generated lines of unlimited length, as POSIX places a
4998         2047-byte limit on line length of portable text files.
4999         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILE):
5000         Use newline as a separator, not space.
5001         * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Likewise.
5002         (AT_CAPTURE_FILE): Use space-backslash-newline as a separator, not
5003         space.
5005 2005-02-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5007         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Move func_* to
5008         as_func_*.  Add test to check whether positional parameters
5009         are restored after function return.
5011 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
5013         * doc/autoconf.texi (Special Shell Variables): Mention _,
5014         BIN_SH, DUALCASE.  Say that variables other than "status" are safe
5015         if they contain a lower-case letter.  The DUALCASE problem was
5016         reported by Ralf Wildenhues.
5018         * bin/autoconf.as: Don't exit with status 0 after write failure
5019         with --help or --version.
5020         * lib/autoconf/general.m4 (_AC_INIT_HELP, _AC_INIT_VERSION): Likewise.
5021         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
5023 2005-02-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5025         * doc/autoconf.texi (Limitations of Usual Tools):
5026         Unicos 9 sed limitations.
5027         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Try cf77 before fort77
5028         to get the option-enhanced interface on older Crays.  Try ftn for
5029         Fortran 95 (newer Crays).
5031 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
5033         * man/Makefile.am (.x.1): Go back to the simple solution, but take
5034         care to echo the commands, so the user knows what's going on.
5035         Modified from a suggestion by Stepan Kasal.
5037         * doc/autoconf.texi (autoreconf Invocation): Mention autopoint,
5038         with a cross reference.  Derived from a suggestion by Bruce Korb.
5040 2005-01-31  Paul Eggert  <eggert@cs.ucla.edu>
5042         * doc/autoconf.texi (config.status Invocation): Warn about
5043         discrepancy between CONFIG_SHELL and shell used to invoke 'configure'.
5044         * doc/install.texi (Defining Variables): Likewise.
5045         Based on a proposed patch by Ralf Wildenhues.
5047         * man/Makefile.am (.x.1): Make sure the required generated files
5048         are up to date.  Problem and original solution proposed by Stepan Kasal.
5049         $(dist_man_MANS:.1=-bin-prereq), $(dist_man_MANS:.1=-tests-prereq),
5050         implicit-man-prerequisites): New rules, used by the above.
5052         * doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
5053         * config/config.guess, config/config.sub, config/install-sh: Likewise.
5054         * config/missing, config/texinfo.tex: Likewise.
5056 2005-01-29  Stepan Kasal  <kasal@ucw.cz>
5058         Simplify the implementation of m4_require (a.k.a. AC_REQUIRE).
5059         Update the long comment explaining it.
5061         m4_require no longer writes an ``is required by'' line to the
5062         execution stack.  It contains only one bit of non-redundant
5063         information: that the macro was required, not called.  And even
5064         this bit is useless in most situations: have you ever met a macro
5065         which both calls and requires the same macro?
5067         * lib/m4sugar/m4sugar.m4 (_m4_defun_pro): Don't push a diversion...
5068         (_m4_defun_pro_outer): ... only via this macro, for the outermost
5069           macro.
5070         (_m4_defun_epi, _m4_defun_epi_outer): Complementarily.
5071         (m4_expansion_stack_pop): Remove the misplaced comment.
5072         (m4_require): Don't put the ``is required by'' line to the
5073           execution stack; slightly improve the out-of-a-defun error message.
5074         (_m4_divert_grow): New macro, counter for the temporary diversions.
5075         (_m4_require_call): Use it.
5076         * tests/m4sugar.at (m4_require): Expect output without the
5077           ``is required by'' messages.
5079 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
5081         * doc/autoconf.texi (Limitations of Usual Tools): Recommend X
5082         rather than x for expr.
5084         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT): Avoid subshells when
5085         this is safe.
5086         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): Likewise.
5087         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
5088         * lib/autotest/general.m4 (AT_INIT): Likewise.
5089         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Likewise.
5090         * tests/mktests.sh: Likewise.
5092 2005-01-27  Akim Demaille  <akim@epita.fr>
5094         Have autoheader honor --force.
5096         * doc/make-stds.texi, doc/standards.texi: Update from masters.
5097         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm
5098         * lib/Autom4te/FileUtils.pm, lib/Autom4te/XFile.pm: Update
5099         from masters, so that FileUtils.pm's update_file provide --force
5100         support.
5101         * bin/autoheader.in: Pass $force to update_file so that
5102         config.h.in is always recreated when --force.
5104 2005-01-24  Stepan Kasal  <kasal@ucw.cz>
5106         * doc/autoconf.texi (Introduction): Update Peter Simons' address.
5108 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
5110         * doc/autoconf.texi (Limitations of Builtins): Clarify that
5111         "if test ! -d foo; ..." is portable.  Suggested by Stepan Kasal.
5113 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
5115         * doc/autoconf.texi (Shell Substitutions): Fix typo in case statement.
5116         Warn about newline stripping in `` and $().  Update Solaris
5117         version to 9.
5118         (Limitations of Builtins): Use expr "X...", not expr "x...", as
5119         X insulates us from future changes to Posix.
5120         (Limitations of Usual Tools): For AS_DIRNAME, warn about newline
5121         stripping.
5123 2005-01-19  Stepan Kasal  <kasal@ucw.cz>
5125         * doc/autoconf.texi (Defining Symbols): Delete the false comment that
5126           you cannot use AC_DEFINE to define macros containing `[' or `]'.
5128 2005-01-13  Paul Eggert  <eggert@cs.ucla.edu>
5130         * doc/autoconf.texi (Limitations of Usual Tools): Document bug
5131         in Solaris 8 join.  Problem reported by Tomohiro Suzuki on
5132         bug-tar mailing list.
5134 2005-01-05  Stepan Kasal  <kasal@ucw.cz>
5136         * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
5138 2005-01-05  Paul Eggert  <eggert@cs.ucla.edu>
5140         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
5141         ulongval to be static, to avoid unwanted GCC warning.  Problem
5142         reported by Michael Jennings via Daniel Reed; see
5143         <https://bugzilla.redhat.com/beta/show_bug.cgi?id=143852>.
5145 2005-01-05  Alexandre Duret-Lutz  <adl@gnu.org>
5147         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Define datarootdir,
5148         docdir, htmldir, dvidir, pdfdir, psdir, and localdir.  Update
5149         datadir, infodir, and mandir.  Adjust argument parsing code.
5150         (_AC_INIT_HELP): Update help text.
5151         * doc/autoconf.texi (Installation Directory Variables): Document
5152         new variables.
5154 2005-01-04  Noah Misch  <noah@cs.caltech.edu>
5156         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): If the Make program does
5157         not seem to work, assume it does set $(MAKE).
5158         * doc/autoconf.texi (AC_PROG_MAKE_SET): Update.
5160 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
5162         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Add a comment about nesting.
5164 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
5166         A cleanup of the diversion support in m4sugar.
5168         * lib/m4sugar/m4sugar.m4 (_m4_divert): A typo in description.
5169         (_m4_divert_n_stack): New macro; the expansion is
5170           <newline>m4_divert_stack, if m4_divert_stack is defined, and void
5171           otherwise.
5172         (m4_divert, m4_divert_push, m4_divert_pop, m4_init): Use it.
5173         (m4_divert_push, m4_divert_pop, _m4_defun_epi): Don't expand the word
5174           stored in _m4_divert_diversion or _m4_divert_dump.
5175         (m4_divert_pop): When the parameter is given, compare the symbolic
5176           name with the last diversion pushed on the stack.  Previously, the
5177           current diversion was compared with the numeric value of the
5178           diversion given as the parameter.
5179         (m4_require): If the macro hasn't been expanded yet, call ...
5180         (_m4_require_call): this new macro.
5182 2005-01-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5184         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_ARG_VAR_VALIDATE):
5185         Workarounds for documented `case' limitations.
5187 2005-01-03  Paul Eggert  <eggert@cs.ucla.edu>
5189         * doc/autoconf.texi (Limitations of Usual Tools): Warn about
5190         sed 'command1;command2'.  Problem reported by Ralf Wildenhues.
5192 2005-01-02  Paul Eggert  <eggert@cs.ucla.edu>
5194         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
5195         bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
5196         bin/ifnames.in, tests/mktests.sh: Update copyright date to 2005.
5198         Patch from Roger Leigh (with some minor changes) as follows:
5199         * NEWS: New macros AC_PROG_CC_C89, AC_PROG_CC_C99.
5200         Resurrect AC_PROG_CC_STDC.
5201         * doc/autoconf.texi (C Compiler): Add AC_PROG_CC_STDC,
5202         AC_PROG_CC_C89, AC_PROG_CC_C99.
5203         (Obsolete Macros): Remove AC_PROG_CC_STDC; it's no longer obsolete.
5204         * lib/autoconf/c.m4 (_AC_PROG_CC_C89, _AC_PROG_CC_C99, AC_PROG_CC_C89,
5205         AC_PROG_CC_C99): New macros.
5206         (AC_PROG_CC_STDC): Use them.
5207         (_AC_PROG_CC_STDC): Remove.
5208         (AC_C_PROTOTYPES): Use ac_cv_prog_cc_c89, not ac_cv_prog_cc_stdc.
5209         * THANKS: Add Roger Leigh.
5211 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
5213         * bin/autoreconf.in (autoreconf_current_directory):  AM_INIT_AUTOMAKE
5214         signals that the package uses Automake; a `Makefile.am' is typical but
5215         not essential.  Reported by Magnus Therning.
5216         * tests/torture.at (autoreconf.): New banner.
5217         (autoreconf and non-AC configure): Rename to `Non-Autoconf
5218         AC_CONFIG_SUBDIRS'.
5219         (autoreconf an empty directory): Rename to `Empty directory'.
5220         (Unusual Automake input files): New test.
5222 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
5224         * lib/autotest/general.m4 (AT_CAPTURE_FILE): New macro.
5225         (AT_SETUP): Clear AT_capture_files.
5226         (_AT_CHECK): On failure, log each of AT_capture_files.  Fix comment.
5227         (AT_KEYWORDS): Fix comment typo.
5228         * tests/autotest.at (AT_CHECK_AT): Use AT_CAPTURE_FILE.
5229         * tests/local.at (AT_CHECK_CONFIGURE): Use AT_CAPTURE_FILE.
5230         * doc/autoconf.texi (Writing testsuite.at): Document AT_CAPTURE_FILE.
5232 2004-12-29  Albert Chin-A-Young  <china@thewrittenword.com>
5234         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
5235         If the variable to set is already set, set ac_cv_path_$1
5236         to the preset value so caller can assume ac_cv_path_$1
5237         is available.  (trivial change)
5239 2004-12-27  Noah Misch  <noah@cs.caltech.edu>
5241         * BUGS (Minor Problems): Warn about makefile limitations.
5242         * Makefile.am: Find and update `INSTALL' in $(srcdir).
5243         * man/Makefile.am: Find and update manual pages in $(srcdir).
5245 2004-12-24  Eric Blake  <ebb9@byu.net>
5247         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Test candidate
5248         shells in subshell, to avoid noise from ash.  (trivial change)
5250 2004-12-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5252         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
5253         problems with SunOS ksh and backslash escaping, Bourne shells and
5254         closing brackets (both within character classes).  Bug reported
5255         against Libtool by Alexander Kurz <alexander.kurz@qsc.de>.
5256         <read>: New entry.  Mention non-availability of -r.
5258 2004-12-21  Akim Demaille  <akim@epita.fr>
5260         * lib/autotest/general.m4 (AT_LINE): Don't add srcdir here, to
5261         avoid cluttering displayed messages.  Rather, prepend srcdir where
5262         AT_LINE is used for log files.
5264 2004-12-21  Stepan Kasal  <kasal@ucw.cz>
5266         * lib/autoconf/status.m4: Quote ``$tmp'' in many places.
5267         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Fix the comment, as traps are
5268           no longer part of the macro, quote the occurrence of ``$tmp''.
5269         * doc/autoconf.texi (Forbidden Patterns): Typo.
5271 2004-12-21  Akim Demaille  <akim@epita.fr>
5273         * lib/autotest/general.m4 (AT_INIT): Make sure the "ok" etc. are
5274         separated from the test title by forcing a white space.
5276 2004-12-21  Akim Demaille  <akim@epita.fr>
5278         Enable Emacs navigation within testsuite.log files.
5280         * lib/autotest/general.m4 (AT_CLEANUP): Add an hint for Emacs to
5281         use the compilation mode.
5282         (AT_LINE): Point to the srcdir.
5284 2004-12-19  Noah Misch  <noah@cs.caltech.edu>
5286         * tests/Makefile.am (installcheck-local): Use $(bindir).
5287         (check-local, installcheck-local): Pass TESTSUITEFLAGS.
5288         * doc/autoconf.texi (Making testsuite Scripts): Recommend the same
5289         Makefile.am scheme Autoconf now uses.
5291 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
5293         * lib/m4sugar/m4sugar.m4 (m4_qlen, m4_qdelta): New macros.
5294         * lib/autotest/general.m4 (AT_SETUP): Use m4_qdelta.
5296 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
5298         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): New macro.
5299         (_AT_CHECK): Use it.
5300         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): Remove.
5301         (AS_ESCAPE): Fix comment.
5302         * tests/autotest.at: Adjust section banner comments.
5303         (AT_CHECK_AT): Accept STATUS and STDERR.
5304         (AT_CHECK_AT_TEST): Likewise.
5305         (Invalid brace-enclosed parameter expansion)
5306         (Multiline command from M4 expansion)
5307         (Double-M4-quoted command): New tests.
5309 2004-12-17  Paul Eggert  <eggert@cs.ucla.edu>
5311         * doc/autoconf.texi: Update GNU FDL version from 1.1 to 1.2.
5313 2004-12-17  Akim Demaille  <akim@epita.fr>
5315         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILES): Pass $1 to
5316         m4_pattern_allow.
5317         Suggested by Alexandre Duret-Lutz.
5318         * doc/autoconf.texi (Setting Output Variables): Catch up.
5320 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
5322         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix comment.
5324 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
5326         * lib/autoconf/general.m4 (_AC_LIBOBJ): We can use AC_SUBST/2,
5327           remove the comment which said we cannot.
5329 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
5331         Add a specialized check for resolv.h.  Thanks to Gerrit P. Haase,
5332         Reini Urban and Paul Eggert for reporting the dependencies.
5334         * lib/autoconf/headers.m4 (AC_HEADER_RESOLV): New macro.
5335         * doc/autoconf.texi (AC_HEADER_RESOLV): Document it.
5336         (AC_HEADER_STAT): @cvindex{STAT_MACROS_BROKEN}, not @acindex.
5338 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
5340         * bin/autoscan.in: Open autoscan.log only after ``parse_args'';
5341           so that eg. ``autoscan --help'' doesn't truncate it.
5343 2004-12-15  Nicolas Joly  <njoly@pasteur.fr>
5345         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
5346         generated conftest files.
5348 2004-12-13  Noah Misch  <noah@cs.caltech.edu>
5350         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Do not enable shell
5351         tracing on commands with possibly-escaped newlines.
5352         * doc/autoconf.texi (Writing testsuite.at): Delete documentation of the
5353         discontinued behavior and its implications.
5354         * tests/autotest.at (BS-newline in command, ^BS-newline in command)
5355         (BSx641-newline in command, BS-BS-newline in command)
5356         (BSx640-newline in command, Newline-CODE-BS-newline in command)
5357         (Single-quote-BS-newline in command)
5358         (Single-quote-newline-BS-newline in command): New tests.
5360 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
5362         * lib/m4sugar/m4sh.m4 (AS_EXECUTABLE_P): Use test -f && test -x
5363           on platforms where it works.
5364         (_AS_TEST_PREPARE): Test for ``test -x''.
5365         (_AS_BROKEN_TEST_PREPARE): Nuke.
5367 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
5369         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Move the trap commands ...
5370         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): ... here;
5371           give only 4-letter prefix to AS_TMPDIR, comment fixed.
5372         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FEATURE_CHECK): Don't
5373           create the temporary directory.
5374         (_AC_FEATURE_CHECK_LENGTH): Work in current directory.
5376 2004-12-12  Kelley Cook  <kcook@gcc.gnu.org>
5378         * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found.
5379         (trivial change)
5381 2004-12-12  Alexandre Duret-Lutz  <adl@gnu.org>
5383         * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>: Typo.
5385 2004-12-11  Noah Misch  <noah@cs.caltech.edu>
5387         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Rework a shell pattern
5388         to avoid using a negated character class.  Reported by Nicolas Joly.
5389         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Check for similar constructs.
5391 2004-12-10  Paul Eggert  <eggert@cs.ucla.edu>
5393         * man/Makefile.am (autoconf.1, autoheader.1, autom4te.1, autoreconf.1,
5394         autoscan.1, autoupdate.1, ifnames.1, config.guess.1, config.sub.1):
5395         Don't depend on .x file explicitly, since "make" does that for us.
5396         Suggested by Stepan Kasal.
5398         * bin/Makefile.am (MOSTLYCLEANFILES): Renamed from CLEANFILES.
5399         Add *.tmp.
5400         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate,
5401         ifnames): Factor common code.  And they said it couldn't be done!
5403 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
5405         * bin/.cvsignore: Add autoconf.in.
5406         * tests/.cvsignore: Add wrapper.in.
5407         * lib/autotest/general.m4: Escape '$' in case pattern.
5409 2004-12-09  Noah Misch  <noah@cs.caltech.edu>
5411         * man/Makefile.am (autoconf.1): Regenerate when `autoconf.as' changes.
5413         * lib/autotest/general.m4 [--trace] (AT_INIT): Do not `set -v'.
5415         * tests/autotest.at: New file.
5416         * tests/suite.at: Include it.
5417         * tests/Makefile.am: Distribute it.
5419         * lib/autotest/general.m4 [--trace] (_AT_CHECK): Do not enable
5420           shell tracing on a command that could contain multiple lines.
5421         * doc/autoconf.text: Document that fact and its implications.
5422         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): New macro.
5423         * tests/autotest.at (Multiline backquote command substitution,
5424           Multiline parameter expansion, Literal multiline command,
5425           Multiline parenthetical command substitution): Remove XFAIL.
5427 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
5429         * doc/autoconf.texi (Libraries): Clarify problems with AC_CHECK_LIB
5430         and suggest AC_SEARCH_LIBS.  Suggested by Noah Misch and Stepan Kasal.
5432 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
5434         * configure.ac (test suite): Cease to generate wrapper scripts.
5435         * configure: Regenerate.
5436         * lib/freeze.mk (MY_AUTOM4TE): Wrap the uninstalled autom4te directly.
5437         (m4f_dependencies): Adjust accordingly.
5438         * tests/Makefile.am (Wrappers): Generate wrapper scripts.
5439         (wrapper.in): Generate it in the build directory.
5440         (MAINTAINERCLEANFILES): Delete wrapper.in.
5441         (CLEANFILES): Add wrapper.in.
5442         * tests/wrapper.as: Move AS_INIT to very top, preserving copyright in
5443         the output.  Replace each $as_me with a @wrap_program@.
5444         * tests/wrapper.in: Delete it; we always build it.
5446         * bin/Makefile.am (autoconf.in): Generate it in the build directory.
5447         (EXTRA_DIST): Remove autoconf.in.
5448         (CLEANFILES): Add autoconf.in.
5449         (autoconf): Find autoconf.in in the build directory.
5450         * bin/autoconf.in: Delete it; we always build it.
5452 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
5454         * lib/autotest/general.m4 (AT_INIT): Replace a `tr' with a `sed'.  Join
5455         PATH members so as to not prepend an empty element.  Move a comment.
5456         * Makefile.am (SUBDIRS): Build in `tests' last.
5457         * tests/Makefile.am (installcheck-local): Add check-local dependencies.
5459 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
5461         * lib/mdate-sh: Don't use "set - x`$ls_command /`", as zsh mishandles
5462         the spaces inside $ls_command.  Problem reported by Loulou Pouchet in
5463         <http://lists.gnu.org/archive/html/autoconf/2004-12/msg00074.html>.
5464         Don't use "set - x"; plain "set x" is enough, and simplifies debugging.
5466 2004-12-07  Stepan Kasal  <kasal@ucw.cz>
5468         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Fix typo in previous
5469         patch: extra "-l"s.
5471 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
5473         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Check libc before
5474         looking elsewhere for getmntent.  Problem reported by Mark D. Baushke.
5475         * doc/autoconf.texi (Particular Functions): Mention new behavior.
5477 2004-12-03  Stepan Kasal  <kasal@ucw.cz>
5479         * lib/autoconf/general.m4 (AC_DEFINE, AC_DEFINE_UNQUOTED): Factor
5480           out the common code to ...
5481         (_AC_DEFINE_Q): ... a new macro; simplify the condition about the
5482           value of the #define--default to 1, iff the macro was called
5483           with exactly one parameter.
5485 2004-12-02  Paul Eggert  <eggert@cs.ucla.edu>
5487         * lib/autoconf/functions.m4 (AC_FUNC_MEMCMP): Use
5488         "char c = '\200';" rather than "char c = 0x80;" as the
5489         latter doesn't conform to the strict C standard due to
5490         overflow on signed char hosts.
5492         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Prefer -qlanglvl=extc89
5493         to -qlanglvl=ansi.  We don't want to disable extensions.
5495 2004-11-29  Paul Eggert  <eggert@cs.ucla.edu>
5497         * doc/autoconf.texi (Particular Programs): @code{$PATH} -> @env{PATH}.
5498         (Using Autotest, testsuite Scripts, Writing testsuite.at):
5499         Reword slightly to avoid some English-language problems noted
5500         by Ralf Wildenhues in:
5501         http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00027.html
5503 2004-11-29  Stepan Kasal  <kasal@ucw.cz>
5505         * NEWS: Add ^L above each release.
5507 2004-11-28  Paul Eggert  <eggert@cs.ucla.edu>
5509         Fix documentation problems reported by Russ Boylan in
5510         <http://lists.gnu.org/archive/html/bug-autoconf/2004-11/msg00056.html>,
5511         along with some nearby cruft.
5512         * doc/autoconf.texi (Libtool): Libtool can be used without
5513         Automake (not without Autoconf).
5514         (Introduction): Mention lists.gnu.org.
5515         * BUGS: Don't mention bugs.gnu.org.
5516         Remove mention of ancient libtool compatibility problem.
5517         * NEWS: Mention that bugs.gnu.org is kaput.
5518         * README: Likewise.  Mention where mailing list archives can be found.
5520 2004-11-28  Stepan Kasal  <kasal@ucw.cz>
5522         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): A typo in the comment.
5524 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
5526         * doc/autoconf.texi (Pretty Help Strings): Go back to
5527         single-quoting assignments to cache variables.
5529 2004-11-23  Stepan Kasal  <kasal@ucw.cz>
5531         * doc/autoconf.texi (Pretty Help Strings): Fix quoting issues
5532         with the examples; fix the bug in MY_ARG_WITH example reported
5533         by Alexandre Duret-Lutz.
5534         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_ENABLE): Enable
5535         expansion of $1 in the comment emitted to configure.
5537 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
5539         * doc/autoconf.texi (Pretty Help Strings): Fix typo
5540         in my editing of the previous patch.  Problem reported
5541         by Alexandre Duret-Lutz.
5543 2004-11-22  Stepan Kasal  <kasal@ucw.cz>
5545         * doc/autoconf.texi (Autoconf Language): Explain that
5546         ``descriptions'' may not be double quotes.
5547         (Quotation Rule Of Thumb): Likewise.
5548         (Pretty Help Strings): Likewise; remove the wrong comment;
5549         simplify the examples and improve their quoting.
5551 2004-11-13  Stepan Kasal  <kasal@ucw.cz>
5553         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't check
5554         the $1_found variable, don't test whether the file is executable;
5555         Both things are checked ...
5556         (_AC_PATH_PROG_FEATURE_CHECK): ... here; AS_EXECUTABLE_P replaces
5557         the former ``test -f''.
5558         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix a typo.
5560 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
5562         * doc/autoconf.texi (Limitations of Usual Tools): Avoid cp -r;
5563         use cp -R instead.
5565 2004-11-10  Derek R. Price  <derek@ximbiot.com>
5567         * doc/autoconf.texi (Limitations of Usual Tools): Note `cp -r'
5568         limitations.  Reorder paragraphs for clarity.
5570 2004-10-11  Paul Eggert  <eggert@cs.ucla.edu>
5572         * doc/autoconf.texi: Standardize spelling of "Posix" (as opposed
5573         to "POSIX" or "@acronym{POSIX}"), and similarly for "DOS
5574         variants", "Unix", and some related minor wording fixups.
5576         (Shellology, Special Shell Variables): Document that the Zsh
5577         problem with NULLCMD was fixed in zsh 3.1.6-dev-18.  Thanks
5578         to Alexandre Duret-Lutz for this info.
5580 2004-10-10  Alexandre Duret-Lutz  <adl@gnu.org>
5582         * doc/autoconf.texi (One-Shot Macros): New node.
5584 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
5586         * doc/autoconf.texi (Function Portability): Fix misdescription
5587         of putenv.  Problem reported by Michael Wardle.
5589 2004-09-22  Paul Eggert  <eggert@cs.ucla.edu>
5591         * doc/autoconf.texi (auindex): New macro.
5592         (AU_DEFUN): Use it to fix the bug when the index contained AC_AU_DEFUN.
5593         Problem reported by Stepan Kasal.
5595 2004-09-05  Paul Eggert  <eggert@cs.ucla.edu>
5597         Fix problems reported by Andreas Buening in:
5598         http://lists.gnu.org/archive/html/autoconf-patches/2004-04/msg00004.html
5599         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Set SHELL=/bin/sh
5600         in test makefile.
5601         * lib/autotest/general.m4 (AT_INIT): Don't assume /dev/null is
5602         readable; it's not true in OS/2-emx.
5604 2004-09-04  Paul Eggert  <eggert@cs.ucla.edu>
5606         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): If xmkmf returns
5607         "/usr/include", clear ac_x_includes instead of leaving it as "no"
5608         (trivial change).  Problem and patch reported by Andrew Church in:
5609         http://lists.gnu.org/archive/html/bug-autoconf/2004-04/msg00016.html
5611 2004-09-03  Paul Eggert  <eggert@cs.ucla.edu>
5613         * doc/autoconf.texi: Give AC_DEFINE and AC_DEFINE_UNQUOTED
5614         three args in examples.  Problem reported by Frederik Fouvry in:
5615         http://lists.gnu.org/archive/html/bug-autoconf/2004-09/msg00017.html
5616         Also, fix some minor spacing and punctuation bugs.
5618 2004-09-02  Akim Demaille  <akim@epita.fr>
5620         * doc/autoconf.texi (Limitations of Builtins): Swap "cd" and
5621         "case" to restore ordering.
5622         Reported by Stepan Kasal.
5624 2004-08-26  Akim Demaille  <akim@epita.fr>
5626         * doc/autoconf.texi: Minor typos and stylos.
5628 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5630         * configure.ac (AC_INIT): Bump to 2.59c.
5632 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5634         Version 2.59b.
5636         * README: Add advice about m4 1.4.2.
5638         * Makefile.cfg (wget_files): Remove config.guess, config.sub,
5639         texinfo.tex for now (done by hand now).
5640         * Makefile.maint (wget_files, cvs_files):
5641         Remove ansi2knr.c; nobody uses it.
5642         (ansi2knr.c-url_prefix): Remove.
5643         (cvs-update): Fix test for failure.  I don't know why it ever
5644         worked...
5646         * doc/autoconf.texi: Update URLs, some of which went stale.
5647         Use @uref rather than @href.
5649         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Have configure
5650         handle "--" as per POSIX.  Suggested by Paul Pogonyshev.
5652         * config/config.guess, config/config.sub, config/elisp-comp,
5653         config/install-sh, config/mkinstalldirs, config/texinfo.tex,
5654         doc/fdl.texi, doc/standards.texi: Sync with master copy.
5656         * NEWS, TODO, configure.ac, bin/autoscan.in,
5657         bin/autoupdate.in, bin/ifnames.in, doc/autoconf.texi,
5658         doc/install.texi, lib/Autom4te/Configure_ac.pm,
5659         lib/Autom4te/FileUtils.pm, lib/autoconf/general.m4,
5660         lib/autoconf/programs.m4, lib/autoconf/status.m4,
5661         lib/autotest/general.m4, lib/m4sugar/m4sh.m4,
5662         lib/m4sugar/m4sugar.m4, tests/local.at, tests/m4sh.at,
5663         tests/tools.at, tests/torture.at:
5664         Use "file name" rather than "filename" or "path",
5665         to be consistent with the terminology of the GNU coding standards.
5667 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
5669         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C),
5670         AC_C_LONG_DOUBLE): Undo 2004-06-04 change, as it didn't work with
5671         HP-UX 11.23 cc/aCC or Tru64 4.0 cc.  Problem reported by Noah Misch in
5672         <http://lists.gnu.org/archive/html/autoconf/2004-07/msg00004.html>.
5674         More fixes to support spaces in the name of the build directory.
5675         This isn't a complete fix but it's an improvement.
5677         * bin/autoconf.as (autom4te_options): New var.
5678         Use it instead of appending to AUTOM4TE, so that we can allow
5679         spaces in the build directory's absolute name.
5680         * bin/autoheader.in ($autoconf): Allow spaces in file names.
5681         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP, _AT_CHECK,
5682         AT_CHECK_NOESCAPE): Likewise.
5683         * tests/wrapper.as (testdir, AUTOM4TE_CFG, autom4te_perllibdir,
5684         main program): Likewise.
5686 2004-08-18  Paul Eggert  <eggert@cs.ucla.edu>
5688         * lib/autoconf/general.m4 (_AC_INIT_HELP): Quote $ac_popdir uses.
5689         From Ralf Corsepius in:
5690         http://lists.gnu.org/archive/html/autoconf-patches/2004-08/msg00014.html
5692 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
5694         * doc/autoconf.texi (Function Portability): Document isinf and
5695         and isnan.  From a suggestion by Kevin Ryde.
5697         * lib/Autom4te/General.pm (END): Return correct exit status even
5698         if unlink succeeds and sets $?.  Needed with Solaris 8's perl 5.00503.
5700 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
5702         * tests/torture.at (Deep Package): Use configure.in, not configure.ac,
5703         for compatibility with Automake 1.4.  Reported by J C Fitzgerald in
5704         <http://lists.gnu.org/archive/html/bug-autoconf/2003-08/msg00051.html>.
5706 2004-08-04  Alexandre Duret-Lutz  <adl@gnu.org>
5708         * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE): New empty macro.
5709         (AC_CANONICAL_BUILD): Call it to require config.sub and config.guess.
5710         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Likewise for install-sh.
5711         * doc/autoconf.texi (Input): Document AC_REQUIRE_AUX_FILE.
5712         * lib/autom4te.in (Automake-preselections): Preselect
5713         AC_REQUIRE_AUX_FILE.  Automake 1.10 will trace it.
5715 2004-08-02  Alexandre Duret-Lutz  <adl@gnu.org>
5717         * lib/autom4te.in (Automake-preselections): Preselect
5718         AC_CANONICAL_BUILD and AC_CANONICAL_TARGET.  Automake 1.9.1 will
5719         trace them.
5721 2004-07-29  Paul Eggert  <eggert@cs.ucla.edu>
5723         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Set BIN_SH, for
5724         Tru64.
5725         * doc/autoconf.texi (Shellology): Mention BIN_SH.
5726         Document problem with "`""`" in pdksh POSIX mode.
5728 2004-07-27  Paul Eggert  <eggert@cs.ucla.edu>
5730         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Use "set -o posix"
5731         with pdksh, too.  Problem reported by Patrick Welche via
5732         Gary V. Vaughan.
5733         * doc/autoconf.texi (Shellology): Note that set -o posix is
5734         useful for pkdsh, too.
5736 2004-06-24  Paul Eggert  <eggert@cs.ucla.edu>
5738         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Require
5739         _AS_UNSET_PREPARE, so that we can use $as_unset directly.
5740         Don't fail if ENV or BASH_ENV is readonly.
5741         (AS_SHELL_SANITIZE): Don't fail if ENV, MAIL, MAILPATH, LC_ALL,
5742         etc. are read only.  Problem reported by Ludovic Courtes.
5744 2004-06-23  Noah Misch  <noah@cs.caltech.edu>
5746         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
5747         zsh, disable GLOB_SUBST to avoid backslash handling problems.
5748         (trivial change)
5750 2004-06-04  Paul Eggert  <eggert@cs.ucla.edu>
5752         * doc/autoconf.texi (File System Conventions): Warn about
5753         names like "aux".  Problem reported by Eric Blake.
5755         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY (C)): Use division
5756         by zero instead of array size, so that we can use any arithmetic
5757         constant expression (instead of requiring an integer constant
5758         expression).  This allows us to test expressions like DBL_MAX <
5759         LDBL_MAX, which didn't conform to the C standard using the old
5760         method.
5761         (AC_C_LONG_DOUBLE): Put back in the tests for LDBL_MAX and LDBL_EPSILON,
5762         now that we can do floating-point tests at compile time.
5764 2004-06-02  Paul Eggert  <eggert@cs.ucla.edu>
5766         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Don't check LDBL_MAX
5767         and LDBL_EPSILON, as the resulting expression isn't an
5768         integer constant expression and violates the C standard.
5769         Problem reported by Nelson H. F. Beebe.  Also, check
5770         for "L" suffix, and check that long double doesn't have
5771         worse range or precision than double, that mixed-mode
5772         arithmetic doesn't generate a diagnostic, that double
5773         constants fit in long double.
5775 2004-06-03  Kevin Ryde  <user42@zip.com.au>
5777         * doc/autoconf.texi (Function Portability): Add notes on free(NULL),
5778         malloc(0) and realloc(NULL,size).
5780         * doc/autoconf.texi (Shell Substitutions): Spelling error reported by
5781         Bob Proulx.
5783 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
5785         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Detect _Bool bug
5786         in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].  Problem reported
5787         by Jim Meyering.
5789 2004-05-26  Paul Eggert  <eggert@cs.ucla.edu>
5791         * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
5792         can be rewritten using if-then-else.  Suggested by Bruno Haible.
5794 2004-05-25  Paul Eggert  <eggert@cs.ucla.edu>
5796         * doc/autoconf.texi (testsuite Scripts): Fix typo.
5797         Problem reported by Stepan Kasal.
5799 2004-05-24  Paul Eggert  <eggert@cs.ucla.edu>
5801         * tests/Makefile.am (autoconfdir): Fix to match comment (trivial
5802         change).  Patch reported by Ralf Wildenhues in
5803         <http://mail.gnu.org/archive/html/bug-autoconf/2004-05/msg00092.html>.
5805         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): Don't assume that a
5806         function F exists if the compiler and linker let you compile an
5807         expression like (F != 0).  Recent versions of GCC optimize away
5808         the reference to F in that case, since every function address must
5809         be nonzero, so the link succeeds even if F does not exist.
5810         Problem reported by Manu in
5811         <http://mail.gnu.org/archive/html/bug-gnu-utils/2004-05/msg00060.html>.
5813         * doc/autoconf.texi (Systemology): Standardize on the spelling of
5814         "Unix".  Many uses changed.
5815         (Limitations of Builtins): Explain better why the ! command isn't
5816         portable.
5818 2004-05-22  Alexandre Duret-Lutz  <adl@gnu.org>
5820         * lib/autom4te.in (Automake-preselections): Preselect
5821         LT_SUPPORTED_TAG in lieu of AC_LIBTOOL_TAGS.
5823 2004-05-19  Kevin Ryde  <user42@zip.com.au>
5825         * doc/autoconf.texi (Function Portability): Add strerror_r, cross
5826         referencing AC_FUNC_STRERROR_R.
5828         * doc/autoconf.texi (Particular Functions): In AC_FUNC_CLOSEDIR_VOID,
5829         note pessimistic assumption when cross compiling.
5831 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
5833         * doc/autoconf.texi (Limitations of Make): Note that BSD make
5834         (until 2004) invoked subcommands with sh -e, contra POSIX.
5835         Reported by Kevin Ryde.
5837 2004-05-10  Eric Sunshine  <sunshine@sunshineco.com>
5839         * programs.m4 (_AC_PROG_GREP): Fixed bug where PATH argument handed to
5840         _AC_PATH_PROG_FEATURE_CHECK contained leading whitespace (i.e.
5841         "        $PATH:/usr/xpg4/bin"). This resulted in bogus tests, such as
5842         `test -f "        /usr/bin/grep"', which _always_ failed.
5843         (AC_PROG_SED): Ditto bogus PATH fix.
5844         * autoconf.texi (AC_PROG_GREP): Properly document that this macro
5845         requires that grep correctly supports _multiple_ `-e' options, rather
5846         than stating only that grep should accept `-e'.
5848 2004-05-03  Paul Eggert  <eggert@cs.ucla.edu>
5850         Port to C99, which requires that 'exit' be declared.
5852         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Use AC_INCLUDES_DEFAULT
5853         to ensure that stdlib.h is included.
5854         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_SETPGRP,
5855         AC_FUNC_STRTOD, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_FORK, _AC_FUNC_FORK,
5856         _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
5857         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
5858         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
5859         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Include <stdlib.h>
5860         when using 'exit' in a test; C99 requires that 'exit' be declared.
5862 2004-05-02  Paul Eggert  <eggert@cs.ucla.edu>
5864         * doc/autoconf.texi (Particular Programs): AC_PROG_GREP
5865         now prefers 'grep' implementations that accept -e.
5866         (Limitations of Usual Tools): Describe problems of traditional
5867         egrep and fgrep with long input lines, and of traditional grep
5868         with -e.
5869         * lib/autoconf/programs.m4 (AC_PROG_GREP): Check for -e, too.
5870         (_AC_PROG_GREP): Assume 3rd arg is properly quoted for the shell.
5871         All callers changed.  Append /usr/xpg4/bin to the PATH, for
5872         Solaris.
5873         (_AC_FEATURE_CHECK_LENGTH): Discard stderr, so we don't bother
5874         the user with complaints about multiple -e options.
5875         * tests/local.at (AC_STATE_SAVE): Use $GREP, not grep.
5876         Define it with AC_PROG_GREP.
5877         * configure.ac (AC_PROG_GREP): Add.
5878         * lib/freeze.mk (GREP): New macro.
5880 2004-05-02  Eric Sunshine  <sunshine@sunshineco.com>
5882         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Consult $SHELL as
5883         a possible candidate only after all others fail, rather than
5884         consulting it first.  This improves backward compatibility by
5885         better reflecting the way shell selection occurred in previous
5886         versions of Autoconf, and should help to avoid triggering latent
5887         problems in other packages, such as the one in Automake where zsh
5888         is not handled robustly:
5889         http://mail.gnu.org/archive/html/automake/2004-04/msg00095.html
5890         Although it is not Autoconf's responsibility to work around
5891         problems in Automake, it nevertheless makes sense to avoid
5892         introducing unnecessary incompatibilites.
5894 2004-04-22  Albert Chin-A-Young  <china@thewrittenword.com>,
5895             Gary V. Vaughan  <gary@gnu.org>
5897         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't guess
5898         how deeply nested we are when a suitable tool is found, set the
5899         ac_path_TOOL_found flag.
5900         (_AC_PATH_PROG_FEATURE_CHECK): Encapsulate knowledge of how deeply
5901         nested we are in this macro.  Break out of all 3 nested loops if
5902         ac_path_TOOL_found is set.
5904 2004-04-21  Gary V. Vaughan  <gary@gnu.org>
5906         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Break out
5907         of the _AS_PATH_WALK loop too if GNU flavor is found.
5909 2004-04-21  Alexandre Duret-Lutz  <adl@gnu.org>
5911         * doc/autoconf.texi (Limitations of Make): Update documentation
5912         for `$<'.  New entry `Long lines', based on a report from Simon
5913         Josefsson.  Augment the documentation for SHELL = @SHELL@ with a
5914         paragraph about DJGPP, based on a mail from Richard Dawe.
5916 2004-04-20  Paul Eggert  <eggert@twinsun.com>
5918         * tests/c.at (C keywords): Don't assume that GCC supports
5919         "restrict" and "inline", as sufficiently-old GCC versions do not
5920         (also, GCC configured to be in pedantic C89 mode does not).
5921         Problem reported by Sumit Pandya in:
5922         http://mail.gnu.org/archive/html/autoconf/2004-04/msg00092.html
5924         * lib/autoconf/c.m4 (_AC_PROG_CC_G, _AC_PROG_CXX_G): Don't
5925         consider -g to work if it generates warnings when plain compiles
5926         don't.  Problem reported by Braden McDaniel in:
5927         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00014.html
5929         * doc/autoconf.texi (Slashes): New section, to document a problem
5930         reported by Jim Meyering in:
5931         http://mail.gnu.org/archive/html/bug-coreutils/2004-02/msg00060.html
5933         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Remove potential
5934         linker output files before linking, to work around IRIX 6 linker bug.
5935         Problem reported by Rainer Orth in:
5936         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00007.html
5938 2004-04-20  Gary V. Vaughan  <gary@gnu.org>
5940         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Make the
5941         best tool so far counter rely on the tool path variable name to
5942         avoid checks for one tool being affected by the results of running
5943         the length check on a previous tool.
5945         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Take an additional
5946         match expression argument, as different greps have different
5947         regular expression flavours.
5948         (AC_PROG_FGREP): Pass 'FGREP'. fgrep treats all match chars as
5949         literals.
5950         (AC_PROG_EGREP): Pass 'EGREP$'.
5951         (AC_PROG_GREP): Pass 'GREP$'.
5953 2004-04-20  Albert Chin-A-Young  <china@thewrittenword.com>
5955         * lib/autoconf/programs.m4 (AC_PROG_GREP): Cache variable
5956         is `ac_cv_path_GREP', not `oc_cv_path_GREP'.
5958 2004-03-29  Paul Eggert  <eggert@twinsun.com>
5960         * doc/autoconf.texi (Particular Headers, Particular Types, Generic
5961         Types, Specific Compiler Characteristics, System Services,
5962         Obsolete Macros): Use 'long int', 'short int', 'unsigned int'
5963         etc. consistently instead of 'long', 'short', 'unsigned' etc.
5964         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN): Likewise.
5965         * lib/autoconf/functions.m4 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES):
5966         Likewise.
5967         * lib/autoconf/headers.m4 (AC_HEADER_SYS_WAIT): Likewise.
5968         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS, AC_TYPE_SIZE_T,
5969         AC_TYPE_OFF_T): Likewise.
5970         * tests/semantics.at (AC_CHECK_TYPES: backward compatibility):
5971         Likewise.
5973         * tests/foreign.at (Libtool): Create an empty aclocal.m4, to
5974         pacify libtool 1.5.2.  Fix quoting problems in sed command.
5976 2004-03-28  Paul Eggert  <eggert@twinsun.com>
5978         * doc/autoconf.texi (Particular Structures): AC_STRUCT_TIMEZONE
5979         now defines HAVE_DECL_TZNAME if it is declared, when
5980         HAVE_STRUCT_TM_TM_ZONE is not defined.
5981         * lib/autoconf/types.m4 (AC_STRUCT_TIMEZONE): Implement this.
5982         Do not assume atoi.  Rely on HAVE_DECL_TZNAME when testing
5983         for HAVE_TZNAME.
5985 2004-03-28  Steven G. Johnson  <stevenj@fftw.org>
5987         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Corrected
5988         superfluous backslashing of quotes (") in sed expressions;
5989         thanks to Paul Eggert.
5991 2004-03-26  Steven G. Johnson  <stevenj@alum.mit.edu>
5993         * lib/autoconf/fortran.m4 (_AC_PROG_FC): new name of Intel
5994         Fortran compiler is ifort, also added pghpf; thanks to Nelson
5995         H. F. Beebe for the bug report.
5997 2004-03-26  Steven G. Johnson  <stevenj@fftw.org>
5999         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): fix for
6000         quoted -cmdline argument in Portland Group compiler (bug
6001         reported by Jeffrey J. Barteet).
6003 2004-03-25  Kevin Ryde  <user42@zip.com.au>
6005         * doc/autoconf.texi (Specifying Names): Move cross_compiling ovindex to
6006         (Run Time): ... here, where it's now mentioned.
6008 2004-03-19  Alexandre Duret-Lutz  <adl@gnu.org>
6010         * doc/autoconf.texi (autom4te Invocation): Language Autoconf
6011         inherits from language Autoconf-without-aclocal-m4.
6012         (Customizing autom4te): Adjust example; the cache must now be
6013         disabled for language Autoconf-without-aclocal-m4.
6015 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
6016             Nathanael Nerode  <neroden@twcny.rr.com>
6018         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL,
6019         AC_CHECK_TOOLS): Warn if a cross-tool is found without
6020         a prefix.
6021         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
6022         AC_CHECK_TARGET_TOOLS): New macros.
6023         * doc/autoconf.texi (Generic Programs): Document
6024         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
6025         AC_CHECK_TARGET_TOOLS, and warn for future changes
6026         in the behavior of AC_PATH_TOOL, AC_CHECK_TOOL and
6027         AC_CHECK_TOOLS.
6028         (Specifying Names): Document the reason for these future
6029         behavioral changes.
6030         * tests/mktests.sh: Do not generate tests for the
6031         new macros.
6032         * NEWS: Document these changes.
6034         * doc/autoconf.texi: Avoid macros with unbraced arguments,
6035         they make TeX hang up.
6037 2004-03-15  Paul Eggert  <eggert@bogus.example.com>
6039         * NEWS: New macro AC_CHECK_ALIGNOF.
6040         * doc/autoconf.texi (Generic Compiler Characteristics): Document it.
6041         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use long int rather than
6042         int; avoid "a `$1'" since this isn't grammatical if $1 begins with a
6043         vowel.
6044         (AC_CHECK_ALIGNOF): New macro.
6045         * tests/mktests.sh (ac_exclude_list): Exclude AC_CHECK_ALIGNOF.
6046         * tests/semantics.at (AC_CHECK_ALIGNOF): Add tests similar to
6047         those for sizeof.
6049 2004-03-03  Paul Eggert  <eggert@twinsun.com>
6051         * bin/Makefile.am (edit): Don't use $< in a context where
6052         POSIX doesn't require support for it.  Use $@.in instead.
6053         Problem reported by Anthony N. Frasso in
6054         <http://mail.gnu.org/archive/html/autoconf/2004-03/msg00008.html>.
6055         * bin/autoscan.in, bin/autoupdate.in: Add @configure_input@ comment.
6057 2004-02-23  Gary V. Vaughan  <gary@gnu.org>
6059         * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT
6060         from the next generation of Libtool.
6061         * lib/autom4te.in (Autoreconf-preselections): Ditto.
6063 2004-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
6065         * doc/autoconf.texi (Limitations of Usual Tools) <mkdir>: `mkdir -p'
6066         is not always thread-safe.  Report from Nathanael Nerode.
6068 2004-02-18  Paul Eggert  <eggert@twinsun.com>
6070         Fix a dependencies problem, stemming from a Autoconf 2.59 build
6071         problem on QNX reported by Stephen Rasku in
6072         <http://mail.gnu.org/archive/html/bug-autoconf/2004-02/msg00066.html>.
6074         * bin/Makefile.am ($(srcdir)/autoconf.in): Depend on
6075         $(m4sh_m4f_dependencies); this removes a FIXME.
6076         * tests/Makefile.am ($(srcdir)/wrapper.in): Likewise.
6077         (MAINTAINERCLEANFILES): Split into pieces,
6078         one per related section.  Add $(srcdir)/wrapper.in.
6080 2004-02-09  Paul Eggert  <eggert@twinsun.com>
6082         * doc/autoconf.texi (Setting Output Variables): Emphasize that
6083         AC_SUBST provides no portable way to escape literal newlines.
6085         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore all
6086         flags of the form -lcrt*.o, not just -lcrt[01].o and -lcrtbegin.o.
6087         Darwin uses -lcrt2.o and there's little point to cataloging all
6088         the system variants.  Partial fix reported by Andreas Waechter in:
6089         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00006.html
6090         for bug reported by Nelson H. F. Beebe in:
6091         http://mail.gnu.org/archive/html/bug-autoconf/2003-12/msg00090.html
6093 2004-02-04  Paolo Bonzini  <bonzini@gnu.org>
6095         * doc/autoconf.texi (AU_DEFUN): Fix English,
6096         suggested by Paul Eggert.
6097         * lib/autoconf/autoupdate.m4: Correct reference to
6098         acobsolete.m4, suggested by Alexandre Duret-Lutz.
6100 2004-02-02  Paolo Bonzini  <bonzini@gnu.org>
6102         * bin/autoupdate.in: Define __file__ so that warnings
6103         refer to the correct file.
6104         * doc/autoconf.texi (AU_DEFUN): Describe more correctly
6105         the behavior of the third argument.
6106         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Describe more
6107         correctly the behavior of the third argument.  Document
6108         what the three macros that AU_DEFUN defines do.  Fix
6109         warning message when the third argument includes $0
6110         (reported by Alexandre Duret-Lutz).
6112 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
6113             Eric Sunshine  <sunshine@sunshineco.com>
6114             Paul Eggert  <eggert@twinsun.com>
6116         * lib/m4sugar/m4sh.m4 (M4SH-SANITIZE): New diversion.
6117         (AS_INIT): Output shell initialization there. Removed optional
6118         parameter. Expand _AS_SHELL_FN_SPY.
6119         (AS_INIT_WITH_SHELL_FN): Removed.
6120         (_AS_SHELL_FN_SPY): New macro.
6121         (AS_DETECT_REQUIRED, AS_DETECT_SUGGESTED): New
6122         macros.
6123         (AS_SHELL_SANITIZE): Remove loop to find better shell
6124         and documentation for the parameter.
6125         (_AS_DETECT_BETTER_SHELL): Move it here.
6126         (_AS_SHELL_FN_WORK): Remove shell invocation, reformat.
6127         (_AS_RUN): Move it here, support testing with eval.
6128         (AS_REQUIRE_SHELL_FN): Require shell functions when
6129         it is used.
6130         (_AS_LINENO_WORKS): Put around braces, we do not
6131         trigger the bash bug anymore.
6132         * lib/autotest/general.m4: Document M4SH-SANITIZE, do not
6133         use AS_INIT_WITH_SHELL_FN.
6134         * bin/autoconf.in, tests/wrapper.in: Regenerated.
6136 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
6138         * bin/autoupdate.in: Trace AU_DEFINE instead of AU_DEFUN.
6139         * doc/autoconf.texi: Don't say that the third parameter
6140         is broken.
6141         * lib/autoconf/autoupdate.m4 (AU_DEFINE): New dummy macro.
6142         (AU_DEFUN): Honor the third parameter, create autoupdate
6143         macros with AU_DEFINE.
6144         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H,
6145         AC_DIR_HEADER): Use AU_DEFUN's third parameter.
6146         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
6147         * lib/autoconf/programs.m4 (AC_RSH): Likewise.
6148         * lib/autoconf/specific.m4 (AC_HAVE_POUNDBANG,
6149         AC_ARG_ARRAY, AC_CYGWIN, AC_EMXOS2, AC_MINGW32,
6150         AC_XENIX_DIR): Likewise.
6151         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS,
6152         AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_RDEV): Likewise.
6153         * lib/autoconf/status.m4: Remove FIXME.
6154         * tests/local.at (AT_CHECK_AU_MACRO): Ignore stderr, check
6155         that the macro is not present anymore in the updated
6156         configure.ac.
6157         * tests/tools.at (autoupdate AC_LINK_FILES): Ignore stderr
6158         of autoupdate.
6160 2004-01-28  Paul Eggert  <eggert@twinsun.com>
6162         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add 2004 to
6163         copyright years.
6164         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Add 1992 thorugh
6165         2003 (except 1997) to the list of copyright years.  This undoes
6166         the 2003-05-22 change, which removed the older years from the list.
6167         * lib/autoconf/status.m4 (AC_OUTPUT): Update copyright date to 2004.
6169 2004-01-27  Gary V. Vaughan  <gary@gnu.org>
6170             Albert Chin-A-Young  <china@thewrittenword.com>
6172         * lib/autoconf/programs.m4 (AC_PROG_GREP): New macro to test for a
6173         grep or ggrep program in PATH that accepts as long lines as
6174         possible.
6175         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Factor out the core of
6176         AC_PROG_GREP.
6177         (AC_PROG_EGREP, AC_PROG_FGREP): Use it to find best available
6178         egrep and fgrep respectively if $GREP -E/-F don't work.
6179         (_AC_PATH_PROG_FEATURE_CHECK): Factor out the common core of
6180         _AC_PROG_GREP, and AC_PROG_SED.
6181         (_AC_FEATURE_CHECK_LENGTH): New helper macro for finding the
6182         longest input length accepted by a command.
6183         (AC_PROG_SED): Use it.
6184         * doc/autoconf.texi (Particular Programs): Document the changes.
6185         * NEWS: Updated.
6187 2004-01-27  Paul Eggert  <eggert@twinsun.com>
6189         * bin/autoconf.as ($version): Update copyright from 2003 to 2004.
6190         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
6191         bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in: Likewise.
6192         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
6194         * Makefile.in, aclocal.m4, configure, bin/Makefile.in,
6195         bin/autoconf.in, config/Makefile.in, config/config.guess,
6196         config/config.sub, config/install-sh, config/mdate-sh,
6197         config/mkinstalldirs, config/texinfo.tex, doc/Makefile.in,
6198         lib/Makefile.in, lib/Autom4te/Makefile.in,
6199         lib/autoconf/Makefile.in, lib/autoscan/Makefile.in,
6200         lib/autotest/Makefile.in, lib/emacs/Makefile.in,
6201         lib/m4sugar/Makefile.in, man/Makefile.in, man/autoconf.1,
6202         man/autoheader.1, man/autom4te.1, man/autoreconf.1,
6203         man/autoscan.1, man/autoupdate.1, man/config.guess.1,
6204         man/config.sub.1, man/ifnames.1, tests/Makefile.in,
6205         tests/acc.at, tests/acfortran.at, tests/acfunctions.at,
6206         tests/acgeneral.at, tests/acheaders.at, tests/aclang.at,
6207         tests/aclibs.at, tests/acspecific.at, tests/acstatus.at,
6208         tests/actypes.at: Regenerate and/or sync with original
6209         sources.
6211 2004-01-26  Paul Eggert  <eggert@twinsun.com>
6213         * doc/autoconf.texi (Default Includes): Include <stdint.h> even if
6214         HAVE_INTTYPES_H is defined.  This is needed on Tru64 5.1b with
6215         Compac C V6.5-207 (dtk), which defines uintmax_t in <stdint.h> but
6216         not <inttypes.h>.  Problem reported by Tim Mooney in
6217         <http://mail.gnu.org/archive/html/bug-coreutils/2004-01/msg00147.html>.
6218         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
6219         Likewise.
6221         * lib/autoconf/programs.m4 (AC_PROG_SED): Use diff, not sed;
6222         otherwise "make check" fails because it forbids cmp (I guess
6223         because cmp treats files as binary on DOS-like systems).
6225         * tests/mktests.sh: Update copyright date to 2004, since some tests
6226         have changed in 2004.
6228 2004-01-23  Gary V. Vaughan  <gary@gnu.org>
6230         * lib/autoconf/programs.m4 (AC_PROG_SED):  New macro to test for a
6231         non-truncating sed or gsed program in PATH.
6232         * tests/acprograms.at: Add it.
6233         * doc/autoconf.texi (Particular Programs): Document it.
6234         * NEWS: Updated.
6236 2004-01-15  Paul Eggert  <eggert@twinsun.com>
6238         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Try -std, not -std1, since
6239         -std1 disables some useful extensions on Tru64.  Problem reported
6240         by N. Lichtmaier in
6241         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00100.html>.
6243 2004-01-14  Paul Eggert  <eggert@twinsun.com>
6245         * doc/autoconf.texi (Programming in M4sh): Document that
6246         AS_MKDIR_P succeeds if the destination is a symbolic link
6247         to an existing directory.
6248         (Limitations of Usual Tools): Note that mkdir -p might not
6249         succeed on symlinks to directories.
6251 2004-01-13  Paul Hilfinger  <hilfinger@CS.Berkeley.EDU>
6253         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Grammar fix in comment.
6254         * bin/autoheader.in: Grammar fix in message.
6255         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P):
6256         Test for dir before calling mkdir -p.  (trivial changes)
6258 2004-01-13  Eric Blake  <ebb9@byu.net>
6260         * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
6261         AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/.  (trivial change)
6263 2004-01-10  Jim Meyering  <jim@meyering.net>
6265         * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
6267 2004-01-09  Paul Eggert  <eggert@twinsun.com>
6269         * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
6270         with `autoconf -Wall,error'.  Bug reported by Eric Blake in:
6271         http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
6272         (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
6273         AC_COMPILE_IFELSE, since we now assume our caller invokes
6274         AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
6275         (_AC_COMPUTE_INT_RUN): Likewise, for _AC_RUN_IFELSE instead
6276         of AC_RUN_IFELSE; this avoids the warning mentioned above.
6277         (_AC_COMPUTE_INT): Invoke AC_LANG_COMPILER_REQUIRE.
6279 2004-01-07  Paul Eggert  <eggert@twinsun.com>
6281         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Avoid \$ inside
6282         `"'...'"`, as it's confusing (and I suspect it may not work on
6283         some platforms).  The code was incorrect anyway, as it assumed
6284         that \$ evaluated to itself in that context.  Reported by
6285         Alexandre Duret-Lutz.
6287 2004-01-07  Alexandre Duret-Lutz  <adl@gnu.org>
6289         * lib/autom4te.in (Automake-preselections): Preselect AC_LIBTOOL_TAGS
6290         and _LT_AC_TAGCONFIG.
6292 2004-01-06  Paul Eggert  <eggert@twinsun.com>
6294         * doc/autoconf.texi (One Macro Call): Fix an incorrect
6295         example, and add more examples.  Reported by Eric Sunshine.
6297 2004-01-05  Paul Eggert  <eggert@twinsun.com>
6299         * doc/autoconf.texi (Limitations of Usual Tools):
6300         Remove warning against "rm -fr" introduced yesterday; it
6301         was a false alarm.
6303         * bin/Makefile.am (autoconf, autoheader, autom4te, autoreconf,
6304         autoscan, autoupdate, ifnames): Don't use chmod -w.
6305         * lib/Makefile.am (autom4te.cfg): Likewise.
6306         * doc/autoconf.texi (Limitations of Usual Tools): Warn against
6307         "chmod -w".
6309 2004-01-04  Paul Eggert  <eggert@twinsun.com>
6310             Paolo Bonzini  <bonzini@gnu.org>
6312         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Speed up sed scripts
6313         by doing lineno substitution only on lines containing "$LINENO".
6315 2004-01-04  Paul Eggert  <eggert@twinsun.com>
6317         * lib/autoconf/general.m4 (AC_ARG_PROGRAM):
6318         Use "rm -f" to remove conftest.sed, not plain "rm".
6319         Bug reported by David Relson in
6320         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00011.html>.
6322         * Makefile.am (autom4te-update):
6323         Replace "rm -rf" and "rm -fr" with "rm -f -r", as POSIX requires.
6324         * Makefile.maint (my-distcheck, do-po-update): Likewise.
6325         * doc/autoconf.texi (Guidelines): Likewise.
6326         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Likewise.
6327         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
6328         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
6329         * lib/autotest/general.m4 (AT_INIT): Likewise.
6330         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
6331         * tests/Makefile.am (clean-local): Likewise.
6332         * tests/tortue.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS,
6333         srcdir): Likewise.
6334         * doc/autoconf.texi (Limitations of Usual Tools):
6335         Warn against "rm -fr".
6337 2004-01-03  Paul Eggert  <eggert@twinsun.com>
6339         * doc/autoconf.texi (Limitations of Usual Tools): Mention that cc
6340         -c -o might not work.  From a suggestion by Kevin Ryde.
6341         (C Compiler, Generating Sources, Limitations
6342         of Usual Tools, Limitations of Make, Making testsuite Scripts):
6343         Don't put '-o' after non-options, as POSIX doesn't allow this.
6344         Mention that cc's name might be gcc or c89 or whatever.
6346 2004-01-04  Kevin Ryde  <user42@zip.com.au>
6348         * doc/autoconf.texi: Add various further index entries.
6350 2003-12-29  Paul Eggert  <eggert@twinsun.com>
6352         * bin/autoreconf.in (autoreconf_current_directory):
6353         Fix typo: mkdir without umask arg.
6355 2003-12-27  Alexandre Duret-Lutz  <adl@gnu.org>
6357         * doc/autoconf.texi (Limitations of Make) <Automatic rule rewriting>:
6358         Documents OSF1/Tru64 make behavior.  Replace `VPATH = ../src' by
6359         `VPATH = ../pkg/src' in examples to make the OSF1/Tru64 make
6360         explanation clearer.
6362 2003-12-24  Andreas Schwab  <schwab@suse.de>
6364         * doc/autoconf.texi (Default Includes): Fix misspelling of
6365         AC_INCLUDES_DEFAULT.
6367 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
6369         * configure.ac: Test if sh -n works.
6370         * configure: Regenerate.
6371         * tests/atlocal.in: Store the result here.
6372         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Extracted from
6373         tools.at, looking in atlocal's ac_cv_sh_n_works instead
6374         of explicitly testing.
6375         (AT_CHECK_PERL_SYNTAX): Moved from tools.at.
6376         (AT_CHECK_AUTOCONF): Test for the configure script syntax.
6377         * tests/tools.at (Syntax of the shell scripts): Simplify
6378         using AT_CHECK_SHELL_SYNTAX.
6379         (Syntax of the Perl scripts): Remove definition of
6380         AT_CHECK_PERL_SYNTAX.
6382 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
6384         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Redirect
6385         stderr to /dev/null.
6386         * bin/autoconf.in: Regenerate.
6387         * bin/wrapper.in: Regenerate.
6389 2003-11-26  Paolo Bonzini  <bonzini@gnu.org>
6391         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE):
6392         Extracted from AS_SHELL_SANITIZE.
6393         (_AS_SHELL_FN_WORK, AS_INIT_WITH_SHELL_FN): New
6394         macros.
6395         (AS_SHELL_SANITIZE): Move reinvocation code from
6396         _AS_LINENO_WORKS, use it to find out if shell
6397         functions work.
6398         (_AS_LINENO_WORKS): Don't find another shell if $LINENO
6399         does not work.
6400         (AS_INIT): Pass parameter down to AS_SHELL_SANITIZE.
6401         (AS_REQUIRE_SHELL_FN): Test that AS_INIT_WITH_SHELL_FN
6402         was called.
6403         * lib/autotest/general.m4: Use AS_INIT_WITH_SHELL_FN.
6404         * bin/autoconf.in: Regenerate.
6405         * tests/wrapper.in: Regenerate.
6406         * tests/tools.at: Test the syntax of tests/autoconf
6407         and tests/testsuite.
6409 2003-11-24  Akim Demaille  <akim@epita.fr>
6411         * config/announce-gen (&print_locations, &print_signatures)
6412         (&sizes): New.
6413         Use them.
6414         No longer rely on Gnus to inline the list of signatures: compute
6415         them on the fly.
6417 2003-11-24  Akim Demaille  <akim@epita.fr>
6419         * doc/autoconf.texi (Particular Programs): AC_PROG_LEX can
6420         override some files.
6421         (Input): AC_CONFIG_AUX_DIR(aux) is a bad idea on DOS.
6422         From Debian Autoconf 2.58.
6424 2003-11-24  Akim Demaille  <akim@epita.fr>
6426         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote $ac_popdir
6427         uses.
6428         From Debian Autoconf 2.58.
6430 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
6432         * TODO: Remove already done things.  Update the part about finding
6433         tools for the target.
6435 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
6437         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H, AC_DIR_HEADER):
6438         Make wording more consistent.
6439         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
6440         Explain the transition better.
6441         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS): Explain
6442         the transition better.
6444 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
6446         * doc/autoconf.texi (Obsoleting Macros): Don't document the third
6447         parameter of AU_DEFUN.
6448         * lib/autoconf/autoupdate.m4 (AU_DEFINE): Remove.
6449         (AU_DEFUN): Remove the third parameter, it was not used.
6450         Use AC_DEFUN directly, not AU_DEFINE.
6451         * lib/autoconf/status.m4 (AC_LINK_FILES): Move the message into
6452         the expanded body, consistently with other macros such as AC_USG.
6454 2003-11-17  Paul Eggert  <eggert@twinsun.com>
6456         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put at least 14 bytes
6457         into the initial confdefs.h, to work around a bug in NextStep 3.3
6458         patch 3 reported by Eric Sunshine.
6460 2003-11-15  Kevin Ryde  <user42@zip.com.au>
6462         * doc/autoconf.texi (Using System Type): Revise, showing $host rather
6463         than $target since the latter is not usual, add guidelines on when to
6464         use or not use the system type.
6466 2003-11-12  Derek Price  <derek@ximbiot.com>
6468         * doc/autoconf.texi (Limitations of Usual Tools): Fix what looks like a
6469         typo misrepaired by an auto-spellcheck.
6471 2003-11-12  Akim Demaille  <akim@epita.fr>
6473         * bin/autoreconf.in (&parse_args): Don't call automake with
6474         --force-missing unless it actually supports it.
6475         From Debian #219336.
6477 2003-11-12  Akim Demaille  <akim@epita.fr>
6479         * configure.ac: Bump to 2.59a.
6480         Require 2.59.
6482 2003-11-06  Akim Demaille  <akim@epita.fr>
6484         Version 2.59.
6486 2003-11-05  Alexandre Duret-Lutz  <adl@gnu.org>
6488         * lib/autoconf/status.m4 (_AC_SRCPATHS): Fix use of AS_SET_CATFILE
6489         so that ac_abs_builddir, ac_abs_top_builddir, ac_abs_srcdir,
6490         and ac_abs_top_srcdir are absolute paths.
6491         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Remove misleading comment.
6493 2003-11-05  Akim Demaille  <akim@epita.fr>
6495         * configure.ac: Bump to 2.58a.
6497 2003-11-05  Kevin Ryde  <user42@zip.com.au>
6499         * doc/autoconf.texi (Using Autotest): Avoid @strong{Note: ...}, since
6500         it provokes a warning from makeinfo about looking like a cross
6501         reference in info output.
6503         * doc/autoconf.texi (Function Portability): Add notes on signal
6504         handler return type, as per AC_TYPE_SIGNAL.
6506 2003-11-04  Akim Demaille  <akim@epita.fr>
6508         Version 2.58.
6509         * doc/standards.texi: Update from master.
6511         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FREEFORM.
6513 2003-11-04  Akim Demaille  <akim@epita.fr>
6515         AC_CONFIG_FILE([d1/foo:d2/foo]) triggers error messages when
6516         computing the absolute path to d1 in the source hierarchy: it may
6517         not exist at all.  So don't cd into it.
6518         From Alexandre Duret-Lutz.
6519         http://mail.gnu.org/archive/html/bug-autoconf/2003-10/msg00205.html
6521         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): New.
6522         From Paul Eggert, but named after Perl's IO::Spec->catfile.
6523         * doc/autoconf.texi (Programming in M4sh): Document.
6524         * lib/autoconf/status.m4 (_AC_SRCPATHS): Use it.
6526 2003-11-03  Pavel Roskin  <proski@gnu.org>
6528         * doc/autoconf.texi (Generic Structure Checks): Describe
6529         action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
6531 2003-10-31  Akim Demaille  <akim@epita.fr>
6533         * tests/fortran.at (GNU Fortran 77): Don't run FC macros.
6534         (GNU Fortran): New.
6535         * doc/autoconf.texi (Language Choice): Document.
6536         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Assert
6537         the current language is Fortran.
6539 2003-10-31  Akim Demaille  <akim@epita.fr>
6541         * bin/autom4te.in (&freeze): Use a less likely warning separator
6542         than `\n\n', so that `\n\n\n' is valid in warnings.
6543         Reported by Steve Huston.
6545 2003-10-28  Akim Demaille  <akim@epita.fr>
6547         * Makefile.cfg (local_updates, executable-update): Tweak to be
6548         robust to parallel makes.
6549         Suggested by Alexandre Duret-Lutz.
6551 2003-10-27  Akim Demaille  <akim@epita.fr>
6553         * Makefile.cfg (executable-update): New.
6554         (local_updates): Call it.
6556 2003-10-27  Akim Demaille  <akim@epita.fr>
6558         * lib/autoconf/general.m4 (_AC_RUN_IFELSE, _AC_INIT_PREPARE):
6559         Don't remove core.* as it may remove valid user files.
6560         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED)
6561         (AC_FUNC_UTIME_NULL): Likewise.
6563 2003-10-23  Akim Demaille  <akim@epita.fr>
6565         Version 2.57g.
6566         * config/config.guess, config/config.sub: Upgrade from masters.
6568 2003-10-23  Akim Demaille  <akim@epita.fr>
6570         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Functions using
6571         AC_COMPILE_IFELSE that use break skip the clean up.  So do it by
6572         hand...
6574 2003-10-23  Akim Demaille  <akim@epita.fr>
6576         * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_COMPILE_IFELSE):
6577         Don't forget to remove conftest.err.
6579 2003-10-23  Akim Demaille  <akim@epita.fr>
6581         * lib/autoconf/general.m4 (_AC_LIBOBJ): Don't insert twice the
6582         same object file in $LIBOBJS.
6583         Reported by Alexandre Duret-Lutz & Derek Robert Price.
6584         * doc/autoconf.texi (Generic Functions): Adjust.
6586 2003-10-20  Paul Eggert  <eggert@twinsun.com>
6588         * lib/m4sugar/m4sh.m4 (_AS_TR_SH_PREPARE, _AS_TR_CPP_PREPARE):
6589         Use 'eval', so that the resulting configure scripts work even if
6590         the current directory has a weird file name like 'y%s+%pp%;s%@%_%g'.
6592 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
6594         * lib/autoconf/lang.m4 (AC_LANG_WERROR): New macro.
6595         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_PREPROC_IFELSE)
6596         (_AC_LINK_IFELSE): Check the werror flag.
6597         * doc/autoconf.texi (Generic Compiler Characteristics): Document
6598         AC_LANG_WERROR.
6599         * NEWS: Mention it.
6601 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
6603         * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Override
6604         _AC_COMPILER_EXEEXT to attempt a link.  If linking fails,
6605         override AC_LINK_IFELSE.
6607 2003-10-15  Paul Eggert  <eggert@twinsun.com>
6609         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug in
6610         pdksh 5.2.14.  Bug reported by Ralf Corsepius.
6611         * doc/autoconf.texi (Shellology): Mention the Korn shell and pdksh.
6612         Mention /usr/dt/bin/dtksh on Solaris.
6613         (Shell Substitutions): Warn about $((...)).
6614         (Parentheses): New section.
6616 2003-10-15  Kevin Ryde  <user42@zip.com.au>
6618         * doc/autoconf.texi (Function Portability): Add @prindex for exit.
6619         Add putenv and unsetenv.  Add sysconf _SC_PAGE_SIZE.
6621 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
6623         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork
6624         cross test.
6626 2003-10-11  Steven G. Johnson  <stevenj@alum.mit.edu>
6628         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official
6629         name for the GNU Fortran 95+ compiler, 'gfortran', not 'g95'.
6631 2003-10-10  Andreas Schwab  <schwab@suse.de>
6633         * bin/autoheader.in: Avoid empty first line in --version and
6634         --help output.
6635         * bin/ifnames.in: Likewise.
6637 2003-10-09  Paul Eggert  <eggert@twinsun.com>
6639         * lib/Autom4te/XFile.pm: Don't assume -j is solo.
6640         Issue a more-informative diagnostic.
6641         Problems reported by Eric Sunshine.
6643 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
6645         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Omit quoted
6646         -mGLOB_options_string stuff for Intel ifc, which can cause
6647         _AC_FC_LIBRARY_LDFLAGS to fail.  Use (faster) case for
6648         pattern-matching instead of grep.
6650 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
6652         * doc/autoconf.texi: Document new FC Fortran macros.
6654 2003-10-08  Gary V. Vaughan  <gary@gnu.org>
6656         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Stub out a macro
6657         that future autopoint/aclocal/automake/autoreconf will be able
6658         to trace to find where to install local m4 macros.
6659         * doc/autoconf.texi (Input): Document it.
6660         * NEWS: Updated.
6662 2003-10-06  Gary V. Vaughan  <gary@gnu.org>
6664         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add
6665         -lcrtbegin.o to list of ignored flags and fix underquoting of
6666         -lcrt[01].o.
6668 2003-10-04  Steven G. Johnson  <stevenj@ab-initio.mit.edu>
6670         * lib/autoconf/fortran.m4 (_AC_PROG_FC_G): Use language-specific
6671         cache variable instead of $G77 to decide whether to include -O2,
6672         since $G77 is specific to Fortran 77.
6674 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
6676         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Support Absoft "-f
6677         free" flag.  Re-order flags tested into rough order of popularity.
6679 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
6681         * lib/autoconf/fortran.m4 (AC_PROG_FC): Reverse the order of the
6682         arguments so that it can be used with syntax identical to
6683         AC_PROG_F77, and so that we can more easily decide to
6684         remove/deprecate the DIALECT optional argument in the future if it
6685         proves troublesome.
6686         (AC_FC_FREEFORM): Exit 77 upon failure to fix test suite for
6687         non-freeform-supporting compilers.  Document freeform flags.
6689 2003-10-03  Akim Demaille  <akim@epita.fr>
6691         * configure.ac: Look for emacs, not macs.
6692         Reported by Eric Sunshine.
6694 2003-10-03  Akim Demaille  <akim@epita.fr>
6696         * lib/autom4te.in (Autoreconf-preselections): Trace AC_CONFIG_AUX_DIR.
6697         * bin/autoreconf.in (autoreconf_current_directory): Create the
6698         AUX_DIR if needed, for sake of automake --add-missing etc.
6699         Suggested by Alexandre Duret-Lutz.
6701 2003-10-03  Akim Demaille  <akim@epita.fr>
6703         * configure.ac: Quotation and formatting changes.
6704         (EMACS): Don't set it if it is not recent enough to support
6705         autoconf-mode.el.
6706         From Eric Sunshine.
6708 2003-10-02  Akim Demaille  <akim@epita.fr>
6710         * bin/ifnames.in (&scan_file): Skip C++ comments.
6711         From Jeremy Yallop.
6713 2003-10-01  Pavel Roskin  <proski@gnu.org>
6715         * doc/autoconf.texi (Particular Structure Checks):
6716         Fix misspelling of HAVE_STRUCT_STAT_ST_BLOCKS.
6718 2003-10-01  Akim Demaille  <akim@epita.fr>
6720         Version 2.57f.
6722 2003-09-30  Paul Eggert  <eggert@twinsun.com>
6724         * lib/Autom4te/XFile.pm: Use Errno.
6725         (lock): Ignore ENOLCK errors.  Problem reported Andreas Schwab in
6726         <http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.
6728 2003-09-30  Akim Demaille  <akim@epita.fr>
6730         * config/announce-gen (&print_news_deltas): Extracted from...
6731         (&print_changelog_deltas): here.
6732         (&news_file): Rename as...
6733         (@news_file): this.
6735 2003-09-30  Nicolas Joly  <njoly@pasteur.fr>
6737         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Remove files which might
6738         have been created when invoking the compiler.
6739         * tests/fortran.at (GNU Fortran 77): Quote $G77.
6741 2003-09-29  Akim Demaille  <akim@epita.fr>
6743         Version 2.57e.
6745         * config/mkinstalldirs: Upgrade.
6747 2003-09-28  Paul Eggert  <eggert@twinsun.com>
6749         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set DUALCASE=1, for MKS sh.
6750         Problem reported by Lars J. Aas in
6751         <http://mail.gnu.org/archive/html/autoconf/2003-07/msg00042.html>.
6752         (_AS_MKDIR_P_PREPARE): Change "rm -fr ./-p" to the more-conservative
6753         "test -d ./-p && rmdir ./-p".  Suggested by Andreas Schwab in:
6754         http://mail.gnu.org/archive/html/autoconf-patches/2003-09/msg00039.html
6756 2003-09-26  Akim Demaille  <akim@epita.fr>
6758         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Make sure the
6759         directory for AC_CONFIG_COMMANDS' first argument exists.
6760         This makes valid the invocation of _AC_SRCPATH that follows.
6761         Reported by Eric Sunshine.
6762         * doc/autoconf.texi (Configuration Commands): Adjust.
6764 2003-09-26  Akim Demaille  <akim@epita.fr>
6766         * bin/autoscan.in (Autom4te::FileUtils): Use it for find_file.
6767         Reported by Ralf Corsepius.
6769 2003-09-26  Akim Demaille  <akim@epita.fr>
6771         * lib/autoconf/general.m4 (AC_HELP_STRING): Don't overquote the
6772         arguments.
6773         Actually, use AU_ALIAS.
6774         From Bruno Haible.
6776 2003-09-26  Paul Eggert  <eggert@twinsun.com>
6778         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): If mkdir -p . fails,
6779         rm -fr ./-p to remove junk left behind on NextStep and OpenStep.
6780         Problem reported by Eric Sunshine in:
6781         http://mail.gnu.org/archive/html/autoconf-patches/2002-12/msg00014.html
6783 2003-09-26  Akim Demaille  <akim@epita.fr>
6785         The test suite are sometimes assigning timings incorrectly.
6786         Reported by Henk Krus.
6787         Diagnosed by Nicolas Joly.
6789         * lib/autotest/general.m4 (AT_CLEANUP): Rename AT_help as
6790         AT_help_all.
6791         Instead of making AT_help a sequence of assignments to grow
6792         $at_help_all, just make AT_help_all be the growing contents of
6793         $at_help_all, and make a single assignment in...
6794         (AT_INIT): here.
6795         (at_times_skip): Flip the meaning and rename as...
6796         (at_times_p): this.
6797         (AT_INIT): When summarizing the test that ran, remove
6798         $at_times_file after use, and check it is present before trying to
6799         use it.
6801 2003-09-25  Akim Demaille  <akim@epita.fr>
6803         Version 2.57d.
6805         * bin/Makefile.am (edit): Handle '@configure_input@'.
6806         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate)
6807         (ifnames): chmod -w.
6808         * tests/wrapper.as (AUTOCONF, AUTOM4TE, ): Point to tests/
6809         executables, not bin/ executables!  Otherwise all the magic needed
6810         to find non installed files is turned off.  This caused a failure
6811         of test 40 and 41 that ran aclocal 1.8 which in turn ran autom4te
6812         as found in its environment (sent by tests/autoreconf): pointing
6813         to bin/autom4te that could not find its files.
6814         * tests/mktests.sh: Force the replacement of generated files, for
6815         the sake of "mv" program that are interactive when overwriting a
6816         -w file.
6817         * config/install-sh: Upgrade from CVS Automake.
6819 2003-09-23  Paul Eggert  <eggert@twinsun.com>
6821         * doc/autoconf.texi (Limitations of Builtins): Document test -h
6822         versus test -L issues.
6824 2003-09-23  Daniel Jacobowitz  <drow@mvista.com> and
6825             Paul Eggert  <eggert@twinsun.com>
6827         Trivial change to support GCC's configuration procedure.
6828         * lib/autoconf/c.m4 (AC_PROG_CPP_WERROR): New macro.
6829         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Don't warn
6830         about inconsistency if the preprocessor is set to give errors for
6831         any warning.
6832         * doc/autoconf.texi (C Compiler Characteristics): Document this.
6834 2003-09-13  Alexandre Duret-Lutz  <adl@gnu.org>
6836         * Makefile.am (autom4te-update, autom4te_files): Fetch Struct.pm
6837         and XFile.pm from Automake.
6838         * lib/Autom4te/XFile.pm: Update from Automake.
6840 2003-09-12  Akim Demaille  <akim@epita.fr>
6842         Version 2.57c.
6844 2003-09-12  Akim Demaille  <akim@epita.fr>
6846         * config/config.guess, config/config.sub, config/missing,
6847         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm: Update
6848         from masters.
6850 2003-09-12  Akim Demaille  <akim@epita.fr>
6852         * doc/autoconf.texi (Header Portability): Promote linux/types.h,
6853         not asm/types.h.
6855 2003-09-11  Akim Demaille  <akim@epita.fr>
6857         * doc/autoconf.texi (Header Portability): linux/random.h.
6858         From Peter Hendrickson.
6860 2003-09-10  Akim Demaille  <akim@epita.fr>
6862         * tests/mktests.sh (au_exclude_egrep): Make it harder to be
6863         willing to edit the output files.
6865 2003-09-10  Akim Demaille  <akim@epita.fr>
6867         * tests/fortran.at (GNU Fortran 77): Also exercise AC_FC_SRCEXT
6868         and AC_FC_FREEFORM.
6869         * tests/mktests.sh: Skip AC_FC_SRCEXT.
6870         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Likewise.
6872 2003-09-09  Akim Demaille  <akim@epita.fr>
6874         * lib/Autom4te/FileUtils.pm (&update_file): s/cannot not/cannot/g.
6875         Reported by Gary Vaughan.
6876         * bin/autom4te.in (handle_m4): Likewise.
6878 2003-09-09  Akim Demaille  <akim@epita.fr>
6880         * lib/Autom4te/FileUtils.pm (&update_file): Be sure not to leave
6881         trailing files.
6883 2003-09-07  Paul Eggert  <eggert@twinsun.com>
6885         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS):
6886         Improve the accuracy of the wording about obsolescence.
6887         From a suggestion by Ian Lance Taylor in
6888         <http://mail.gnu.org/archive/html/autoconf/2003-09/msg00044.html>.
6890 2003-09-05  Paul Eggert  <eggert@twinsun.com>
6892         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Try -ffree-form too,
6893         for the benefit of g77 3.2.  Fix suggested by Steven G. Johnson.
6895 2003-09-04  Akim Demaille  <akim@epita.fr>
6897         * tests/mktests.sh (ac_exclude_list): Fix the filtering of
6898         AC_FUNC_WAIT3.
6900 2003-09-04  Akim Demaille  <akim@epita.fr>
6902         * bin/autom4te.in: Use &fatal where more appropriate than &error.
6903         (freeze): When exiting, use $exit_code.
6904         * lib/autoconf/fortran.m4: Comment changes.
6906 2003-09-04  Akim Demaille  <akim@epita.fr>
6908         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FUNC.
6910 2003-09-02  Steven G. Johnson  <stevenj@alum.mit.edu>
6912         Add support for newer Fortran dialects.  The F77 interface is
6913         unchanged, and continues to support Fortran 77.  New FC macros
6914         correspond to all the old F77 macros, with output variables FC,
6915         FCFLAGS, and FCLIBS.  AC_PROG_FC defaults to picking the newest
6916         available dialect, but older dialects can be specified.  There are
6917         new macros AC_FC_SRCEXT to set the source extension, and
6918         AC_FC_FREEFORM to accept free-form source files.
6920         * lib/autoconf/c.m4 (_AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++)):
6921         New macros.
6922         (AC_LANG_PROGRAM(C)): Invoke _AC_LANG_PROGRAM_C_FC_HOOKS if defined.
6923         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), _AC_FORTRAN_ASSERT,
6924         _AC_LANG_ABBREV(Fortran), _AC_LANG_PREFIX(Fortran 77),
6925         _AC_LANG_PREFIX(Fortran), _AC_FC, AC_LANG_SOURCE(Fortran),
6926         AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran),
6927         AC_LANG_PREPROC(Fortran), AC_LANG_COMPILER(Fortran),
6928         _AC_FC_DIALECT_YEAR, _AC_F95_FC, _AC_F90_FC, _AC_F77_FC,
6929         _AC_PROG_FC, AC_PROG_FC, _AC_PROG_FC_G, _AC_PROG_FC_C_O,
6930         AC_PROG_FC_C_O, _AC_PROG_FC_V_OUTPUT, _AC_PROG_FC_V,
6931         _AC_FC_LIBRARY_LDFLAGS, AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN,
6932         AC_FC_DUMMY_MAIN, _AC_FC_MAIN, AC_FC_MAIN, __AC_FC_NAME_MANGLING,
6933         _AC_FC_WRAPPERS, AC_FC_WRAPPERS, _AC_FC_FUNC, AC_FC_FUNC,
6934         AC_FC_SRCEXT, AC_FC_FREEFORM):
6935         New macros.
6936         (AC_PROG_F77, AC_PROG_F77_C_O, AC_F77_LIBRARY_LDFLAGS,
6937         AC_F77_DUMMY_MAIN, AC_F77_MAIN, _AC_F77_NAME_MANGLING,
6938         AC_F77_NAME_MANGLING, AC_F77_WRAPPERS, AC_F77_FUNC):
6939         Rewrite in terms of the above.
6940         (_AC_PROG_F77_G, _AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V): Remove.
6941         * lib/autoconf/lang.m4 (_AC_LANG_PREFIX): New macro.
6942         * tests/acfortran.at: Test AC_FC_FREEFORM, AC_FC_FUNC,
6943         AC_FC_MAIN, AC_FC_SRCEXT, AC_FC_WRAPPERS, AC_PROG_FC_C_O.
6945 2003-09-02  Paul Eggert  <eggert@twinsun.com>
6947         * doc/autoconf.texi (Limitations of Usual Tools, Limitations of Make):
6948         Document problems with timestamp resolution that 'make', 'cp -p', and
6949         'touch -r' have.
6951 2003-08-27  Akim Demaille  <akim@epita.fr>
6953         * tests/m4sugar.at (cross_warning): Make sure to enable the
6954         output, so that we can track spurious m4sugar output.
6955         * tests/local.at: Require 2.57.
6956         (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't m4_default the arguments that
6957         are defaulted by AT_CHECK anyway.
6958         Use AT_CHECK_AUTOM4TE.
6959         * lib/m4sugar/m4sugar.m4: There should be no output at all: add a
6960         missing dnl.
6962 2003-08-27  Akim Demaille  <akim@epita.fr>
6964         * bin/autoheader.in: Issue the "Using auxiliary..." message only
6965         when -Wobsolete is set.
6966         Set it on by default.
6967         Suggested by Klee Dienes.
6969 2003-08-27  Akim Demaille  <akim@epita.fr>
6971         * doc/autoconf.texi (AC_FUNC_FSEEKO, AC_SYS_LARGEFILE): More
6972         documentation.
6973         From Guido Draheim.
6975 2003-08-26  Akim Demaille  <akim@epita.fr>
6977         * doc/autoconf.texi (Output): Make clear that one can run code
6978         after AC_OUTPUT.
6980 2003-08-25  Akim Demaille  <akim@epita.fr>
6982         * config/announce-gen, GNUmakefile, Makefile.maint: Update from
6983         CVS Bison.
6985 2003-08-25  Alexandre Duret-Lutz  <adl@gnu.org>
6987         * bin/autoreconf.in (parse_args): Do not pass --no-force to
6988         Automake versions prior to 1.8.
6990 2003-08-25  Akim Demaille  <akim@epita.fr>
6992         * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
6993         From Ville Karaila.
6995 2003-08-24  Akim Demaille  <akim@epita.fr>
6997         * configure.ac: Bump to 2.57c.
6999 2003-08-22  Akim Demaille  <akim@epita.fr>
7001         Version 2.57b.
7003         * Makefile.cfg (local-checks-to-skip): New.
7004         * Makefile.maint (local-check): Rename as...
7005         (local-checks-available): this.
7006         (local-check): New.
7008         * Makefile.am (EXTRA_DIST): Add Makefile.cfg.
7009         * configure.ac: Require Automake 1.7.6.
7011 2003-08-22  Akim Demaille  <akim@epita.fr>
7013         Output stack traces in warnings.
7015         * lib/m4sugar/m4sugar.m4 (_m4_warn): New.
7016         Replace the former...
7017         (m4_warn): Pass the call stack to _m4_warn.
7018         * bin/autom4te.in: Adjust to output the call stack.
7019         * tests/m4sugar.at (m4@&t@_warn): Adjust.
7021 2003-08-22  Akim Demaille  <akim@epita.fr>
7023         * lib/Autom4te/Request.pm, lib/Autom4te/C4che.pm: New.
7024         * bin/autom4te.in: Adjust.
7026 2003-08-21  Akim Demaille  <akim@epita.fr>
7028         * lib/Autom4te/General.pm (&file_name_is_absolute): Remove.
7029         (&verbose): Remove.
7030         (&getopt): Adjust the note and verb channels, depending upon
7031         --verbose.
7032         * bin/autoheader.in, bin/autom4te.in, bin/autoscan.in,
7033         * bin/autoupdate.in: Adjust.
7034         Use &verb, not &verbose.
7036 2003-08-21  Akim Demaille  <akim@epita.fr>
7038         * bin/autoheader.in (&parse_args): Use &parse_warnings and
7039         &parse_WARNINGS.
7040         ($help): Use Autom4te::ChannelDefs::usage.
7041         * bin/autoscan.in: Use Autom4te::ChannelDefs.
7042         * lib/Autom4te/General.pm: Don't export error: you don't own it.
7044 2003-08-21  Akim Demaille  <akim@epita.fr>
7046         First stab at preserving warnings between calls to autom4te,
7047         including when the cache is used.
7049         There are still several issues: (i) there are too many runs of m4
7050         (one for include, one for warnings, and some more), (ii) warnings
7051         spreading on several lines are not handled gracefully, (iii) the
7052         code meant to have the call stack display for errors does not work
7053         (its handling should move from m4 to autom4te).
7055         * bin/autom4te.in Autom4te::Channels, Autom4te::ChannelDefs):
7056         Use them.
7057         (@preselect): Add m4_warn.
7058         ($exit_status): Remove, use $exit_code.
7059         ($help): Use Autom4te::ChannelDefs::usage.
7060         (&handle_m4): No longer define the m4_warnings.
7061         At each run, extract and report the warnings.
7062         Always cache the result, including if the exit status is on
7063         failure, since if nothing changes, we should result in the same
7064         failure, hence we can use the cache.
7065         * lib/m4sugar/m4sugar.m4 (m4_warning_ifelse, _m4_warning_ifelse)
7066         (_m4_warning_error_ifelse, __m4_warning_error_ifelse, _m4_warn):
7067         Remove.
7068         (m4_warn): Redefine as a do-nothing: it is its invocation that
7069         matters, as warnings are now reported via traces.
7070         * lib/autoconf/general.m4 (AC_DIAGNOSE): Don't make it a copy of
7071         the contents of m4_warn: make it _call_ m4_warn, so that tracing
7072         the latter reveals calls to the former.
7074         Adjust the tests.
7076         * tests/m4sugar.at (m4@&t@_warn): Use existing warning categories.
7078 2003-08-21  Akim Demaille  <akim@epita.fr>
7080         * bin/autoreconf.pm (Autom4te::Channels, Autom4te::ChannelDefs):
7081         Use them.
7083 2003-08-21  Akim Demaille  <akim@epita.fr>
7085         * lib/Autom4te/FileUtils.pm (&find_file): Walk the @include in
7086         forward order.
7087         * lib/Autom4te/ChannelDefs.pm: Doc typos.
7088         (&parse_warnings): Accept a list of warning requests.
7089         (&usage): Return a string, not a side effect.
7090         (cross): New warning category.
7092 2003-08-21  Akim Demaille  <akim@epita.fr>
7094         * lib/Autom4te/Configure_ac.pm (&find_configure_ac)
7095         (&require_configure_ac): Accept an optional directory argument.
7096         ($configure_ac): Remove.
7097         * lib/Autom4te/General.pm (&find_configure_ac, &canonfile)
7098         (&catfile): Remove.
7099         * bin/autoheader.in, bin/autoreconf.in, bin/autoupdate.in,
7100         * bin/autoscan.in: Adjust.
7102 2003-08-20  Akim Demaille  <akim@epita.fr>
7104         * bin/autoheader.in: Remove duplicate 'use Autom4te::FileUtils'.
7105         Reported by Alexandre Duret-Lutz.
7107 2003-08-20  Akim Demaille  <akim@epita.fr>
7109         * bin/autoupdate.in, bin/autoheader.in, bin/autoreconf.in,
7110         * bin/autom4te: Adjust.
7111         In particular, be Autoconf tools are really silent when properly
7112         working, bind the verbosity of the 'note' channel to $verbose.
7113         * lib/Autom4te/General.pm (&find_file, &mtime, &update_file)
7114         (&xsystem, &contents): Remove, since they are exported by...
7115         * lib/Autom4te/FileUtils.pm: this.
7116         More perldoc.
7117         * lib/Autom4te/General.pm (&up_to_date_p): Move to...
7118         * lib/Autom4te/FileUtils.pm: here.
7120 2003-08-20  Akim Demaille  <akim@epita.fr>
7122         * lib/Autom4te/Channels.pm, lib/Autom4te/ChannelDefs.pm
7123         * lib/Autom4te/Configure_ac.pm, lib/Autom4te/FileUtils.pm: New,
7124         from CVS Automake.
7126 2003-08-20  Akim Demaille  <akim@epita.fr>
7128         * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
7129         (autom4te-update): New.
7130         * Makefile.cfg (update): Bind autom4te-update.
7132 2003-08-19  Derek Price  <derek@ximbiot.com>
7134         * lib/autotest/general.m4: Comment various HELP_* diversions.
7135         (PARSE_ARGS_BEGIN): New section for option parsing related
7136         initialization.
7137         (AT_ARG_OPTION,AT_ARG_OPTION_ARG,_AT_ARG_OPTION): New macros to define
7138         package specific options and associated help.
7140 2003-08-19  Akim Demaille  <akim@epita.fr>
7142         * config/announce-gen, Makefile.cfg: New.
7143         * Makefile.am: Adjust.
7144         * GNUmakefile, Makefile.maint: Update from CVS Coreutils.
7146 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
7148         * lib/autom4te.in (Automake-preselections): Preselect
7149         AC_CONFIG_LIBOBJ_DIR, AC_CONFIG_LINKS, m4_include,
7150         and m4_sinclude.
7152 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
7154         * lib/autom4te.in (Autoconf): Move all args except aclocal.m4? into ...
7155         (Autoconf-without-aclocal-m4): ... this new language.
7156         * doc/autoconf.texi (autom4te Invocation): Mention
7157         Autoconf-without-aclocal-m4.
7159 2003-08-18  Derek Price  <derek@ximbiot.com>
7161         * doc/autoconf.texi (Writing testsuite.at): Document RUN-IF-FAIL &
7162         RUN-IF-PASS optional arguments.
7164 2003-08-18  Derek Price  <derek@ximbiot.com>
7166         * doc/autoconf.texi (Programming in M4sh): Add doc for AS_IF.
7168 2003-08-16  Derek Price  <derek@ximbiot.com>
7170         * doc/autoconf.texi (Writing testsuite.at): Document defaults for
7171         STDOUT & STDERR arguments.
7173 2003-08-14  Derek Price  <derek@ximbiot.com>
7175         * lib/autotestgeneral.m4 (AT_INIT): Reformat test summary line to print
7176         DESCRIPTION rather than FILE and LINE.  Shorten result to fit in new,
7177         shorter column three.  Add DESCRIPTION to log file content.
7179 2003-08-13  Derek Price  <derek@ximbiot.com>
7181         * lib/autotest/general.m4 (AT_INIT): Correct typo in final status
7182         output.
7184 2003-08-12  Derek Price  <derek@ximbiot.com>
7186         * lib/autotest/general.m4 (AT_CHECK): Use new _AT_CHECK API.
7187         (AT_CHECK_NOESCAPE): Move core functionality to...
7188         (_AT_CHECK): ...this new macro.
7190 2003-08-07  Derek Price  <derek@ximbiot.com>
7192         * lib/autotest/general.m4 (AT_CHECK): Move core functionality...
7193         (AT_CHECK_NOESCAPE): ...to this new macro.
7195 2003-07-31  Paul Eggert  <eggert@twinsun.com>
7197         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug
7198         in Bash 2.01.  Problem reported by Brian Gough in
7199         <http://mail.gnu.org/archive/html/bug-autoconf/2003-07/msg00106.html>.
7201 2003-07-25  John W. Eaton  <jwe@bevo.che.wisc.edu>
7203         * lib/autoconf/fortran.m4 (AC_F77_LIBRARY_LDFLAGS): Also ignore
7204         -lcrt1.o, for OS X.  (trivial change)
7206 2003-07-07  Paul Eggert  <eggert@twinsun.com>
7208         * lib/autoconf/c.m4 (AC_C_INLINE): Wrap the '#define inline ...'
7209         inside '#ifndef __cplusplus'.  Problem reported by
7210         Bob Friesenhahn.
7212 2003-07-06  Bill Clarke  <llib@computer.org>
7214         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Cast pointer to
7215         'long', not 'int', for benefit of Sun's recent C++ compilers
7216         (trivial change).  See:
7217         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00007.html
7218         (This really should be 'intptr_t', not 'long', but that would
7219         take more work.)
7221 2003-06-25  Akim Demaille  <akim@epita.fr>
7223         * lib/Makefile.am (autom4te.cfg): Make it read only.
7224         Depend on Makefile since it contains substitutions.
7225         From Paolo Bonzini.
7226         * lib/autom4te.in (args): Add local.at? for Autotest args.
7227         This change was made on autom4te.cfg which is generated.
7228         Reported by Raja R. Harinath.
7230 2003-06-25  Akim Demaille  <akim@epita.fr>
7232         * doc/autoconf.texi (Header Portability): sys/mount.h.
7233         From Gareth McCaughan.
7235 2003-06-23  Akim Demaille  <akim@epita.fr>
7237         * lib/autotest/general.m4 (AT_INIT): Report a single config.log,
7238         not all of them.  This fixes 1. the fact that when testing
7239         Autoconf there are many many config.log, 2. the incorrect use of
7240         top_srcdir to find config.log.
7241         Don't mix the detailed output of failed test with the summary of
7242         failures.  Rather, append detailed log afterwards.
7244 2003-06-23  Akim Demaille  <akim@epita.fr>
7246         * tests/local.at (AT_CHECK_CONFIGURE): Adjust to the verbose being
7247         always run: output config.log on $at_group_log.
7249 2003-06-23  Akim Demaille  <akim@epita.fr>
7251         * tests/torture.at (#define header templates): Don't use quotes in
7252         C++ comments as it puzzles Emacs' sh font-lock-mode.
7254 2003-06-23  Akim Demaille  <akim@epita.fr>
7256         * tests/mktests.sh (au_exclude_egrep): Fix output copyright notice.
7257         * lib/autom4te.cfg (args): Add local.at? for Autotest args.
7258         * tests/atspecific.m4: Rename as...
7259         * tests/local.at: This.
7260         * tests/suite.at: Move the globals into...
7261         * tests/local.at: here.
7262         * tests/Makefile.am: Adjust.
7263         * doc/autoconf.texi (testsuite Scripts): Adjust.
7265 2003-06-21  Kevin Ryde  <user42@zip.com.au>
7267         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Extend test program to get an
7268         error from OSF 4.0 Compaq cc in its default almost-ANSI mode, thereby
7269         ensuring we add -std1 for full-ANSI.
7271         * doc/autoconf.texi (hdrindex): New macro.
7272         Add index entries for portability of various standard header files.
7274 2003-06-20  Akim Demaille  <akim@epita.fr>
7276         * configure.ac: Bump to 2.57b.
7278 2003-06-20  Akim Demaille  <akim@epita.fr>
7280         Version 2.57a.
7282 2003-06-20  Akim Demaille  <akim@epita.fr>
7284         * bin/autom4te.in: Don't rely on $HOME being defined.
7285         Reported by Marc Espie as PR/233.
7287 2003-06-20  Akim Demaille  <akim@epita.fr>
7289         * lib/autotest/general.m4: Use at_times_file only if used.
7290         From Nicolas Joly.
7292 2003-06-20  Akim Demaille  <akim@epita.fr>
7294         * config/config.guess, config/config.sub, config/elisp-comp,
7295         * config/install-sh, config/mkinstalldirs, doc/standards.texi:
7296         Update from masters.
7298 2003-06-11  Paolo Bonzini  <bonzini@gnu.org>
7300         * doc/autoconf.texi (Writing testsuite.at): Document AT_XFAIL_IF
7301         * lib/autotest/general.m4 (AT_XFAIL_IF): New macro.
7302         (TEST_SCRIPT): New diversion.
7303         (AT_SETUP): Divert output to TEST_SCRIPT and move some code...
7304         (AT_CLEANUP): ...to here.  Undivert TEST_SCRIPT.
7305         (AT_INIT): Support for expected failures.
7307 2003-06-02  Akim Demaille  <akim@epita.fr>
7309         * bin/autom4te.in, bin/autoscan.in, bin/autoheader.in: White space
7310         changes.
7311         * lib/Autom4te/General.pm (&backname): Remove, no longer used by
7312         Autoconf nor Automake.
7313         (&contents): New, from Automake.
7314         PODify.
7316 2003-05-28  Paul Eggert  <eggert@twinsun.com>
7318         * NEWS, doc/autoconf.texi (Particular Functions),
7319         lib/autoconf/functions.m4 (AC_FUNC_MKTIME): Check that mktime
7320         is the inverse of localtime.
7322 2003-05-25  Alexandre Duret-Lutz  <adl@gnu.org>
7324         * lib/Autom4te/General.pm (END): Print diagnostics to STDERR.
7325         (handle_exec_errors): New function.  Work around $! being
7326         altered by WEXITSTATUS.
7327         (xqx, xsystem): Use handle_exec_errors.
7329 2003-05-23  Alexandre Duret-Lutz  <adl@gnu.org>
7331         * lib/Autom4te/General.pm (END): Rewrite exit code processing.
7332         Do not call `_exit()', simply modify `$?'.
7333         (xsystem): Reset $! before running system, and check it afterward.
7334         * tests/tools.at (autoupdating AC_PREREQ): Expect exit status
7335         63 for version mismatches.
7337 2003-05-23  Akim Demaille  <akim@epita.fr>
7339         * lib/autoconf/status.m4: Prefer "TAB-SP" to "SP-TAB", because of
7340         Emacs' dangerous whitespace.el behavior (smashing "useless" spaces in
7341         the middle of a line).
7342         * lib/m4sugar/m4sugar.m4: Likewise.
7343         Remove useless spaces in comments.
7345 2003-05-23  Akim Demaille  <akim@epita.fr>
7347         * lib/m4sugar/m4sugar.m4 (m4_version_prereq): Failure causes an
7348         exit 63, so that we (or Automake's "missing") can tell the
7349         difference with a plain failure.
7350         * doc/autoconf.texi (Notices): Adjust.
7352 2003-05-23  Akim Demaille  <akim@epita.fr>
7354         * Makefile.am, bin/Makefile.am, config/Makefile.am,
7355         * doc/Makefile.am, lib/autoconf/Makefile.am, tests/Makefile.am:
7356         White spaces cleanup.
7358 2003-05-22  Jim Meyering  <jim@meyering.net>
7359             Paul Eggert  <eggert@twinsun.com>
7361         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
7362         Remove `#include <stdlib.h>' from the list; we should never
7363         make confdefs.h include <stdlib.h> or <cstdlib>, because the
7364         resulting namespace pollution would cause other tests to fail.
7365         Configure scripts run with some older versions of g++ and HP's
7366         aCC would fail due to such an #include.  Problems reported by
7367         Matthew Mueller in <http://bugs.debian.org/120704> and by
7368         Keith Bostic in
7369         <http://mail.gnu.org/archive/html/autoconf/2003-05/msg00063.html>.
7370         In the test, use the test declaration before including <stdlib.h>,
7371         as that's closer to how it'll be used.
7373 2003-05-23  Akim Demaille  <akim@epita.fr>
7375         * doc/autoconf.texi (Header Portability): ucred.h.
7376         From Ian Redfern.
7378 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
7380         Overhaul Autotest's logging: generate separate log files
7381         in testsuite.dir/NNN/testsuite.log, and append them to
7382         testsuite.log instead of re-running the test verbosely.
7384         * lib/autotest/general.m4 (AT_INIT): Use a single redirected
7385         file descriptor, write 0 to at_status_file instead of setting
7386         at_status=0, initialize some new variables (at_status_file,
7387         at_group_log, at_suite_log, at_tee_pipe).  Remove the cruft
7388         to rerun the tests, instead append the at_group_log to the
7389         at_suite_log when a test fails.
7390         (AT_SETUP): pipe the test case's output into at_tee_pipe,
7391         with the AS_MESSAGE_LOG_FD redirected to stdout.
7392         (AT_CLEANUP): save the output status in $at_status_file
7393         and restore it, redirect the AS_MESSAGE_LOG_FD back to
7394         its original place.
7395         (AT_CHECK): since tests are run with a redirected stdout,
7396         and used to be re-run in verbose mode, turn some $at_verbose
7397         into echo, and don't redirect the output of testing stdout
7398         and stderr.
7400         * lib/autotest/autoconf.texi (testsuite Scripts): Update
7401         the name of the debugging directory and information about
7402         its contents.
7404 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
7406         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd
7407         parameter.
7409 2003-05-22  Akim Demaille  <akim@epita.fr>
7411         * lib/autoconf/autotest.m4, lib/autoconf/autoupdate.m4
7412         * lib/autoconf/fortran.m4 lib/autoconf/general.m4
7413         * lib/autoconf/headers.m4 lib/autoconf/oldnames.m4
7414         * lib/autoconf/status.m4: Fix and adjust copyright notices.
7416 2003-05-22  Akim Demaille  <akim@epita.fr>
7418         * aclocal.m4, bin/autoconf.as, lib/autoconf/autoconf.m4,
7419         * lib/autoconf/autoheader.m4, lib/autoconf/autoupdate.m4,
7420         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
7421         * lib/autoconf/general.m4, lib/autoconf/headers.m4,
7422         * lib/autoconf/lang.m4, lib/autoconf/libs.m4,
7423         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
7424         * lib/autoconf/status.m4, lib/autoconf/types.m4,
7425         * lib/autotest/general.m4, lib/m4sugar/m4sugar.m4,
7426         * tests/atspecific.m4, tests/base.at, tests/compile.at,
7427         * tests/foreign.at, tests/m4sh.at, tests/semantics.at,
7428         * tests/tools.at, tests/torture.at:
7429         Whitespace clean up.
7430         Suggested by Jim Meyering.
7432 2003-05-22  Akim Demaille  <akim@epita.fr>
7434         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Restore smashed
7435         ' \t' as '\t ' so that Emacs' whitespace.el keep it.
7436         Reported by Jim Meyering.
7438 2003-05-22  Akim Demaille  <akim@epita.fr>
7440         * doc/autoconf.texi: Replace AC_HELP_STRING AS_HELP_STRING.
7441         Add AC_HELP_STRING  to the obsolete macros section.
7442         Typos.
7443         Use '@.' for sentences that ended in a capital letter.
7444         From Art Haas.
7446 2003-05-22  Akim Demaille  <akim@epita.fr>
7448         * config/config.guess, config/config.sub, config/elisp-comp,
7449         * config/install-sh, config/mdate-sh, config/mkinstalldirs,
7450         * config/texinfo.tex, doc/standards.texi: Update from masters.
7452 2003-05-21  Paolo Bonzini  <bonzini@gnu.org>
7454         * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Escape the RHS before passing
7455         it to eval.
7457 2003-05-21  Akim Demaille  <akim@epita.fr>
7459         * bin/autoupdate.in ($m4): Fix quotation.
7460         Reported by Martin Mokrejs.
7462 2003-05-19  Paul Eggert  <eggert@twinsun.com>
7464         * ChangeLog, ChangeLog.2, THANKS, lib/m4sugar/m4sugar.m4:
7465         Remove non-ASCII characters.
7467 2003-05-18  Paolo Bonzini  <bonzini@gnu.org>
7469         * tests/semantics.at (AC_SEARCH_LIBS): New test.
7470         * tests/semantics.at (AC_CHECK_HEADERS_OLD,
7471         AC_CHECK_HEADERS_NEW): New tests.
7473 2003-05-17  Akim Demaille  <akim@epita.fr>
7475         * lib/autoconf/functions.m4: Use the default includes so that
7476         memcmp be declared before being tested.
7477         Reported by Sander Niemeijer.
7478         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_GETGROUPS, AC_FUNC_STRNLEN): Likewise.
7479         * doc/autoconf.texi (Default Includes): Document
7480         AC_INCLUDES_DEFAULT.
7482 2003-05-17  Akim Demaille  <akim@epita.fr>
7484         * lib/autoconf/specific.m4: Include signal.h and unistd.h.
7485         * doc/autoconf.texi (Obsolete Macros): Adjust.
7486         Reported by Werner LEMBERG and Debian Bug 190886.
7488 2003-05-16  Akim Demaille  <akim@epita.fr>
7490         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): s/FOO/as_foo/ to avoid
7491         user name space clashes.
7492         Reported by Bruno Haible.
7494 2003-05-16  Akim Demaille  <akim@epita.fr>
7496         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
7497         * bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make
7498         them uniform, and more robust to Perl special characters.
7499         Reported by Martin Mokrejs.
7501 2003-05-14  Akim Demaille  <akim@epita.fr>
7503         * tests/foreign.at (Libtool): Skip all Libtools pre 1.4.
7505 2003-05-14  Akim Demaille  <akim@epita.fr>
7507         * doc/autoconf.texi (Header Portability): X11/extensions/scrnsaver.h,
7508         linux/irda.h.
7510 2003-05-12  Akim Demaille  <akim@epita.fr>
7512         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Improve the
7513         message.
7514         From Matthias Andree.
7516 2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>
7518         * lib/Autom4te/XFile.pm (lock, truncate): Do not pass @_ to flock
7519         and truncate.
7521 2003-05-06  Akim Demaille  <akim@epita.fr>
7523         Don't try to be smart with aclocal 1.8+ because (i) aclocal no
7524         longer updates aclocal.m4 if useless, (ii) if a file m4_included
7525         by aclocal.m4 is changed it might require the importing of another
7526         m4 extension file, i.e., aclocal must be run.
7528         * bin/autoreconf.in (&run_aclocal, $aclocal_supports_force): New.
7529         (&parse_args): Use --force with aclocal if required and supported.
7530         (&autoreconf_current_directory): Use &run_aclocal.
7532 2003-05-06  Akim Demaille  <akim@epita.fr>
7534         Lock autom4te's cache.
7536         * lib/Autom4te/XFile.pm ($me, &name, &lock, &truncate, &seek): New.
7537         * bin/autom4te.in (&Request::save, &Request::load): Use an IO::File
7538         argument instead of a file name, so that the request file remains
7539         open during the whole autom4te run.
7540         ($icache_file): New.
7541         (&freeze): Lock the $icache_file.
7543 2003-04-29  Derek Price  <derek@ximbiot.com>
7545         * lib/autotest/general.m4 (AT_KEYWORDS): Don't use a comma as the
7546         seperator with m4_append_uniq().  It doesn't work.
7547         (AT_CLEANUP): Add `;' to end of at_help_all.
7548         (AT_INIT): Allow --keywords to be specified more than once.  When
7549         grepping $at_help_all for keywords, use the field and keyword
7550         seperators to ensure a complete keyword match.  Alter at_prev handling
7551         to support the new --keywords behavior.
7553 2003-04-27  Karl Berry  <karl@freefriends.org>
7555         * doc/autoconf.texi: Make the dir entries in the autoconf manual
7556         align better with others.  I also made some of the individual
7557         entries on one line, for brevity and to make it easier for me to
7558         sort my dir-example file in the Texinfo distribution :).
7560 2003-04-12  Jim Meyering  <jim@meyering.net>
7562         * NEWS: Mention the new macro.
7563         * lib/autoconf/c.m4 (AC_C_RESTRICT): New macro.
7564         * doc/autoconf.texi (C Compiler): Describe AC_C_RESTRICT.
7565         * tests/c.at: Test AC_C_RESTRICT.
7566         * tests/mktests.sh (ac_exclude_list): Add exclusion for AC_C_RESTRICT.
7568 2003-04-08  Akim Demaille  <akim@epita.fr>
7570         * bin/ifnames.in: Skip C++ comments.
7571         From Jeremy Yallop.
7573 2003-04-08  Akim Demaille  <akim@epita.fr>
7575         * GNUmakefile (SHELL): Don't assume sh is in /bin/.
7576         From Ilya Zakharevich.
7578 2003-04-08  Akim Demaille  <akim@epita.fr>
7580         * doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
7581         net/if.h, stdlib.h.
7583 2003-04-01  Derek Price  <derek@ximbiot.com>
7585         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Correct syntax error
7586         from Akim's checkin of 2003-03-29.
7588 2003-04-01  Derek Price  <derek@ximbiot.com>
7590         * tests/torture.at (Configuring subdirectories): Add missing
7591         close-quote for Akim's change from 2003-03-28.
7593 2003-04-01  Akim Demaille  <akim@epita.fr>
7595         * doc/autoconf.texi (ac, at, ms): Rename these indexes as...
7596         (AC, AT, MS): these.
7597         (shortindexflag, @acindex, @ahindex, @asindex, @atindex, @msindex):
7598         New.
7599         Use them.
7600         * doc/Makefile.am (CLEANFILES): Adjust.
7601         (TEXI2DVI): Make it --batch.
7603 2003-03-31  Derek Price  <derek@ximbiot.com>
7605         * lib/autotest/general.m4: Revert the checkin from 2003-03-27
7606         which removed the main loop.
7607         Thanks to Akim Demaille.
7609 2003-03-29  Akim Demaille  <akim@epita.fr>
7611         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Skip OS/2's install,
7612         that starts a GUI.
7613         From Ilya Zakharevich.
7615 2003-03-29  Akim Demaille  <akim@epita.fr>
7617         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): The
7618         documentation to read is Autoconf's.
7619         Suggested by Paul Eggert.
7621 2003-03-28  Akim Demaille  <akim@epita.fr>
7623         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Suggest
7624         reading the section "Present But Cannot Be Compiled" when the
7625         header causes problems.
7627 2003-03-28  Akim Demaille  <akim@epita.fr>
7629         * tests/torture.at (Configuring subdirectories): Require aclocal
7630         1.4, otherwise the test fails, as it does support configure.ac.
7631         This fixes the "test 40 failed" bug reports.
7633 2003-03-28  Akim Demaille  <akim@epita.fr>
7635         * doc/autoconf.texi (C Compiler): `#line' portability.
7636         From Paul Eggert and Nelson H. F. Beebe.
7638 2003-03-27  Derek Price  <derek@ximbiot.com>
7640         * lib/autotest/general.m4: Eliminate main loop and reorganize test
7641         layout in order to allow scripting around test groups.
7643 2003-03-27  Derek Price  <derek@ximbiot.com>
7645         * lib/autotest/general.m4 (PARSE_ARGS,PARSE_ARGS_END,HELP,HELP_MODES,
7646         HELP_TUNING,HELP_OTHER,HELP_END,PREPARE_TESTS,TESTS_END): Define and
7647         use new diversions in preparation for accepting new arguments and
7648         allowing scripting around tests.
7649         (OPTIONS,TAIL): Remove these diversions to make way for the ones above.
7651 2003-03-26  Derek Price  <derek@ximbiot.com>
7653         * lib/autoconf/general.m4 (AC_ARG_VAR): Use AS_HELP_STRING instead of
7654         obsolete AC_HELP_STRING.
7655         (AC_HELP_STRING): AU_DEFUN to...
7656         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): ...here.
7657         * tests/m4sh.at (AS_HELP_STRING): New test.
7659         * tests/acgeneral.at: Regenerated.
7661 2003-03-26  Derek Price  <derek@ximbiot.com>
7663         * lib/autotest/general.m4: s/DEFAULT/DEFAULTS/ since it makes more
7664         sense.  Verbosify the diversion definitions comment.
7666 2003-03-26  Derek Price  <derek@ximbiot.com>
7668         * lib/autotest/general.m4 (AT_INIT): Remove redundant call to
7669         AS_PREPARE.
7671 2003-03-21  Eric Siegerman  <eric_97@pobox.com>
7673         * doc/autoconf.texi (Present But Cannot Be Compiled):
7674         Grammar fixes and minor rewording. (trivial change)
7676 2003-03-06  Paul Eggert  <eggert@twinsun.com>
7678         Work around a problem noted by Nelson H. F. Beebe with coreutils
7679         4.5.9: Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08
7680         2002/05/09) rejects '#line 32768 "configure"' because the line
7681         number overflows.
7682         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Do not generate
7683         #line directives.
7684         * lib/autoconf/lang.m4 (AC_LANG_SOURCE): Fix comment to match this.
7685         * doc/autoconf.texi (Generating Sources): Document this.
7687 2003-03-01  Richard Dawe  <rich@phekda.freeserve.co.uk>
7689         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Normalize
7690         file name for the m4 program, when it has an "exe" file extension.
7691         DJGPP's error messages include the error code in brackets -
7692         remove the error code during normalization.
7694 2003-02-28  Akim Demaille  <akim@epita.fr>
7696         * doc/autoconf.texi (Present But Cannot Be Compiled): New.
7698 2003-02-28  Alexandre Duret-Lutz  <adl@gnu.org>
7700         * doc/autoconf.texi (Limitations of Make): Remove the section
7701         about `$<' in inference rules, it was a bogus interpretation of
7702         an old Automake change.  Discuss NetBSD, FreeBSD, OpenBSD, and
7703         Tru64 make in the "target lookup" section.
7704         (Automake): Automake 1.5+ no longer requires special tools to be
7705         present on the developer's host.
7707 2003-02-26  Richard Dawe  <rich@phekda.freeserve.co.uk>
7709         * bin/autoheader.in (BEGIN): For DJGPP SHELL may not be set
7710         to a shell that can handle redirection or quoting correctly.
7711         Override SHELL with the shell detected by configure.
7712         Use of $^O suggested by Tim van Holder.
7713         * bin/autom4te.in (BEGIN): Likewise.
7714         * bin/autoreconf.in (BEGIN): Likewise.
7715         * bin/autoscan.in (BEGIN): Likewise.
7716         * bin/autoupdate.in (BEGIN): Likewise.
7717         * bin/ifnames.in (BEGIN): Likewise.
7719         * bin/ifnames.in: Add final newline to help and version messages.
7721         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Translate colons,
7722         to cope with DOS-style absolute paths, when constructing
7723         ${ac_make}.
7725         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES):
7726         When constructing paths with IFS=:, quote the path. If we're
7727         constructing a DOS-style absolute path, we don't want to split it
7728         on the colon.
7730         * tests/atspecific.m4 (AT_CHECK_CONFIGURE): Fix typo
7731         in description.
7733 2003-02-25  Pavel Roskin  <proski@gnu.org>
7735         * bin/autoheader.in: Add missing newline when printing
7736         suggestion how change AC_DEFINE call.
7738 2003-02-24  Paul Eggert  <eggert@twinsun.com>
7740         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix typo in
7741         2002-09-01 patch by replacing "test -n" with "test -z".
7742         This fixes a bug found by Jeff Painter and reported by Tom Epperly in
7743         <http://mail.gnu.org/archive/html/autoconf/2003-02/msg00139.html>.
7745         * doc/autoconf.texi (Shell Substitutions): test -n -> test -z,
7746         to fix a mismatch between example and discussion.
7748 2003-02-24  Kevin Ryde  <user42@zip.com.au>
7750         * doc/autoconf.texi (Limitations of Builtins): Add notes on printf
7751         format starting with "-".
7753 2003-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
7755         * doc/autoconf.texi (Limitations of Make): `foo=bar make -e'
7756         is not portable inside Makefile.
7758 2003-02-20  Akim Demaille  <akim@epita.fr>
7760         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): When
7761         compiler says yeah, but preproc says nope, compiler is right.
7762         Conversely, prompt the reader to send a bug report to the
7763         maintainers of the package, not of Autoconf.
7765 2003-02-20  Klee Dienes  <kdienes@apple.com>
7767         * bin/autoreconf.in (autoreconf_current_directory): Properly
7768         handle an empty aclocal.m4.
7770 2003-02-20  Akim Demaille  <akim@epita.fr>
7772         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote
7773         $ac_prefix_program.
7774         From Larry Jones.
7776 2002-12-23  Paul Eggert  <eggert@twinsun.com>
7778         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Define $1 to an
7779         innocuous variant befor including <limits.h> or <assert.h>.  This
7780         works around a bug reported by Albert Chin: HP-UX 11i
7781         (and earlier versions) have a <limits.h> that declares
7782         gettimeofday and many other functions.
7784 2002-12-03  Paul Eggert  <eggert@twinsun.com>
7786         Version 2.57.
7788         * NEWS, configure.ac: Update version.
7790         * doc/fdl.texi: Upgrade to FDL version 1.2.
7792         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
7793         nontrivially in main's body, so that f's external declaration is
7794         not optimized away in AIX.  This should fix the bug reported by
7795         Martin Frydl in
7796         <http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
7798         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
7799         _AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
7800         defined, to support freestanding compilers.  This should fix the
7801         bug reported by Momchil Velkov in
7802         <http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
7804         * doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
7805         arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
7806         obsolete AC_CHECK_TYPE.  The missing empty arg was reported
7807         by Simon Josefsson in
7808         <http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
7810         * Makefile.maint (www-gnu): New macro.
7811         (standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
7812         the location has moved.
7814 2002-12-02  Martin Frydl  <martin@systinet.com>
7816         * bin/autom4te.in (at_flatten): rewritten to avoid M4 problem when
7817         \(.*\) match is too long and there is something more to be checked.
7818         <http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>
7820 2002-11-15  Akim Demaille  <akim@epita.fr>
7822         Version 2.56.
7824         * config/install-sh: chmod +x.
7825         From Paul Eggert.
7826         * config/move-if-change: Indenting changes.
7827         * Makefile.am (AUTOMAKE_OPTIONS): Move to...
7828         * configure.ac (AM_INIT_AUTOMAKE): here.
7829         Require 1.7.1.
7831 2002-11-14  Akim Demaille  <akim@epita.fr>
7833         Version 2.55.
7835         * config/config.guess, config/config.sub, config/install-sh:
7836         Update from masters.
7838 2002-11-14  Akim Demaille  <akim@epita.fr>
7840         * Makefile.maint: Sync with Bison, i.e.:
7841         (po-check): Scan .l and .y files instead of the
7842         .c and the .h files that they generate.  This fixes the bug
7843         reported by Tim Van Holder in:
7844         <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
7845         Look for N_ as well as for _.  Try to avoid matching #define for
7846         N_ and _.
7847         From Paul Eggert.
7849 2002-11-14  Akim Demaille  <akim@epita.fr>
7851         * doc/autoconf.texi (C Compiler): Compiling several files at once.
7852         From Paul Eggert and Albert Chin-A-Young.
7854 2002-11-14  Akim Demaille  <akim@epita.fr>
7856         * doc/autoconf.texi (C Compiler): Solitary backslashes.
7857         From Paul Eggert and Albert Chin-A-Young.
7859 2002-11-14  Kevin Ryde  <user42@zip.com.au>
7861         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Initialize f=$1 rather
7862         than assigning in main, to avoid HP cc +O3 optimizing it away.
7864 2002-11-12  Peter Eisentraut  <peter_e@gmx.net>
7866         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Add -q
7867         option.  Process --recheck after parsing all options.  Pass -q
7868         option to configure on --recheck.
7869         (AC_OUTPUT): Pass -q from configure to config.status.
7870         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Strip -q from
7871         arguments to record.
7872         * doc/autoconf.texi (config.status Invocation): Document
7873         config.status -q option.
7875 2002-11-07  Alexandre Duret-Lutz  <adl@gnu.org>
7877         * bin/autoscan.in (scan_file): Scan Makefile.am too. Ignore
7878         Makefile.in if Makefile.am exists.
7879         (output): Strip `.am' from Makefiles.  Don't
7880         output AC_CONFIG_FILES if no Makefiles were found.
7882 2002-11-07  Akim Demaille  <akim@epita.fr>
7884         * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
7885         (local_updates): New.
7886         * Makefile.maint: Update, from CVS Bison.
7887         (local_updates): New.
7889 2002-11-06  Akim Demaille  <akim@epita.fr>
7891         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
7892         declaration in extern "C" too.
7893         Reported by Roberto Bagnara.
7895 2002-11-06  Akim Demaille  <akim@epita.fr>
7897         * tests/torture.at (Configuring subdirectories): Don't use grep
7898         -w.
7899         * doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
7900         Reported by Ezra Peisach.
7902 2002-11-05  Akim Demaille  <akim@epita.fr>
7904         * lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
7905         Remove.
7906         We _have_ to stop using the old compatibility scheme that tried to
7907         avoid useless backslashes because Libtool 1.4.3 contains a
7908         AC_DEFINE([error_t], [int],
7909         [Define to a type to use for \`error_t' if it is not
7910         otherwise available.])
7911         We _have_ to quote the single quote and backslashes with \.  The
7912         old compatibility scheme saw that ` was backslashed, and therefore
7913         did not quote the single quote.  Hence before this patch, Autoconf
7914         was not compatible with Libtool.
7916 2002-11-04  Paul Eggert  <eggert@twinsun.com>
7918         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set the following variables,
7919         too: LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_MONETARY,
7920         LC_NAME, LC_PAPER, LC_TELEPHONE.
7921         * doc/autoconf.texi (Special Shell Variables): Mention those vars.
7923 2002-11-04  Akim Demaille  <akim@epita.fr>
7925         Version 2.54c.
7927         * Makefile.maint (update, cvs-update, po-update, do-po-update):
7928         New.
7929         * config/texinfo.tex: Update.
7931 2002-11-03  Akim Demaille  <akim@epita.fr>
7933         * bin/autoreconf.in (&autoreconf_current_directory): New, extracted
7934         from...
7935         (&autoreconf): here.
7936         ($help, $make, &parse_args, &autoreconf_current_directory):
7937         Support -m/--make.
7938         * doc/autoconf.texi (autoreconf Invocation): Adjust.
7940 2002-10-31  Bruno Haible  <bruno@clisp.org>
7942         * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Change message.
7943         Change name of cache variable to ac_cv_func_malloc_0_nonnull.
7944         (AC_FUNC_MALLOC): Change description of HAVE_MALLOC macro.
7945         (_AC_FUNC_REALLOC_IF): Change message. Change name of cache variable
7946         to ac_cv_func_realloc_0_nonnull.
7947         (AC_FUNC_REALLOC): Change description of HAVE_REALLOC macro.
7949 2002-10-31  Akim Demaille  <akim@epita.fr>
7951         The test suite was no longer checking for trailing envvars and files.
7953         * tests/atspecific.m4 (AC_STATE_SAVE): Don't use quadrigraphs here.
7954         (AT_CHECK_ENV): Make sure the `state-ls.before file exists.
7956 2002-10-31  Akim Demaille  <akim@epita.fr>
7958         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use and display
7959         `$(MAKE)' instead of '${MAKE}' to emphasize that we refer to the
7960         Make variable, not a shell variable.
7961         Suggested by Bruno Haible.
7963 2002-10-31  Akim Demaille  <akim@epita.fr>
7965         * bin/autom4te.in (load_configuration): Reject #args out of any
7966         language.
7968 2002-10-31  Akim Demaille  <akim@epita.fr>
7970         * lib/autoconf/general.m4 (_AC_MSG_LOG_CONFTEST): New.
7971         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE)
7972         (_AC_RUN_IFELSE): Use it.
7973         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT):
7974         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
7975         * lib/autoconf/c.m4 (AC_LANG_SOURCE): Don't include confdefs.h,
7976         inline it.
7978 2002-10-30  Akim Demaille  <akim@epita.fr>
7980         * bin/autom4te.in (&parse_args, $help): Support --no-cache.
7981         * doc/autoconf.texi (autom4te Invocation): Adjust.
7982         Suggested by Tim van Holder.
7984 2002-10-29  Paul Eggert  <eggert@twinsun.com>
7986         * doc/autoconf.texi (Particular Functions): AC_FUNC_MALLOC and
7987         AC_FUNC_REALLOC check for compatibility with glibc, not POSIX.
7988         Problem reported by Bruno Haible.
7990 2002-10-29  Akim Demaille  <akim@epita.fr>
7992         * doc/autoconf.texi (Header Templates): Put also in words what the
7993         pictures says to assist free style readers.
7994         (Customizing autom4te): s/--cache=/--cache /.
7996 2002-10-29  Akim Demaille  <akim@epita.fr>
7998         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Include stdlib.h and
7999         sys/wait.h.
8000         sparc_address_test returns void.
8001         Use it with an argument, as prototyped.
8002         From Bruno Haible.
8004 2002-10-29  Akim Demaille  <akim@epita.fr>
8006         * doc/autoconf.texi (Subdirectories): Cygnus dirs have
8007         configure.in, not configure.ac.
8008         Reported by Bruno Haible.
8010 2002-10-29  Akim Demaille  <akim@epita.fr>
8012         * tests/torture.at (Deep Package): New test.
8013         (Configuring subdirectories): Don't use a testSubDir as Autotest
8014         now does it itself.
8016 2002-10-29  Akim Demaille  <akim@epita.fr>
8018         * bin/autoreconf.in (&parse_args, $help): Support --warnings.
8019         * doc/autoconf.texi (Invoking autom4te): Rename as...
8020         (autom4te Invocation): this, for consistency with the other nodes.
8022 2002-10-29  Akim Demaille  <akim@epita.fr>
8024         * lib/autom4te.in (Autoconf): s/automate/autom4te/.
8025         Reported by Ralf Corsepius.
8027 2002-10-29  Akim Demaille  <akim@epita.fr>
8029         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
8030         characters is a back as an `obsolete' warning now.
8031         Reported by Ralf Corsepius.
8033 2002-10-28  Akim Demaille  <akim@epita.fr>
8035         * configure.ac: Bump to 2.54c.
8037 2002-10-28  Akim Demaille  <akim@epita.fr>
8039         Version 2.54b.
8041         * tests/foreign.at (Libtool): Adjust to broken libtoolize.
8043 2002-10-28  Akim Demaille  <akim@epita.fr>
8045         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Be robust to different
8046         m4 executable names, and different GNU M4 version.
8047         Reported by Ezra Peisach and Paul Jarc.
8049 2002-10-27  Akim Demaille  <akim@epita.fr>
8051         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Really use
8052         AC_RUN_IFELSE.
8054 2002-10-27  Akim Demaille  <akim@epita.fr>
8056         * doc/autoconf.texi: More AC_MSG_FAILURE promotion.
8057         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING):
8058         Die when a simple Fortran program cannot be compiled.
8059         * lib/autoconf/lang.m4 (AC_LANG_CALL, AC_LANG_FUNC_LINK_TRY):
8060         Issue a warning if no function is given.
8062 2002-10-27  Akim Demaille  <akim@epita.fr>
8064         * doc/autoconf.texi (Run Time): Document AC_RUN_IFELSE.
8065         Move the documentation of AC_TRY_RUN to...
8066         (Obsolete Macros): here.
8067         Adjust all the old samples still using AC_TRY_RUN to AC_RUN_IFELSE.
8068         (autoconf Invocation): Remove the duplicates with `invoking
8069         autom4te'.
8070         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_RUN.
8071         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
8073 2002-10-27  Akim Demaille  <akim@epita.fr>
8075         * doc/autoconf.texi (Generating Sources): Document AC_LANG_CALL
8076         and AC_LANG_FUNC_LINK_TRY.
8077         (Examining Libraries): Rename as...
8078         (Running the Linker): this.
8079         Document AC_LINK_IFELSE.
8080         Move the documentation of AC_TRY_LINK and AC_TRY_LINK_FUNC to...
8081         (Obsolete Macros): here.
8082         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING): Don't use
8083         AC_TRY_LINK_FUNC nor AC_TRY_LINK.
8084         * lib/autoconf/libs.m4 (AC_CHECK_LIB, AC_PATH_XTRA): Likewise.
8085         * lib/autoconf/headers.m4 (AC_USG): Likewise.
8087 2002-10-27  Akim Demaille  <akim@epita.fr>
8089         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_CPP.
8091         More `check config.log' messages.
8093         * lib/autoconf/general.m4 (AC_MSG_FAILURE): New.
8094         * doc/autoconf.texi (Printing Messages): Document it.
8095         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use it when
8096         appropriate.
8097         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT)
8098         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_O)
8099         (_AC_COMPILER_OBJEXT): Likewise.
8100         * lib/autoconf/general.m4 (AC_RUN_IFELSE): Likewise.
8101         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS):
8102         Likewise.
8103         * lib/autoconf/c.m4 (AC_PROG_CPP, AC_PROG_CC, AC_PROG_CXXCPP):
8104         Likewise.
8106         Deprecate macros with unusual interfaces.
8108         * lib/autoconf/general.m4 (AC_TRY_CPP, AC_TRY_LINK)
8109         (AC_TRY_COMPILE, AC_TRY_RUN): AU_DEFUN'ed.
8111         Document the new ones, and proper style.
8113         * doc/autoconf.texi (Generating Sources): New.
8114         Document AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM.
8115         (Examining Declarations): Rename as...
8116         (Running the Preprocessor): this.
8117         Document AC_PREPROC_IFELSE.
8118         (Examining Syntax): Rename as...
8119         (Running the Compiler): this.
8120         (AC_FOO_IFELSE vs AC_TRY_FOO): New section.
8121         (Obsolete Macros): Move the definition of AC_TRY_CPP and
8122         AC_TRY_COMPILE here.
8124 2002-10-27  Akim Demaille  <akim@epita.fr>
8126         Move sections around.
8128         * doc/autoconf.texi (Customizing autom4te): Remove a lost
8129         sentence.
8130         Reported by Burno Haible.
8131         (Language Choice): Now the first section of...
8132         (Writing Tests): this section.
8133         Make the introduction less C-centric.
8134         (Guidelines, Test Functions): Move to...
8135         (Writing Test Programs): this new section.
8136         (Test Programs): Merge into...
8137         (Run Time): this.
8139 2002-10-27  Akim Demaille  <akim@epita.fr>
8141         * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on
8142         autom4te.in that resulted in the need for two `make' runs.
8144 2002-10-27  Akim Demaille  <akim@epita.fr>
8146         * configure.ac: Bump to 2.54b.
8148 2002-10-25  Akim Demaille  <akim@epita.fr>
8150         Version 2.54a.
8152         * Makefile.maint: Update from the Coreutils.
8153         (AMTAR): Remove, obsolete.
8154         (automake_repo): Update to redhat.com.
8155         (cvs_file): New.
8156         Adjust to the fact that ansi2knr is now hosted by Automake.
8157         * Makefile.am (cvs_files): Add install-sh and mkinstalldirs.
8158         * config/config.guess, config/mkinstalldirs, config/texinfo.tex:
8159         Update from masters.
8160         * lib/autoscan/Makefile.am (EXTRA_DIST, nodist_autoscanlib_DATA):
8161         autoscan.pre is not to be installed, and autoscan.list is not to
8162         be shipped.
8163         (CLEANFILES): Add autoscan.list.
8164         (autoscan.list): Disable the cache.
8165         * bin/Makefile.am: Include freeze.mk.
8167 2002-10-25  Akim Demaille  <akim@epita.fr>
8169         * bin/autom4te.in (&load_configuration): Take the file as
8170         argument.
8171         (&parse_args): Handle -C, --cache.
8172         ($help): Adjust.
8173         (MAIN): Load ~/.autom4te.cfg and ./.autom4te.cfg.
8174         * lib/autom4te.in (Autoconf): Pass --cache=autom4te.cache.
8175         * doc/autoconf.texi (Invoking autom4te): Document --cache.
8176         Now a subsection of...
8177         (Using autom4te): This new section.
8178         (Customizing autom4te): New.
8179         (autom4te.cache): Adjust.
8181 2002-10-25  Akim Demaille  <akim@epita.fr>
8183         * doc/autoconf.texi (Generic Headers): More information on how to
8184         use AC_CHECK_HEADERS.
8186 2002-10-25  Akim Demaille  <akim@epita.fr>
8188         * bin/autoconf.as, bin/autoconf.in, bin/autoupdate.in ($help):
8189         Space changes.
8191 2002-10-25  Akim Demaille  <akim@epita.fr>
8193         * bin/autoscan.in (output): Output AC_PREREQ.
8194         (%needed_macros): Add AC_PREREQ so that configure.ac without one
8195         be reported.
8197 2002-10-23  Akim Demaille  <akim@epita.fr>
8199         * doc/autoconf.texi (Particular Headers): In AC_HEADER_STDBOOL,
8200         document _Bool.
8202 2002-10-23  Akim Demaille  <akim@epita.fr>
8204         * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
8205         Reported by Peter Eisentraut.
8207 2002-10-23  Akim Demaille  <akim@epita.fr>
8209         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
8210         type _Bool.
8211         Fix a typo.
8212         * doc/autoconf.texi (Particular Headers): Adjust according to Paul
8213         Eggert's recommandations.
8215 2002-10-22  Akim Demaille  <akim@epita.fr>
8217         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): New, based on CVS
8218         Bison, by Paul Eggert.
8219         * doc/autoconf.texi (Particular Headers): Document it.
8221 2002-10-22  Aaron M. Ucko  <amu@alum.mit.edu>
8223         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Avoid duplicates in
8224         `$ac_configure_args'.
8226 2002-10-22  Akim Demaille  <akim@epita.fr>
8228         * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
8229         (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
8230         From Art Haas.
8232 2002-10-22  Akim Demaille  <akim@epita.fr>
8234         Restore the 2002-10-11  Akim Demaille  <akim@epita.fr> patch:
8236         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
8237         (AC_CHECK_HEADER, _AC_CHECK_HEADER_NEW,_AC_CHECK_HEADER_OLD): Restore.
8238         (_AC_CHECK_HEADER_NEW): Rename as...
8239         (AC_CHECK_HEADER): this.
8241 2002-10-22  Akim Demaille  <akim@epita.fr>
8243         * doc/autoconf.texi (Limitations of Usual Tools): Remove incorrect
8244         words about HP-UX cmp: it was actually a user-written cmp.
8246 2002-10-22  Akim Demaille  <akim@epita.fr>
8248         * tests/foreign.at (Libtool): Don't check autoconf's stderr: there
8249         are a few warnings.
8250         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
8251         Quote for Perl '' strings, not "".
8252         * bin/autoheader.in: Invoke autoconf to get '' strings, not ""
8253         strings.
8255 2002-10-22  Akim Demaille  <akim@epita.fr>
8257         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
8258         characters is a syntax warning now.
8259         (_AS_QUOTE): Accept $2 as list of characters to quote.
8260         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
8261         Quote for Perl, not sh.
8262         * bin/autoheader.in: When $debug, report the file which is
8263         `do'ne.
8264         * tests/tools.at (autom4te, autoheader): Exercise @bar, not merely
8265         `@', to tickle Perl's lists.
8266         Reported by Carlos Velasco.
8268 2002-10-18  Akim Demaille  <akim@epita.fr>
8270         * bin/autom4te.in (handle_m4): Pass --fatal-warning to m4, so that
8271         missing included files _are_ errors.
8272         Thanks to Alexandre Duret-Lutz.
8273         * tests/tools.at (autom4te cache): Adjust.
8274         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): New.
8275         (AT_CHECK_M4SUGAR): Use it.
8276         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
8277         Adjust.
8278         * tests/tools.at (autom4te): Now it does exit 1.
8280 2002-10-17  Akim Demaille  <akim@epita.fr>
8282         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Don't use cmp.
8283         Fixes the `AC_ARG_VAR' test failures.
8284         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Don't use cmp.
8285         * lib/freeze.mk (check-forbidden-patterns): New.
8286         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am
8287         * lib/m4sugar/Makefile.am (check-local): Use it to catch `cmp'.
8288         * doc/autoconf.texi (Limitations of Usual Tools): HP-UX' cmp and
8289         /dev/null.
8290         Reported months ago by H. Merijn Brand.
8292 2002-10-17  Akim Demaille  <akim@epita.fr>
8294         * tests/tools.at (autoheader): Put randoms `@' to stress Perl.
8296 2002-10-16  Paul Eggert  <eggert@twinsun.com>
8298         * Makefile.maint (wget_files): Remove ansi2knr.c.
8299         (ansi2knr.c-url_prefix): Remove.
8301 2002-10-16  Akim Demaille  <akim@epita.fr>
8303         Because of caching, some files that no longer exist and are no
8304         longer required can still cause errors.
8305         Reported by Alexandre Duret-Lutz.
8307         * bin/autom4te.in (&parse_args): Do not prepend `--reload-state'
8308         to frozen files in @ARGV, as @ARGV must remain being a list of
8309         files.  Rather, at M4 call sites, use this...
8310         (&files_to_options): New function.
8311         (&freeze): Use &error.
8312         (&up_to_date): If a file that was included according to the cache
8313         is no longer there, then the output is out dated.
8314         (&main): Don't even check whether a file is up to date is anyway
8315         --force is given.
8316         * tests/tools.at (autom4te cache): New.
8318 2002-10-16  Akim Demaille  <akim@epita.fr>
8320         * bin/autoconf.as: Kill dead options.
8321         * bin/autoupdate.in (&parse_args): Kill old options.
8322         * bin/autoreconf.in (&parse_args): Remove dead options.
8323         Factor some code.
8324         (&autoreconf): Report the directories we enter *and leave*, so
8325         that error messages can be easily located, and use GNU Make
8326         format, so that Emacs' compile mode understands us.
8327         * lib/Autom4te/General.pm (&update_file): Use `verbose' to report
8328         if some file was changed instead of `print'.
8329         * bin/autoheader.in: Suggest AC_DEFINE with 3 args when needed.
8330         (&parse_args): Remove the dead options.
8331         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Adjust to the new
8332         autoheader's quiet mode.
8333         (AT_CHECK_AUTOUPDATE): Likewise.
8334         * tests/tools.at (autoupdate): Adjust.
8335         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
8337 2002-10-11  Akim Demaille  <akim@epita.fr>
8339         No longer use CPP to check for the existing of headers: use CC to
8340         check for compilability.
8342         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
8343         (AC_CHECK_HEADER, _AC_CHECK_HEADER_OLD): Remove.
8344         (_AC_CHECK_HEADER_NEW): Rename as...
8345         (AC_CHECK_HEADER): this.
8347         * lib/autotest/general.m4 (AT_INIT): Include the failed test
8348         numbers in the Subject suggestion.
8350 2002-10-11  Akim Demaille  <akim@epita.fr>
8352         * lib/autoconf/specific.m4 (AC_DECL_SYS_SIGLIST): Obsolete.
8353         Suggest using AC_CHECK_DECLS instead.
8355 2002-10-11  Akim Demaille  <akim@epita.fr>
8357         * tests/torture.at (AC_ARG_VAR): Have configure report the value
8358         of `precious'.
8360 2002-10-11  Akim Demaille  <akim@epita.fr>
8362         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use $$ in the
8363         file name to enable parallel executions.
8364         From Sam Varshavchik.
8366 2002-10-08  Akim Demaille  <akim@epita.fr>
8368         * bin/autoreconf.in (&autoreconf): Run autopoint before the first
8369         aclocal invocation, as Gettext macros might not be visible to
8370         aclocal.
8371         Instead of blindly running autopoint, scan configure.ac (not the
8372         traces) for AM_GNU_GETTEXT_VERSION uses, as autopoint does.
8373         Reported by Paul D. Smith.
8375 2002-10-08  Paul Eggert  <eggert@twinsun.com>
8377         Work around problems found when POSIXLY_CORRECT=1 is set.
8378         None of this seems to have anything to do with POSIX, really,
8379         but it's how Perl getopt works.
8380         * bin/autom4te.in (parse_args): Configure GetOpt with
8381         "permute", too.
8382         * doc/autoconf.texi (Invoking autom4te):
8383         --warning -> --warnings.
8384         * lib/autom4te.in: --warning -> --warnings.
8386 2002-09-28  Akim Demaille  <akim@epita.fr>
8388         * doc/autoconf.texi (autom4te.cache): New section.
8390 2002-09-28  Akim Demaille  <akim@epita.fr>
8392         * lib/autom4te.in (Autoscan-preselections, Autoreconf-preselections)
8393         (Automake-preselections): Update.
8394         * bin/autoreconf.in, bin/autoheader.in: Comment changes.
8396 2002-09-28  Akim Demaille  <akim@epita.fr>
8398         * lib/autoscan/autoscan.pre: Move all the remaining rules to...
8399         * lib/autoconf/c.m4, lib/autoconf/functions.m4,
8400         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
8401         * lib/autoconf/specific.m4, lib/autoconf/types.m4: here.
8403 2002-09-28  Akim Demaille  <akim@epita.fr>
8405         * tests/torture.at (Configuring subdirectories): Be robust to
8406         users who use config.site to require for a cache: in this case,
8407         the two last configure runs, using two different sets of
8408         arguments, trigger a legitimate error.
8410 2002-09-28  Akim Demaille  <akim@epita.fr>
8412         * tests/m4sh.at (Functions Support, Functions and return Support):
8413         New.
8415 2002-09-28  Akim Demaille  <akim@epita.fr>
8417         * bin/Makefile.am (ETAGS_SH, ETAGS_PERL): Update: ifnames and
8418         autoheader are Perl programs.
8419         (autoconf, autoheader, autoreconf, autoupdate, ifnames, autoscan)
8420         (autom4te): Specify that the sources are in the $srcdir.
8421         * doc/autoconf.texi (Installation Directory Variables): Adjust.
8423 2002-09-28  Akim Demaille  <akim@epita.fr>
8425         * lib/autoscan/autoscan.pre (st_blksize, st_blocks, st_rdev)
8426         (tm_zone): Move their rules to...
8427         * lib/autoconf/types.m4: here, using AN_ macros.
8428         * lib/autoscan/autoscan.pre (AWK, BISON, INSTALL, LEX, LN, MAKE)
8429         (RANLIB, YACC, awk, bison, byacc, flex, gawk, install, lex, ln)
8430         (make, mawk, nawk, ranlib, yacc): Similarly, move to...
8431         * lib/autoconf/programs.m4: here.
8432         * lib/freeze.mk (ETAGS_FOR_M4, ETAGS_FOR_M4SUGAR)
8433         (ETAGS_FOR_AUTOCONF): New.
8434         Use it.
8436 2002-09-28  Akim Demaille  <akim@epita.fr>
8438         * lib/autoconf/autoscan.m4: New file.
8439         * lib/autoconf/autoconf.m4: Include it.
8440         * lib/autoconf/functions.m4: Use AN_FUNCTION for all the functions
8441         that were listed in the original autoscan.list.
8442         * lib/autoconf/headers.m4: Similarly with headers.
8443         * lib/freeze.mk (autoconf_m4f_dependencies): Add autoscan.m4.
8444         (.m4.m4f): Don't pass --prepend-include, since that's done by
8445         tests/autom4te itself.
8446         * lib/autoscan/Makefile.am: Include freeze.mk.
8447         (autoscan.list): New target --this file is no longer a source.
8448         (autoscan.pre): New file.
8450 2002-09-28  Akim Demaille  <akim@epita.fr>
8452         * bin/autoscan.in (@kinds): Make them singular.
8453         Adjust all uses.
8454         (&init_tables): When --debug, report the list of rules to ease
8455         tracking changes in autoscan.list.
8456         * lib/autoscan/autoscan.list (function): Strip comments, sort.
8458 2002-09-28  Akim Demaille  <akim@epita.fr>
8460         * lib/autoscan/functions, lib/autoscan/headers,
8461         * lib/autoscan/identifiers, lib/autoscan/makevars,
8462         * lib/autoscan/programs: Merge into...
8463         * lib/autoscan/autoscan.list: this.
8464         * bin/autoscan.in (&init_tables): Adjust.
8466 2002-09-28  Akim Demaille  <akim@epita.fr>
8468         * lib/autoscan/functions, lib/autoscan/headers,
8469         * lib/autoscan/identifiers, lib/autoscan/makevars,
8470         * lib/autoscan/programs: Make the `kind' explicit, i.e., each
8471         `functions' line is now prefixed with `function:'.
8472         * bin/autoscan.in (&init_tables): Adjust.
8474 2002-09-28  Akim Demaille  <akim@epita.fr>
8476         From now on, autoscan files must always map a macro name to a
8477         word: there is no `default' macro for autoscan.
8479         * bin/autoscan.in (&init_tables): Reject entries with no macro at
8480         all.
8481         * lib/autoscan/functions, lib/autoscan/headers: Make the macro
8482         explicit.
8484 2002-09-28  Akim Demaille  <akim@epita.fr>
8486         * bin/autoscan.in (%c_keywords): Remove.
8487         (&used): Keep only track of the words we might be interested in.
8488         (&output_kind): It is no longer needed to look for non active
8489         checks.
8491 2002-09-27  Akim Demaille  <akim@epita.fr>
8493         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): New, stolen from
8494         jm_FUNC_MBRTOWC, by Paul Eggert, from the Coreutils 4.5.1.
8495         * lib/autoscan/functions: Adjust.
8496         * doc/autoconf.texi (Particular Functions): Adjust.
8498 2002-09-27  Akim Demaille  <akim@epita.fr>
8500         * doc/autoconf.texi (Limitations of Usual Tools): Some about mv
8501         from /tmp.
8502         Thanks to Bill Moseley and Paul Eggert.
8503         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): $2 is the directory into which
8504         the tmpdir must be created.
8505         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Have the tmp
8506         dir be in the build tree, instead of $TMPDIR.
8508 2002-09-27  Akim Demaille  <akim@epita.fr>
8510         * bin/autoscan.in: Improve the comments.
8511         (&parse_args): Drop obsolete undocumented options.
8512         (&output_kind): Output warnings.
8513         * lib/autoscan/functions: (dcgettext): Now trigger AM_GNU_GETTEXT.
8514         (getwd): Trigger a warning.
8516 2002-09-26  Akim Demaille  <akim@epita.fr>
8518         * bin/autoreconf.in: Clarify that -s is meaningless without -i.
8519         Reported by Ralf Corsepius.
8520         * doc/autoconf.texi (autoreconf Invocation): Likewise.
8522 2002-09-26  Akim Demaille  <akim@epita.fr>
8524         Single suffix rules and seperated dependencies are not portable.
8526         * doc/autoconf.texi (Installation Directory Variables): Update.
8527         (Limitations of Make): Some about `Single Suffix Rules and
8528         Separated Dependencies'.
8529         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
8530         (ifnames, autoscan, autom4te): Un-factor into several rules.
8532 2002-09-25  Paul Eggert  <eggert@twinsun.com>
8534         * BUGS (Interoperability bugs): New section.  Mention libtool
8535         1.4.2, configure.ac, and AC_CONFIG_AUX_DIR interoperability bug.
8537 2002-09-24  Paul Eggert  <eggert@twinsun.com>
8539         Fix a portability bug reported by Alexandre Duret-Lutz: Solaris 8
8540         make handles suffix-rules differently from GNU make.
8542         * bin/Makefile.am (SUFFIXES, .in): Remove.
8543         (autoconf autoheader autoreconf autoupdate ifnames autoscan autom4te):
8544         Move the body of the old .in rule here.
8546 2002-09-16  Akim Demaille  <akim@epita.fr>
8548         i960 compilers create `b.out' files by default.
8549         Reported by Ralf Corsepius.
8551         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove b.out files.
8552         (_AC_COMPILER_EXEEXT_DEFAULT): Adjust to b.out.
8554 2002-09-13  Paul Eggert  <eggert@twinsun.com>
8556         * doc/autoconf.texi (Particular Headers): Remove obsolete
8557         reference to `struct timezone' in the description of
8558         AC_HEADER_TIME.
8560 2002-09-13  Akim Demaille  <akim@epita.fr>
8562         Version 2.54.
8564         * config/config.sub, config/config.guess: Update.
8565         * Makefile.maint: Update from bits of the Coreutils 4.5.1.
8566         * Makefile.am: Adjust.
8568 2002-09-13  Akim Demaille  <akim@epita.fr>
8570         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Suggest
8571         reading config.log when the compiler is rejected.
8572         Suggested by Guido Draheim.
8574 2002-09-13  Akim Demaille  <akim@epita.fr>
8576         * bin/autoreconf.in: Don't use Cwd::chdir, since in its internals
8577         (chdir_init) might hang when stat'ing mounted directories.
8578         Reported by Vance Shipley.
8580 2002-09-12  Akim Demaille  <akim@epita.fr>
8582         * bin/autoscan.in (&parse_args): Pass a reference to the lists, not
8583         the lists.
8585 2002-09-12  Akim Demaille  <akim@epita.fr>
8587         * doc/autoconf.texi (Defining Symbols): Present two different
8588         prototypes for AC_DEFINE and AC_DEFINE_UNQUOTED to emphasize the
8589         difference between 1 argument calls, and 2-3 argument calls.
8591 2002-09-12  Peter Eisentraut  <peter_e@gmx.net>
8593         * doc/autoconf.texi: Review grammar and punctuation.
8595 2002-09-11  Paul Eggert  <eggert@twinsun.com>
8597         * doc/autoconf.texi: Fix minor formatting, spelling, and
8598         grammatical typos.
8599         (Defining Symbols): Explain that AC_DEFINE(var) defaults to 1, but
8600         AC_DEFINE(var,,description) does not; and the AC_DEFINE(var) case
8601         is obsolescent.
8603 2002-09-11  Akim Demaille  <akim@epita.fr>
8605         * doc/autoconf.texi (Questions): Rename as...
8606         (FAQ): this.
8607         (Defining Directories): New.
8609 2002-09-09  Akim Demaille  <akim@epita.fr>
8611         * doc/autoconf.texi (Making testsuite Scripts): Update.
8612         Suggested by Nishio Futoshi.
8614 2002-09-09  Koji Arai  <JCA02266@nifty.ne.jp>
8616         * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
8617         plain `@' is wanted.
8619 2002-09-09  Akim Demaille  <akim@epita.fr>
8621         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
8622         `duplicates', since the algorithm was too naive and could keep
8623         `--prefix=1 --prefix=2 --prefix=1' as `--prefix=1 --prefix=2', and
8624         keep `--prefix foo --prefix bar' as `--prefix foo bar'.
8625         Reported by Ralf Corsepius.
8626         * tests/torture.at (Configuring subdirectories): Exercise these
8627         cases.
8629 2002-09-09  Akim Demaille  <akim@epita.fr>
8631         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Use $srcdir when
8632         looking for a replacement file.
8633         * lib/autoconf/general.m4 (AC_CHECK_DECLS): Check that the
8634         directory is relative.
8635         * doc/autoconf.texi (Generic Functions): Clarify the replacement
8636         directory definition.
8637         Reported by Andreas Schwab and Jim Meyering.
8639 2002-09-06  Akim Demaille  <akim@epita.fr>
8641         * doc/autoconf.texi (Setting Output Variables): Clarify what
8642         precious variables are.
8643         Suggested by Pontus Skoeld.
8645 2002-09-05  Akim Demaille  <akim@epita.fr>
8647         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
8648         (ifnames, autoscan, autom4te): Since we don't only depend on
8649         configure.ac variables (such as VERSION etc.), but also on prefix
8650         and so forth, depend on Makefile, not configure.ac.
8651         Reported by Alexandre Duret-Lutz.
8652         * doc/autoconf.texi (Installation Directory Variables): Adjust.
8654 2002-09-05  Kevin Ryde  <user42@zip.com.au>
8656         * doc/autoconf.texi (Limitations of Make): HP-UX trailing backslashes
8657         doesn't seem to be confined to ia64, just say "some versions".
8659 2002-09-04  Akim Demaille  <akim@epita.fr>
8661         * Makefile.am, doc/Makefile.am: Remove pdf targets, handled by
8662         Automake 1.6c.
8663         * Makefile.am (maintainer-clean-local): Remove.
8664         (MAINTAINERCLEANFILES): Remove COPYING.
8666 2002-09-03  Paul Eggert  <eggert@twinsun.com>
8668         * doc/autoconf.texi (Configuration Commands): Remove obsolete
8669         example for AC_CONFIG_COMMANDS_PRE.  Problem reported by Marcus
8670         Brinkmann.
8672 2002-09-03  Akim Demaille  <akim@epita.fr>
8674         * configure.ac: Bump to 2.53d.
8675         * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6c, i.e., CVS Automake
8676         as of today, on Automake's team suggestion.
8678 2002-09-03  Akim Demaille  <akim@epita.fr>
8680         Version 2.53c.
8682 2002-09-02  Akim Demaille  <akim@epita.fr>
8684         * bin/autom4te.in (parse_args): Don't honor AUTOM4TE_PATH and
8685         SITE_MACRO_DIR.
8686         * configure.ac: Disable SITE_MACRO_DIR.
8688 2002-09-02  Jim Meyering  <meyering@lucent.com>
8690         * doc/autoconf.texi (AC_SYS_POSIX_TERMIOS): Reflect renaming: s/am/ac/,
8691         i.e., change am_cv_sys_posix_termios to ac_cv_sys_posix_termios.
8692         Also, tweak grammar: s/make sure to/be sure to/.
8694 2002-09-02  Paul Eggert  <eggert@twinsun.com>
8696         * doc/autoconf.texi (Limitations of Builtins): Explain why logical
8697         directory names are generally preferable to physical names.
8699 2002-09-02  Akim Demaille  <akim@epita.fr>
8701         * lib/Autom4te/General.pm (&update_file): s/die/error/.
8702         Reported by Raja R. Harinath.
8703         * bin/autoheader.in, bin/autoreconf.in, bin/autoscan.in,
8704         * bin/autoupdate.in: Use error instead of die.
8706 2002-09-01  Paul Eggert  <eggert@twinsun.com>
8708         * tests/mktests.sh (ac_exclude_egrep, au_exclude_egrep): Use
8709         ordinary shell concatenation rather than echo+tr+sed command that
8710         runs afoul of a long-line-related sed bug in Solaris 8.
8712         * bin/autoheader.in (parse_args): --warning -> --warnings.
8714         * bin/autoconf.as: Work even if "ls" outputs "FOO not found" to
8715         stdout, as traditional "ls" does.
8716         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT,
8717         _AC_COMPILER_EXEEXT_O): Likewise.
8718         * doc/autoconf.texi (Limitations of Usual Tools): Add "ls".
8720         * bin/autoconf.as: Add --prepend-include option.  This patch was
8721         applied to bin/autoconf.in in the 2002-07-17 patch by Mark D. Roth,
8722         but bin/autoconf.in is generated automatically from bin/autoconf.as.
8724         * bin/autoconf.in, configure: Regenerate.
8726         * doc/autoconf.texi (Special Shell Variables): Mention
8727         ENV, MAIL, MAILPATH, PS1, PS2, PS4.  Index PWD.
8729         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Unset ENV, MAIL,
8730         MAILPATH and set PS1, PS2, PS4 to default values, to work
8731         around bug in pre-3.0 UWIN ksh reported by Bruce Lilly.
8732         For LC_ALL etc, first try to set to "C" as POSIX requires and as
8733         the Autoconf documentation specifies; fall back to "unset" only if
8734         this fails.  Use a shell for-loop for this rather than an m4 loop,
8735         to shorten the output script.
8737 2002-08-30  Paul Eggert  <eggert@twinsun.com>
8739         * doc/autoconf.texi (Special Shell Variables): Mention POSIX
8740         1003.1-2001's requirements for CDPATH.  Give a simpler workaround
8741         for the CDPATH problem.  Document PWD.
8742         (Limitations of Builtins): Document the problem that "cd $foo" and
8743         "ls $foo" may refer to different directories in shells conforming
8744         to POSIX 1003.1-2001.  Use PS1 rather than CDPATH for "unset"
8745         example, since the old example is now out of date.
8747         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Reject FOO if "cd
8748         FOO" and "ls FOO" talk about different directories; this catches
8749         problems when POSIX 1003.1-2001 "cd" fails due to symlink
8750         spaghetti.
8752         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use AS_UNSET instead
8753         of rolling our own unset.
8754         (_AS_PREPARE): $as_unset CDPATH instead of AS_UNSETting it, since
8755         in practice we needn't worry about CDPATH if unset doesn't work.
8757         * Makefile.in, aclocal.m4, bin/Makefile.in,
8758         config/Makefile.in, doc/Makefile.in, lib/Makefile.in,
8759         lib/Autom4te/Makefile.in, lib/autoconf/Makefile.in,
8760         lib/autoscan/Makefile.in, lib/autotest/Makefile.in,
8761         lib/emacs/Makefile.in, lib/m4sugar/Makefile.in, man/Makefile.in,
8762         tests/Makefile.in: Regenerate with Automake 1.6.3.
8764         * config/config.guess, config/config.sub, config/mkinstalldirs:
8765         Update.
8767         * configure: Regenerate with self.
8769 2002-08-30  Kevin Ryde  <user42@zip.com.au>
8771         * doc/autoconf.texi (Limitations of Usual Tools): Notes on "cc"
8772         default output.
8774 2002-08-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8776         * bin/autom4te.in (Request::load): Correctly test for "do" read
8777         failure.
8779 2002-08-29  Akim Demaille  <akim@epita.fr>
8781         * lib/Autom4te/General.pm (&xqx): New.
8782         (&xsystem): Use WIFEXITED and WEXITSTATUS instead of decoding $? by
8783         hand, which is not portable.
8784         (&error): New.
8785         * bin/autom4te.in: Use them.
8786         Use &error instead of die.
8787         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
8788         Adjust.
8790 2002-08-17  Paul Eggert  <eggert@twinsun.com>
8792         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove fc from the
8793         default list of compilers to try, since it was long ago superseded
8794         by the ksh fc builtin.  Suggested by Steven G. Johnson.
8796 2002-07-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
8798         * doc/autoconf.texi (Invoking autom4te): End the option table,
8799         fixing a bug introduced by the previous patch.
8800         (Limitations of Make): Add a 'target lookup' subentry in the
8801         'VPATH' entry.  Rewrite all `make' occurences as `@command{make}'.
8803 2002-07-29  Mark D. Roth  <roth@feep.net>
8805         * bin/autom4te.in: Remove --include-envvar and --site-macro-subdir
8806         options and use $AUTOM4TE_PATH.
8807         * doc/autoconf.texi: Remove documentation of autom4te
8808         --include-envvar and --site-macro-subdir options and document
8809         use of $AUTOM4TE_PATH.
8810         * lib/autom4te.in: Remove --include-envvar and --site-macro-subdir
8811         arguments from each language section.
8813 2002-07-29  Paul Eggert  <eggert@twinsun.com>
8815         * doc/install.texi: Include copyright symbol in copyright notice.
8817         * Makefile.am (MAKEINFO): Remove; it's a user-specified macro.
8818         Replace with:
8819         (AM_MAKEINFOFLAGS): New macro.
8820         * doc/Makefile.am (MAKEINFO, AM_MAKEINFOFLAGS): Likewise.
8821         * Makefile.am (INSTALL): Use the new macros.
8822         Use -o rather than --output, since "missing" does not grok --output.
8824 2002-07-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
8826         * doc/autoconf.texi (Limitations of Make): Escaped newlines in
8827         comments do not always work. Never trust the exit status of
8828         `make -k'.
8830 2002-07-24  Kevin Ryde  <user42@zip.com.au>
8832         * doc/autoconf.texi (Limitations of Make, Making testsuite Scripts):
8833         Untabify, since tabs are not enjoyed by texi2dvi and makeinfo.
8835 2002-07-23  Paul Eggert  <eggert@twinsun.com>
8837         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE):
8838         Use PATH="/nonexistent;.", not PATH=".;.", as FreeBSD ksh2002
8839         apparently treats PATH="nonexistent" as if it contained ".".
8840         Bug reported by Stefan `Sec' Zehl.
8842 2002-07-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
8844         * doc/autoconf.texi (Limitations of Make): Mention the special
8845         handling of the obj/ directory by BSD make.
8847 2002-07-20  Kevin Ryde  <user42@zip.com.au>
8849         * doc/autoconf.texi (Limitations of Make): Add HP-UX IA-64 trailing
8850         backslashes.
8852 2002-07-19  Akim Demaille  <akim@epita.fr>
8854         * doc/autoconf.texi (Function Portability): `exit'.
8855         (Programming in M4sh): Ethymology of M4sh.
8857 2002-07-19  Akim Demaille  <akim@epita.fr>
8859         * doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): More about $U.
8861 2002-07-18  Akim Demaille  <akim@epita.fr>
8863         Version 2.53b.
8865 2002-07-18  Akim Demaille  <akim@epita.fr>
8867         * config/config.guess, config/config.sub: Update.
8869 2002-07-18  Akim Demaille  <akim@epita.fr>
8871         Handle LIBOBJS and LTLIBOBJS once for all, including Libtool's and
8872         Automake's parts.
8874         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): New.
8875         * lib/autoconf/status.m4 (AC_OUTPUT_COMMANDS_PRE): Call it.
8876         * tests/semantics.at (AC_REPLACE_FUNCS): Adjust.
8878 2002-07-18  Akim Demaille  <akim@epita.fr>,
8879             Alexandre Duret-Lutz  <duret_g@epita.fr>
8881         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Install
8882         _AC_AM_CONFIG_HEADER_HOOK for Automake 1.7.
8884 2002-07-17  Russ Allbery  <rra@stanford.edu>
8886         * doc/autoconf.texi (Initializing configure): Clarify the
8887         description of the tarname default.
8889 2002-07-17  Andreas Buening  <andreas.buening@nexgo.de>
8891         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Don't set
8892         ac_cv_func_fork_works before running _AC_FUNC_FORK, do it if the
8893         latter was not run.
8895 2002-07-17  Akim Demaille  <akim@epita.fr>
8897         * lib/Autom4te/General.pm (find_file): Browse the directories in
8898         the order they are given.
8900 2002-07-17  Akim Demaille  <akim@epita.fr>
8902         * tests/wrapsh.as, tests/wrappl.as: Merge into...
8903         * tests/wrapper.as: this.
8904         * tests/Makefile.am, configure.ac: Adjust.
8906 2002-07-17  Mark D. Roth  <roth@feep.net>
8908         * configure.ac: Add --enable-site-macro-dir option.
8909         * bin/Makefile.am: Expand @SITE_MACRO_DIR@.
8910         * bin/autom4te.in: Add --prepend-include, --include-envvar, and
8911         --site-macro-subdir options.
8912         * bin/autoconf.in: Add --prepend-include option.
8913         * bin/autoheader.in: Add --prepend-include option.
8914         * bin/autoreconf.in: Add --prepend-include option.
8915         * bin/autoscan.in: Add --prepend-include option.
8916         * bin/autoupdate.in: Add --prepend-include option.
8917         * doc/autoconf.texi: Document use of $AC_MACRO_PATH and site
8918         macro directory, remove note that include path directories are
8919         used in reverse order, and document --prepend-include option.
8920         * lib/autom4te.in: Use --prepend-include instead of --include.
8921         * tests/wrapsh.in: Use --prepend-include instead of --include.
8923 2002-07-17  Akim Demaille  <akim@epita.fr>
8925         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): `_' is allowed in
8926         tarnames.
8927         * doc/autoconf.texi (Initializing configure): Adjust.
8929 2002-07-17  Akim Demaille  <akim@epita.fr>
8931         * lib/autoconf/functions.m4 (AC_FUNC_REALLOC, _AC_FUNC_REALLOC)
8932         (_AC_FUNC_MALLOC): New.
8933         (AC_FUNC_MALLOC): Use the latter.
8934         Define HAVE_MALLOC to 0 if broken.
8935         * doc/autoconf.texi (Particular Functions): Adjust.
8937 2002-07-16  Akim Demaille  <akim@epita.fr>
8939         * lib/autoconf/c.m4 (AC_C_BACKSLASH_A): New.
8940         * doc/autoconf.texi (C Compiler): Adjust.
8942 2002-07-09  Akim Demaille  <akim@epita.fr>
8944         * doc/autoconf.texi: Properly set the ``header'' part.
8946 2002-07-09  Akim Demaille  <akim@epita.fr>
8948         * doc/autoconf.texi (Systemology): Some about Darwin.
8950 2002-07-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
8952         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
8953         Don't use AC_REQUIRE in AU_DEFUN.
8955 2002-07-09  Art Haas  <ahaas@neosoft.com>
8957         * doc/autoconf.texi: Use @enddots{} or @dots{} where appropriate.
8959 2002-07-02  Alexandre Duret-Lutz  <duret_g@epita.fr>
8961         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
8962         bin/autoupdate.in, bin/ifnames.in, lib/Autom4te/General.pm,
8963         lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Add local variables
8964         so that Emacs setups GNU style for perl-mode and cperl-mode.
8966 2002-06-27  Paul Eggert  <eggert@twinsun.com>
8968         * config/install-sh: Quote $src.  Prefer || to test's -o option,
8969         as per "Limitations of Builtins".
8970         * tests/atspecific.m4 (AT_CHECK_ENV): Likewise, for && vs test -a.
8971         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
8973         * tests/mktests.sh: Use grep instead of fgrep, as per
8974         "Limitations of Builtins".
8976 2002-06-15  Paul Eggert  <eggert@twinsun.com>
8978         * tests/wrapsh.as (AUTOCONF, AUTOHEADER, AUTOM4TE, AUTOM4TE_CFG,
8979         autom4te_perllibdir): Set to top build dir or src dir as appropriate,
8980         so that we consistently test the just-built programs.
8981         * tests/wrappl.as: Likewise.
8983 2002-06-12  Paul Eggert  <eggert@twinsun.com>
8985         * bin/autoconf.as (AUTOM4TE): Default to a fully qualified path
8986         name, so that symlinks to 'autoconf' work properly.  Bug reported
8987         by Bruno Haible.
8988         * bin/autoheader.in (AUTOM4TE): Likewise.
8989         * bin/autoreconf.in (autoconf, autoheader): Likewise.
8990         * bin/autoscan.in (autom4te): Likewise.
8991         * bin/autoupdate.in (autom4te): Likewise.
8993         * lib/autoconf/functions.m4 (_AC_LIBOBJ_FNMATCH): Also check for
8994         btowc, to fix a portability bug with diffutils-2.8.2/lib/fnmatch.c
8995         on Solaris 2.5.1.
8997 2002-06-11  Andreas Schwab  <schwab@suse.de>
8999         * doc/autoconf.texi: Add more dir entries.
9001 2002-06-10  Alexandre Duret-Lutz  <duret_g@epita.fr>
9003         * bin/autom4te.in ($cache): Don't define using `$me', the name
9004         of the cache should not depend on the name under which autom4te
9005         was installed.
9007 2002-06-07  Akim Demaille  <akim@epita.fr>
9009         * tests/tools.at (autoconf: forbidden tokens, basic)
9010         (autoconf: forbidden tokens, exceptions): Adjust to the change of
9011         words in autom4te.in.
9013 2002-06-07  Peter Eisentraut  <peter_e@gmx.net>
9015         * lib/autoconf/c.m4 (AC_LANG_PROGRAM(C)): Use
9016         _AC_LANG_PROGRAM_C_F77_HOOKS.
9018 2002-06-07  Akim Demaille  <akim@epita.fr>
9020         * lib/autoconf/functions.m4 (AC_REPLACE_FUNC_FNMATCH): Typo,
9021         rename as...
9022         (AC_REPLACE_FNMATCH): this.
9023         * tests/mktests.sh (exclude_list): Exclude AC_REPLACE_FNMATCH,
9024         AC_FUNC_FNMATCH_GNU.
9026 2002-06-07  Akim Demaille  <akim@epita.fr>
9028         * doc/autoconf.texi (Systemology): Point to Tru64 docs, and the
9029         Rosetta Stone for Unix.
9031 2002-06-07  Akim Demaille  <akim@epita.fr>
9033         * bin/autom4te.in (warn_forbidden): When rejecting a token,
9034         suggest m4_pattern_allow.
9035         Suggested by Adam J. Richter.
9037 2002-06-07  Akim Demaille  <akim@epita.fr>
9039         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
9040         ac_config_libobj_dir.
9041         (AC_CONFIG_LIBOBJ_DIR): New.
9042         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Split into...
9043         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): these.
9044         Use ac_config_libobj_dir to find the replacement files.
9045         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU): Split into...
9046         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_REPLACE_FNMATCH)
9047         (AC_REPLACE_FNMATCH_GNU): these.
9048         (AC_FUNC_GETLOADAVG): Use ac_config_libobj_dir.
9049         * doc/autoconf.texi (Particular Functions, Generic Functions): Adjust.
9050         * tests/mktests.sh (ac_exclude_list): Don't check
9051         AC_FUNC_GETLOADAVG as it requires getloadavg.c which is not shipped.
9053 2002-06-06  Paul Eggert  <eggert@twinsun.com>
9055         * lib/autoconf/status.m4 (_AC_OUTPUT_LINKS): Fall back on cp
9056         if ln doesn't work.
9057         * NEWS: Likewise.
9058         * doc/autoconf.texi (Configuration Links): Likewise.
9059         (Limitations of Usual Tools): Prefer $(LN_S) to ln -s || ln.
9061 2002-06-05  Paul Eggert  <eggert@twinsun.com>
9063         * config/config.guess, config/config.sub, config/texinfo.tex:
9064         Update from masters.
9066 2002-05-29  Paul Eggert  <eggert@twinsun.com>
9068         * bin/autom4te.in ($m4): Do not assume that egrep and fgrep exist.
9069         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
9070         * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR, AC_EGREP_CPP):
9071         Likewise.
9072         * lib/autoconf/Makefile.am (check-local): Likewise.
9073         * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Likewise.
9074         * lib/autoconf/types.m4 (commentary only): Likewise.
9075         * lib/autotest/general.m4 (AT_INIT, AT_CHECK): Likewise.
9076         * lib/autotest/Makefile.am (check-local): Likewise.
9077         * lib/m4sugar/Makefile.am (check-local): Likewise.
9078         * tests/atspecific.m4 (AT_CONFIGURE_AC, AT_CHECK_DEFINES): Likewise.
9079         * tests/mktests.sh (egrep): New var; use it instead of plain egrep.
9081         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): New macros.
9082         * doc/autoconf.texi (Particular Programs): Document them.
9083         (Limitations of Usual Tools): Warn that egrep and fgrep may not exist.
9084         * NEWS: Likewise.
9086 2002-05-27  Paul Eggert  <eggert@twinsun.com>
9088         * lib/autoconf/types.m4 (AC_TYPE_MBSTATE_T): New macro.
9089         * NEWS, doc/autoconf.texi (Particular Types): Document it.
9090         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Require it
9091         instead of AC_MBSTATE_T, which never existed.
9093 2002-05-23  Akim Demaille  <akim@epita.fr>
9095         * doc/autoconf.texi (Hosts and Cross-Compilation): Specify the
9096         version of Autoconf that is discussed.
9098 2002-05-22  Paul Eggert  <eggert@twinsun.com>
9100         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove cf77 and cft77
9101         from the default list of compilers to try.  Suggested by
9102         Kate Hedstrom.
9103         * NEWS: Document the above.
9104         * doc/autoconf.texi (Fortran 77 Compiler): Don't suggest cf77.
9106 2002-05-17  Paul Eggert  <eggert@twinsun.com>
9108         * lib/autoconf/types.m4 (AC_CHECK_MEMBER): Work correctly even if
9109         the member is itself an aggregate.  Bug reported by Sergey Poznyakoff.
9110         This improves on an earlier suggestion by H. Peter Anvin.
9112 2002-05-16  Paul Eggert  <eggert@twinsun.com>
9114         AC_FUNC_FNMATCH now tests only for POSIX compatibility.
9115         AC_FUNC_FNMATCH_GNU also tests for GNU extensions.
9116         Both macros now accept an optional source-dir arg.
9117         New macro AC_GNU_SOURCE to define _GNU_SOURCE.
9119         * NEWS: Document this.
9120         * doc/autoconf.texi (Particular Functions, UNIX Variants): Likewise.
9122         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): New macro.
9123         (AC_FUNC_FNMATCH): Use it.  Test only for POSIX conformance,
9124         not for GNU extensions; this undoes part of the 2000-11-03 change,
9125         reverting to 2.13-compatible behavior.
9126         Add new optional argument DIR.
9127         (AC_FUNC_FNMATCH_GNU): New macro.
9129         * lib/autoconf/specific.m4 (AC_GNU_SOURCE): New macro.
9131 2002-05-08  Paul Eggert  <eggert@twinsun.com>
9133         * lib/autoconf/headers.m4 (AC_HEADER_TIOCGWINSZ):
9134         Don't require AC_SYS_POSIX_TERMIOS.  The test is unnecessary,
9135         and it causes a 'test' syntax error if it fails.
9136         Bug reported by Stephen Gildea.
9138         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
9139         If prototypes are supported, use them to check this at compile-time,
9140         instead of trying to check it at run-time.  If we must do a run-time
9141         check, assume that setvbuf is standard when cross-compiling, as
9142         nonstandard setvbuf occurs only on ancient and unlikely hosts.
9143         Bug reported by Paul D. Smith.
9145         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Add optional
9146         argument specifying location of getloadavg.c.  This removes a
9147         FIXME.  This idea was taken from Jim Meyering's implementation in
9148         textutils.
9149         * doc/autoconf.texi (Particular Functions): Document this.
9150         Also, mention HAVE_NLIST_H rather than NLIST_STRUCT, since
9151         that's what the code does; this fixes a bug reported by
9152         Paul D. Smith.
9154 2002-05-03  Akim Demaille  <akim@epita.fr>
9156         * bin/autoreconf.in (autoreconf): Rewrite to use Gettext's
9157         autopoint instead of gettextize.
9158         ($uses_alocal): Rename as...
9159         ($uses_aclocal): this.
9160         * doc/autoconf.texi (autoreconf Invocation): Adjust.
9161         Suggested by Bruno Haible.
9163 2002-05-03  Akim Demaille  <akim@epita.fr>
9165         * lib/m4sugar/m4sugar.m4 (m4_map_sep): New.
9167 2002-04-29  Paul Eggert  <eggert@twinsun.com>
9169         * bin/autoreconf.in (autoreconf): Don't age aclocal.m4's input
9170         files to be 1 second older; just set them to be the same time.
9171         Also, sleep 1 second after the first aclocal, to work around
9172         problems with sub-second time stamps on the input files.
9174 2002-04-29  Thien-Thi Nguyen  <ttn@gnu.org>
9176         * doc/autoconf.texi: Mention "set -e -x" lossage
9177         under node "Limitations of Builtins".
9179 2002-04-29  Akim Demaille  <akim@epita.fr>
9181         * doc/install.texi: Better wording for setting variables when
9182         running configure.
9183         From Christian Cornelssen.
9185 2002-04-29  Akim Demaille  <akim@epita.fr>
9187         * tests/m4sh.at (LINENO): If testsuite itself is rewritten because
9188         of lack of $LINENO support, then the test will compare the $LINENO
9189         in testsuite vs. the lineno in the test file.  This is wrong, of
9190         course.
9191         Be sure to protect it.
9192         Reported by Patrick Welche.
9194 2002-04-25  Akim Demaille  <akim@epita.fr>
9196         * doc/autoconf.texi (Obsolete Macros): Typo.
9197         Reported by Vladimir Volovich.
9199 2002-04-25  Akim Demaille  <akim@epita.fr>
9201         * bin/autoreconf.in (autoreconf): Don't let aclocal.m4 be older
9202         than some of the input files, hence, on the second run of aclocal,
9203         if some of its input are younger, make them older.
9204         Suggested by Paul Eggert.
9206 2002-04-25  Akim Demaille  <akim@epita.fr>
9208         * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
9209         Thanks to Paul Eggert.
9211 2002-04-25  Akim Demaille  <akim@epita.fr>
9213         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
9214         and ac_subst_vars be sh variables containing the list of
9215         AC_SUBST_FILES'ed and AC_SUBST'ed identifiers.  Output them in the
9216         DEFAULT diversion.
9217         (_AC_INIT_PREPARE): Use them to log them.
9218         (_AC_SUBST, _AC_SUBST_SED_PROGRAM): Remove.
9219         (AC_SUBST, AC_SUBST_FILE): Instead of buliding the
9220         _AC_SUBST_SED_PROGRAM, store the list of output files/variables in
9221         _AC_SUBST_FILES and _AC_SUBST_VARS.
9222         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Adjust.
9224 2002-04-24  Akim Demaille  <akim@epita.fr>
9226         * bin/autoreconf.in (autoreconf): Run automake after autoconf and
9227         autoheader, so that automake does not complain about a missing
9228         config.h.in that was to be created.
9230 2002-04-23  Akim Demaille  <akim@epita.fr>
9232         * bin/autoheader.in (parse_args): --warning takes an argument.
9233         Fixes PR/220.
9235 2002-04-22  Peter Eisentraut  <peter_e@gmx.net>
9237         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Remove gmon.out
9238         and bb.out when cleaning up.
9240 2002-04-22  Akim Demaille  <akim@epita.fr>
9242         Version 2.53a.
9244 2002-04-22  Akim Demaille  <akim@epita.fr>
9246         * tests/m4sh.at (LINENO): Fix the Zsh skip pattern.
9248 2002-04-22  Akim Demaille  <akim@epita.fr>
9250         * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
9251         comma.
9252         Reported by Gregory Giannoni.
9254 2002-04-22  Akim Demaille  <akim@epita.fr>
9256         * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
9257         Fixes false failures on Darwin.
9259 2002-04-21  Paul Eggert  <eggert@twinsun.com>
9261         * TODO, bin/autoupdate.in, doc/autoconf.texi,
9262         lib/autoconf/general.m4, lib/autoconf/libs.m4,
9263         lib/autoconf/status.m4, lib/m4sugar/m4sugar.m4, tests/m4sh.at,
9264         tests/tools.at: Minor spelling and grammar fixes.
9266 2002-04-20  Paul Eggert  <eggert@twinsun.com>
9268         * doc/autoconf.texi (Shell Substitutions): Fix typos in yesterday's
9269         ZSH_VERSION fixes.  Bug reported by Raja R Harinath.
9270         * lib/autotest/general.m4 (AT_INIT): Likewise.
9271         * tests/atgeneral.m4 (AT_INIT): Likewise.
9273 2002-04-19  Paul Eggert  <eggert@twinsun.com>
9275         * NEWS, TODO, bin/autom4te.in, bin/autoreconf.in, bin/autoupdate.in,
9276         doc/autoconf.texi, lib/freeze.mk, lib/Autom4te/Struct.pm,
9277         lib/autoconf/autoheader.m4, lib/autoconf/c.m4,
9278         lib/autoconf/functions.m4, lib/autoconf/general.m4,
9279         lib/autoconf/lang.m4, lib/autoconf/libs.m4, lib/autoscan/identifiers,
9280         lib/autotest/general.m4, lib/m4sugar/m4sh.m4, tests/atgeneral.m4,
9281         tests/atspecific.m4, tests/semantics.at, tests/torture.at:
9282         Minor spelling and grammar fixes.
9284         * doc/autoconf.texi: Follow the outline suggested in the GNU
9285         Sample Texts sections of the Texinfo 4.2 manual.  Most
9286         importantly, this makes sure that the copyright notices appear in
9287         all output formats.  You probably need Texinfo 4.2 to generate
9288         the manual now.
9290         Fix some bugs when using "$@" when there might be zero positional
9291         arguments in cases where this matters.
9293         * bin/autoconf.as: Rewrite so that the problem does not come up.
9294         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Likewise.
9295         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
9296         * lib/autotest/general.m4 (AT_INIT): Likewise.
9298         * bin/autoheader.in: Use 'case' statement to work around problem.
9299         * bin/auto4mte.in: Likewise.
9300         * bin/autoreconf.in: Likewise.
9301         * bin/autoscan.in: Likewise.
9302         * bin/autoupdate.in: Likewise.
9303         * bin/ifnames.in: Likewise.
9305         * doc/autoconf.texi (Shell Substitutions): Document the problem.
9307         * lib/autotest/general.m4 (AT_INIT):
9308         Use Zsh alias to work around problem.
9309         * tests/atgeneral.m4 (AT_INIT): Likewise.
9311         * tests/c.at: We can't have zero arguments, so remove workaround
9312         that is not portable to Zsh.
9314 2002-04-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
9316         * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
9317         from aclocal.m4 too.
9319 2002-04-12  Akim Demaille  <akim@epita.fr>
9321         * tests/wrappl.as: New, M4sh precursor of wrappl.in.
9323 2002-04-10  Akim Demaille  <akim@epita.fr>
9325         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Install the Zsh
9326         workaround for ${1+"$@"}.
9327         * doc/autoconf.texi (Shell Substitutions): Explain it.
9328         From Oliver Kiddle and Peter Stephenson.
9330         Have M4sh perform minimal shell sanitizing.
9332         * lib/m4sugar/m4sh.at (AS_SHELL_SANITIZE): Split the `_AS_PREPARE_*'
9333         part into...
9334         (_AS_PREPARE): this new macro.
9335         (AS_PREPARE): New.
9336         (AS_INIT): Invoke AS_SHELL_SANITIZE.
9337         * tests/m4sh.at (AT_DATA_LINENO): Use _AS_PREPARE.
9339         Adjust Autoconf and Autotest.
9341         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Don't invoke
9342         AS_SHELL_SANITIZE, AS_INIT did it, but invoke AS_PREPARE.
9343         * lib/autotest/general.m4 (AT_INIT): Likewise.
9344         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
9345         Invoke _AS_PREPARE (not AS_PREPARE) in addition to
9346         AS_SHELL_SANITIZE.
9348         Use this M4sh to generate Autoconf's shell scripts.
9350         * tests/wrapsh.as: New, precursor of wrapsh.in.
9351         * tests/Makefile.am: Include lib/freeze.mk to get the dependencies
9352         on Autotest and M4sh.
9353         ($(TESTSUITE)): Use $(autotest_m4f_dependencies).
9354         (wrapsh.in): New target.
9355         * bin/autoconf.as: New, precursor of autoconf.in.
9356         (autoconf.in): New target.
9358 2002-04-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
9360         * doc/autoconf.texi (Limitations of Make): Mention the issue
9361         with indented comments in rules.
9363 2002-04-09  Andreas Schwab  <schwab@suse.de>
9365         * lib/autoconf/status.m4 (_AC_SRCPATHS): Handle empty
9366         ac_top_builddir when setting ac_abs_top_builddir.
9368 2002-04-06  Kevin Ryde  <user42@zip.com.au>
9370         * doc/autoconf.texi (Systemology): Add link to Unix V7 online docs.
9371         (Portable Shell): Cross reference to Systemology.
9373 2002-04-05  Akim Demaille  <akim@epita.fr>
9375         * bin/autoreconf.in (autoreconf): Be sure to accumulate the
9376         directories when descending in a SUBDIRS.
9377         Reported by Ezra Peisach.
9379 2002-04-04  Andreas Schwab  <schwab@suse.de>
9381         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
9382         contains no literal separators.
9384 2002-04-03  Akim Demaille  <akim@epita.fr>
9386         * lib/autoconf/status.m4 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER)
9387         (_AC_CONFIG_COMMAND, _AC_CONFIG_LINK): New.
9388         Use dnl, not the KILL diversion.
9389         Extracted from...
9390         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS)
9391         (AC_CONFIG_LINKS): here.
9392         Adjust.
9393         Don't use the KILL diversion, as it kills spurious output, which
9394         results in failures being hidden.
9395         Use m4_defn where appropriate.
9396         (AC_CONFIG_IF_MEMBER): Kill the real bug: a spurious parenthesis
9397         after the second argument.
9398         Use m4_defn.
9399         * lib/autom4te.in (Autoconf, Autotest, M4sh): Don't pass --warning
9400         syntax, as it is provided by M4sugar.
9401         * tests/torture.at (Multiple AC_CONFIG_FILES): New.
9403 2002-04-03  Andreas Schwab  <schwab@suse.de>
9405         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Make sure m4_bregexp is not
9406         expanded if $# <= 2.
9408         * bin/autoreconf.in (autoreconf): Run automake after rerunning
9409         aclocal.
9411 2002-04-03  Akim Demaille  <akim@epita.fr>
9413         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT)
9414         (_AC_COMPILER_EXEEXT_REJECT): New.
9415         Also recognize *.bb and *.bbg as compilation byproducts.
9416         (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT_O)
9417         (_AC_COMPILER_OBJEXT): Use them.
9418         Fixes Debian #138666.
9420 2002-04-02  Peter Eisentraut  <peter_e@gmx.net>
9422         Integrate AC_PROG_CC_STDC into AC_PROG_CC.
9424         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Rename to _AC_PROG_CC_STDC.
9425         AU_DEFUN old name.  Use _AC_COMPILE_IFELSE.
9426         (AC_PROG_CC): Call _AC_PROG_CC_STDC.
9427         (AC_C_INLINE): Do not require AC_PROG_CC_STDC.
9428         (AC_C_CONST): Same.
9429         (AC_C_INLINE): Same.
9430         (AC_C_PROTOTYPES): Same.  Require AC_PROG_CC instead.
9431         * doc/autoconf.texi, NEWS: Document.
9432         * tests/mktests.sh (au_exclude_list): Add AC_PROG_CC_STDC and
9433         AC_C_CROSS.
9435 2002-04-02  Akim Demaille  <akim@epita.fr>
9437         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
9438         _AS_MKDIR_P_PREPARE.
9440 2002-03-28  Kevin Ryde  <user42@zip.com.au>
9442         * lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
9443         to avoid versions of HP C which don't allow that.
9445 2002-03-27  Paul Eggert  <eggert@twinsun.com>
9447         * lib/m4sugar/m4sh.m4 (_AS_BASENAME_PREPARE): New macro.
9448         (AS_SHELL_SANITIZE): Invoke it.
9449         (AS_BASENAME): AS_REQUIRE it, and use $as_basename.
9451 2002-03-26  Akim Demaille  <akim@epita.fr>
9453         * doc/autoconf.texi (Portable Shell): Add pointers to FAQs.
9455 2002-03-26  Akim Demaille  <akim@epita.fr>
9457         * doc/autoconf.texi (Introduction): The GNATS base moved.
9459 2002-03-25  Paul Eggert  <eggert@twinsun.com>
9461         * tests/m4sh.at: Don't rely on "PATH=test:$PATH test-1" working
9462         as POSIX requires, as it doesn't work with Zsh.
9463         * doc/autoconf.texi (Assignments): Document the problem.
9465 2002-03-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
9467         * doc/autoconf.texi (Limitations of Make): Mention more issue
9468         about VPATH, overriding of macros in sub-makes, and handling of
9469         SHELL.
9471 2002-03-21  Paul Eggert  <eggert@twinsun.com>
9473         * doc/autoconf.texi (Here-Documents): Mention Solaris 8 dtksh
9474         problem with here-document buffer boundaries.
9476         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Unset ENV and BASH_ENV
9477         when reinvoking the shell, to work around problems with installers
9478         who put strange things like "cd" commands in their environments.
9480 2002-03-19  Akim Demaille  <akim@epita.fr>
9482         * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/.
9483         From Aaron Ucko.
9485 2002-03-19  Akim Demaille  <akim@epita.fr>
9487         * bin/autoscan.in (scan_file): Specify the location in `&used'
9488         invocations.
9489         From Nicolas Joly.
9491 2002-03-19  Akim Demaille  <akim@epita.fr>
9493         * doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.
9494         From Nishio Futoshi.
9496 2002-03-19  Akim Demaille  <akim@epita.fr>
9498         * lib/m4sugar/m4sugar.m4 (m4_define_default, m4_fst, m4_map): New.
9500 2002-03-18  Paul Eggert  <eggert@twinsun.com>
9502         * doc/autoconf.texi (Programming in M4sh): Add AS_MKDIR_P.
9503         (Limitations of Usual Tools): Add mkdir section.
9505         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): New macro.
9506         (AS_MKDIR_P): Require it.  Use mkdir -p if available, falling
9507         back on AS_DIRNAME to compute prefixes otherwise; this is
9508         roughly what mkinstalldirs does.  That way, we need not have
9509         our own filename disassembler.  The old disassembler did not
9510         work with Solaris 8 dtksh, which is ksh Version M-12/28/93d.
9512         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP):
9513         Create at_test_all by a series of assignments,
9514         not by a single assignment of a long string.  The latter causes ksh
9515         version 11/16/88g to silently misbehave on OpenServer 5.0.6a,
9516         presumably because of a buffer overrun.
9518 2002-03-14  Paul Eggert  <eggert@twinsun.com>
9520         * lib/autotest/general.m4 (at_times_skip):
9521         Renamed from at_times.  Now a boolean.
9522         ksh93 Version M-12/28/93d doesn't like 'x=times; $x'; it
9523         says 'times: not found'.
9525 2002-03-14  Akim Demaille  <akim@epita.fr>
9527         * bin/autoreconf.in (&study_gettextize): New.
9528         (&autoreconf): Handle newest gettextize.
9529         Rerun aclocal if needed.
9530         Suggested by Andreas Schwab.
9532 2002-03-13  Akim Demaille  <akim@epita.fr>
9534         * doc/autoconf.texi (Special Shell Variables): More about IFS.
9536 2002-03-13  Akim Demaille  <akim@epita.fr>
9538         * doc/autoconf.texi (Header Portability): New.
9539         Add information about stdint.h and inttypes.h from Paul Eggert.
9541 2002-03-13  Akim Demaille  <akim@epita.fr>
9543         * doc/autoconf.texi (Limitations of Usual Tools): Some about `cp
9544         -p'.
9545         From Bob Proulx.
9547 2002-03-12  Akim Demaille  <akim@epita.fr>
9549         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): AS_REQUIRE, not
9550         m4_require.
9552 2002-03-11  Andreas Schwab  <schwab@suse.de>
9554         * configure.ac: Explicitly check for EMACS since AM_PATH_LISPDIR
9555         does not do it if --with-lispdir is given.
9557 2002-03-08  Akim Demaille  <akim@epita.fr>
9559         Version 2.53.
9561 2002-03-08  Akim Demaille  <akim@epita.fr>
9563         * doc/autoconf.texi (Subdirectories): Clarify that the
9564         subdirectory should exist.
9566 2002-03-08  Akim Demaille  <akim@epita.fr>
9568         * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
9570 2002-03-08  Akim Demaille  <akim@epita.fr>
9572         * bin/autom4te.in (&handle_m4): Do not foreach with `$_' as it
9573         aliases the actual variables, and modifications of the former
9574         affect the latter.
9576 2002-03-08  Akim Demaille  <akim@epita.fr>
9578         * bin/autom4te.in (&handle_m4): Protect us from corrupted file
9579         because of C-c: have m4 output in tmp files, then mv them.
9581 2002-03-08  Akim Demaille  <akim@epita.fr>
9583         * bin/autoconf.in, bin/autoheader.in, bin/autom4te.in,
9584         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
9585         * bin/ifnames.in: Copyright update.
9587 2002-03-08  Akim Demaille  <akim@epita.fr>
9589         * doc/autoconf.texi (Invoking autom4te): New.
9591 2002-03-05  Akim Demaille  <akim@epita.fr>
9593         * doc/autoconf.texi (Specifying Names): Clarification suggested by
9594         Kevin Ryde.
9596 2002-03-05  Akim Demaille  <akim@epita.fr>
9598         Version 2.52i.
9600 2002-03-04  Akim Demaille  <akim@epita.fr>
9602         * doc/autoconf.texi (AC_LIBOBJ vs. LIBOBJS): New.
9603         * lib/autoconf/general.m4 (AC_INIT): More informative error
9604         message for LIBOBJ.
9606 2002-03-04  Akim Demaille  <akim@epita.fr>
9608         * lib/freeze.mk ($(build_libdir)/m4sugar/version.m4): New, for
9609         parallel builds.
9611 2002-03-04  Akim Demaille  <akim@epita.fr>
9613         * doc/autoconf.texi (Transforming Names): Equality between target
9614         and host is irrelevant.
9615         (Specifying Names, Canonicalizing): Remove all references to the
9616         backward compatibility hooks.  Rather, collect them all into...
9617         (Hosts and Cross-Compilation): this new section.
9618         * doc/install.texi (System Type): Ditto.
9619         * lib/autoconf/general.m4 (AC_CANONICAL_HOST): Explicitly state
9620         that `--host' implies cross-compilation.
9622 2002-03-04  Akim Demaille  <akim@epita.fr>
9624         * doc/autoconf.texi (Evaluation Macros): New.
9625         * lib/m4sugar/m4sugar.m4 (m4_lquote): Remove, it is totally
9626         useless.
9627         (_m4_foreach): Define the variant with immediate evaluation so
9628         that it contains exactly the items, not an expression which
9629         evaluation is the current item.
9630         (m4_re_string, m4_re_word): Don't over quote them.
9632 2002-03-04  Akim Demaille  <akim@epita.fr>
9634         Instead of having stacking `shift's evaluated at the end, let
9635         `foreach' loops immediately evaluate them.
9637         * lib/m4sugar/m4sugar.m4 (m4_quote, m4_dquote): Use $@ rather than
9638         $*.  This is the n-th time I change my mind, but hopefully this is
9639         the last...
9640         (m4_lquote): New.
9641         (m4_text_wrap): Use m4_foreach, which is finally correct _and_
9642         efficient.
9643         (m4_foreach_quoted, m4_car_quoted, _m4_foreach_quoted): Remove, as
9644         it was only a hack for m4_text_wrap.
9645         (m4_car2): Remove, replaced by...
9646         (m4_cdr): New.
9647         (_m4_foreach): Adjust.
9648         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust, and use
9649         m4_bpatsubst for clarification.
9651 2002-03-04  Akim Demaille  <akim@epita.fr>
9653         * doc/autoconf.texi (Changequote is Evil): New.
9655 2002-03-03  Kevin Ryde  <user42@zip.com.au>
9657         * doc/autoconf.texi (Portable Shell): Mention 32-byte #! length limit
9658         on old systems like SunOS.
9660 2002-03-01  Peter Eisentraut  <peter_e@gmx.net>
9662         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
9663         lib/autoconf/functions.m4, lib/autoconf/general.m4,
9664         lib/autoconf/headers.m4, lib/autoconf/lang.m4,
9665         lib/autoconf/programs.m4, lib/autoconf/status.m4: Improve spelling
9666         of messages.
9668 2002-02-28  Akim Demaille  <akim@epita.fr>
9670         * lib/autotest/general.m4 (AT_INIT): Suggest a title to the
9671         message to be sent.
9673 2002-02-28  Kevin Ryde  <user42@zip.com.au>
9675         * doc/autoconf.texi (Function Portability): Add va_copy and va_list.
9677 2002-02-25  Akim Demaille  <akim@epita.fr>
9679         * lib/autoconf/functions.m4 (AC_FUNC_SETPGRP): Fix the test.
9680         From Akinori Musha.
9682 2002-02-13  Alexandre Duret-Lutz  <duret_g@epita.fr>
9684         * lib/Autom4te/XFile.pm (getline, getlines): New functions,
9685         translate \r\n to \n.
9687 2002-02-07  Akim Demaille  <akim@epita.fr>
9689         Version 2.52h.
9691 2002-02-07  Akim Demaille  <akim@epita.fr>
9693         Fix Autoconf PR/209.
9694         Also reported by Frank Denis.
9696         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Don't over quote.
9698 2002-02-07  Akim Demaille  <akim@epita.fr>
9700         Fix Autoconf PR/207:
9701         AC_PREFIX_PROGRAM fails with dashed program names
9703         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Just use a fresh
9704         variable when looking for the prefix program.
9705         Now it also works for shell variables.
9707 2002-02-07  Akim Demaille  <akim@epita.fr>
9709         * doc/autoconf.texi (Limitations of Builtins): More about
9710         case/esac.
9712 2002-02-06  Akim Demaille  <akim@epita.fr>
9714         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Don't output empty
9715         case/esac, some shells don't support it.
9716         Reported by Zack Weinberg.
9717         * tests/torture.at (AC_CONFIG_COMMANDS with empty commands): New.
9719 2002-02-06  Akim Demaille  <akim@epita.fr>
9721         * lib/autotest/general.m4 (AT_INIT): When handling --keywords, be
9722         sure not to introduce newlines in at_groups.
9723         * lib/autotest/Makefile.am (autotest.m4f): Typo.
9725 2002-02-06  Akim Demaille  <akim@epita.fr>
9727         * tests/torture.at (Configuring subdirectories): Skip if aclocal
9728         is not available.
9730 2002-02-05  Paul Eggert  <eggert@twinsun.com>
9732         * doc/autoconf.texi (Specific Compiler Characteristics):
9733         Describe HP-UX cc bug workaround more accurately.
9734         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast to long,
9735         not unsigned long.
9736         * tests/semantics.at (AC_CHECK_SIZEOF): Check non-GCC
9737         cross-compilers, too.  This undoes some of the most recent change
9738         to this file.
9740 2002-02-05  Akim Demaille  <akim@epita.fr>
9742         * tests/Makefile.am (check_SCRIPTS): Use it, instead of WRAPPERS,
9743         to make sure they are up to date when `check' is run.
9745 2002-02-05  Akim Demaille  <akim@epita.fr>
9747         * doc/autoconf.texi (Making testsuite Scripts): Document
9748         package.m4.
9750 2002-02-05  Akim Demaille  <akim@epita.fr>
9752         * lib/freeze.mk: New.
9754 2002-02-05  Akim Demaille  <akim@epita.fr>
9756         Implement `autom4te --freeze'.
9758         * bin/autom4te.in (&freeze): New.
9759         * lib/autoconf/autoconf.m4, lib/autotest/general.m4,
9760         * lib/m4sugar/m4sh.m4: Don't include files given by autom4te.
9762 2002-02-05  Akim Demaille  <akim@epita.fr>
9764         * bin/autom4te.in (&parse_args): Implement `frozen files are
9765         optional are the sum of the previous files on the command line'.
9766         Also, pass `--reload-state=' on them, so...
9767         (handle_m4): don't.
9768         * lib/autom4te.in (Autotest, Autoconf): Rely on M4sh.
9769         (M4sh): Rely on M4sugar.
9770         (Autotest, M4sh, M4sugar): Use frozen files.
9772 2002-01-31  Akim Demaille  <akim@epita.fr>
9774         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Accept $4.
9775         * doc/autoconf.texi (Initializing configure): Adjust.
9777 2002-01-30  Akim Demaille  <akim@epita.fr>
9779         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
9780         alphanumeric to `-' instead of `_'.
9782 2002-01-30  Akim Demaille  <akim@epita.fr>
9784         * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
9785         for plain code, the other for cross-compilation code.  The latter
9786         is now run with GCC only.
9787         * doc/autoconf.texi (Compilers and Preprocessors): New.
9789 2002-01-30  Akim Demaille  <akim@epita.fr>
9791         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Support pre-defined
9792         values.
9793         * doc/autoconf.texi (Initializing configure): Explain how to
9794         change AC_INIT default values.
9796 2002-01-29  Akim Demaille  <akim@epita.fr>
9798         * tests/torture.at (Configuring subdirectories): Use configure.in,
9799         so that aclocal 1.4 works.
9800         Reported by Alexandre Duret-Lutz and Larry Schmitt.
9802 2002-01-28  Akim Demaille  <akim@epita.fr>
9804         * doc/autoconf.texi (Writing testsuite.at): AT_CLEANUP no longer
9805         needs an argument.
9807 2002-01-28  Akim Demaille  <akim@epita.fr>
9809         * lib/autotest/general.m4 (AT_INIT): Don't be ridiculous: adjust
9810         AUTOTEST_PATH *after* it was set.
9811         Don't put `.' in the PATH: the user should be precise and `./' if
9812         needed.  In addition, given that the test suite does some `cd', if
9813         `.' is in the path, the `tested programs' sections will report
9814         programs found in the test suite's directory, while during the
9815         tests (performed in their own directory), these programs are no
9816         longer visible.  In other words, the results is confusing and
9817         useless.
9818         * tests/m4sh.at: Adjust: don't rely on `.' being in the PATH.
9820 2002-01-24  Akim Demaille  <akim@epita.fr>
9822         Version 2.52g.
9824 2002-01-24  Akim Demaille  <akim@epita.fr>
9826         * bin/autoheader.in, bin/autoconf.in, bin/autoscan.in,
9827         * doc/autoconf.texi: Finally add Akim as an author.
9829 2002-01-24  Akim Demaille  <akim@epita.fr>
9831         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Use PATH_SEPARATOR.
9832         (_AS_PATH_SEPARATOR_PREPARE): Don't expect $SHELL to be
9833         Bourne. Use /bin/sh.
9834         From Andreas Buening.
9836 2002-01-24  Akim Demaille  <akim@epita.fr>
9838         * config/config.guess, config/config.sub, config/texinfo.tex:
9839         Update from masters.
9841 2002-01-24  Akim Demaille  <akim@epita.fr>
9843         * Makefile.am (AUTOMAKE_OPTIONS): 1.5b.
9844         * config/auxdir.m4, config/cond.m4, config/depend.m4,
9845         * config/init.m4, config/install-sh.m4, config/lispdir.m4,
9846         * config/missing.m4, config/sanity.m4, config/select.m4,
9847         * config/strip.m4: Remove, to ease sync'ing with any version of
9848         Automake.
9850 2002-01-24  Akim Demaille  <akim@epita.fr>
9852         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS)
9853         (_AC_INIT_PREPARE): Support -n as --no-create, as documented.
9854         Reported by Geir Ove Myhr.
9856 2002-01-21  Akim Demaille  <akim@epita.fr>
9858         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc.
9860 2002-01-21  Akim Demaille  <akim@epita.fr>
9862         * lib/Autom4te/General.pm (getopt): Use a more GNUish error
9863         message on invalid options.
9864         * bin/autom4te.in (parse_args): Don't use
9865         Autoconf::General::getopt with non valid options.
9867 2002-01-17  Jim Meyering  <meyering@lucent.com>
9869         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Initialize
9870         $ac_cv_exeext so we don't use an old, invalid, cached value.
9872 2002-01-11  Akim Demaille  <akim@epita.fr>
9874         * lib/autoconf/functions.m4 (AC_FUNC_STRNLEN): New, from Jim
9875         Meyering.
9876         * doc/autoconf.texi (Function Portability): Document the strnlen
9877         limitation.
9878         (Particular Functions): Document AC_FUNC_STRNLEN.
9879         * lib/autoscan/functions: Adjust.
9881 2002-01-06  Akim Demaille  <akim@epita.fr>
9883         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't create
9884         package.m4, since is really depends upon configure.ac, not
9885         configure.
9886         * doc/autoconf.texi (testsuite Scripts): Adjust.
9887         * tests/Makefile.am (package.m4): New.
9888         EXTRA_DIST it since its a source.
9890 2002-01-06  Akim Demaille  <akim@epita.fr>
9892         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Move the AC_SUBST
9893         of PACKAGE_NAME, PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING,
9894         and PACKAGE_BUGREPORT from here...
9895         (_AC_INIT_DEFAULTS): to here, since it is unrelated to the
9896         arguments.
9897         (_AC_INIT_PREPARE): AC_DEFINE these symbols.
9898         * lib/autotest/general.m4: Use AT_PACKAGE_*, not PACKAGE_*.
9899         (AT_INIT): No longer catch `^PACKAGE_(BUGREPORT|STRING)$'.
9900         * tests/tools.at (autoheader): Adjust.
9901         * tests/atspecific.m4 (AT_CHECK_DEFINES): Adjust.
9903 2002-01-06  Akim Demaille  <akim@epita.fr>
9905         * bin/autoscan.in (scan_file): Use `&used'.
9907 2002-01-03  Akim Demaille  <akim@epita.fr>
9909         * doc/autoconf.texi (Output): Improved wording regarding use of
9910         AC_OUTPUT.
9911         From Olly Betts.
9913 2001-12-18  Kevin Ryde  <user42@zip.com.au>
9915         * doc/autoconf.texi (Function Portability): Add notes on sscanf
9916         sometimes needing writable input.
9918 2001-12-17  Jim Meyering  <meyering@lucent.com>
9920         * doc/autoconf.texi (New Macros): Tweak wording.
9922 2001-12-14  Akim Demaille  <akim@epita.fr>
9924         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): We cleaning up the
9925         trailing files, don't apply `-rf' to files which might not be
9926         created by configure (core, core.*, and *.core), but just `rm -f'.
9927         Suggested by Jonathan Kamens.
9929 2001-12-14  Aaron M. Ucko  <amu@alum.mit.edu>
9931         * lib/autoconf/general.m4: Avoid duplicates in `$ac_configure_args'.
9933 2001-12-14  Akim Demaille  <akim@epita.fr>
9935         * Makefile.am (MAINTAINERCLEANFILES): Remove configure.
9937 2001-12-13  Peter Eisentraut  <peter_e@gmx.net>
9939         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename buildpath to
9940         abs_builddir, top_buildpath to abs_top_builddir, srcpath to
9941         abs_srcdir, top_srcpath to abs_top_srcdir.
9942         (_AC_OUTPUT_FILES): Adjust.
9943         * NEWS, doc/autoconf.texi, lib/autoconf/autotest.m4,
9944         * tests/atspecific.m4, tests/autoreconf.in, tests/tools.at,
9945         * tests/wrappl.in, tests/wrapsh.in: Adjust.
9947 2001-12-12  Steven G. Johnson  <stevenj@alum.mit.edu>
9949         * lib/autoconf/fortran.m4 (_AC_PROG_F77_V_OUTPUT): Fix failed
9950         C/Fortran linking on HP/UX, by extracting the Fortran library
9951         search path from the LPATH line in the $F77 -v output.
9953 2001-12-12  Kevin Ryde  <user42@zip.com.au>
9955         * doc/autoconf.texi (File Descriptors): Use a clearer layout for the
9956         forbidden file descriptors table.
9958 2001-11-26  Akim Demaille  <akim@epita.fr>
9960         * bin/autoscan.in (%c_keywords): Build it at top level.
9961         Map to 1 in order to simplify its uses.
9963 2001-11-26  Akim Demaille  <akim@epita.fr>
9965         * bin/autoscan.in (&scan_c_file, &scan_sh_file, &scan_makefile):
9966         Remove $filepath, useless.
9967         (&scan_makefile): Don't remove the $(FOO), ${FOO} and @FOO@
9968         variables, they are really part of the tokens.
9969         Split the input line on spaces and then look for tokens.
9970         Now autoscan ceases to ask for AC_PROG_LEX for the package Bison
9971         because of `lex$U.$(OBJEXT)'.
9972         (&scan_files): Use "@list" instead of join.
9973         * doc/Makefile.am (CLEANFILES): Add *.fns.
9975 2001-11-26  Akim Demaille  <akim@epita.fr>
9977         * tests/autoreconf.in, tests/autom4te.in, tests/autoupdate.in:
9978         Remove, replaced by...
9979         * tests/wrappl.in: Be common for all the Perl executables.
9980         In particular autoscan and autoheader want -I.
9981         * configure.ac: Adjust.
9982         * lib/autoscan/headers: errno.h is portable.
9984 2001-11-26  Akim Demaille  <akim@epita.fr>
9986         * bin/autoscan.in (used): New.
9987         Use it.
9989 2001-11-26  Akim Demaille  <akim@epita.fr>
9991         * bin/autoscan.in (&scan_c_file): Better parsing of CPP
9992         directives.
9993         (&scan_sh_file): Remove a duplicate pattern.
9994         (&check_configure_ac): Use long options.
9995         * lib/autoscan/headers (alloca.h): Check with AC_FUNC_ALLOCA.
9997 2001-11-26  Akim Demaille  <akim@epita.fr>
9999         * bin/autoscan.in (scan_c_file): Fix the handling of C comments.
10000         Before, having a line containing the opening of a multi line
10001         comment made the whole line be ignored.
10003 2001-11-26  Akim Demaille  <akim@epita.fr>
10005         * doc/autoconf.texi (Using an Autotest Test Suite): New.
10006         (testsuite Scripts): Be one of its subsection.
10007         (Autotest Logs): New.
10009 2001-11-26  Akim Demaille  <akim@epita.fr>
10011         Test groups are now run two directories deeper.
10013         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Replace srcdir,
10014         top_srcdir and top_builddir with at_srcdir, at_top_srcdir and
10015         at_top_builddir.
10016         * lib/autotest/general.m4 (AT_INIT): Compute srcdir,
10017         top_srcdir, builddir and top_builddir.
10018         Use `at_*dir' relatively to the directory containing the
10019         suite, use `*dir' when relatively to the current group dir.
10021 2001-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
10023         * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
10024         lib/autoconf/functions.m4, lib/autoconf/headers.m4,
10025         tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
10026         spelling errors.
10028 2001-11-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
10030         * doc/autoconf.texi (Using System Type): Add an example of `case
10031         $host' usage so people quit using `case $target' everywhere.
10033 2001-11-22  Akim Demaille  <akim@epita.fr>
10035         * doc/autoconf.texi (Installation Directory Variables): Englishoes
10036         spotted by Jim Meyering.
10038 2001-11-16  Paul Eggert  <eggert@twinsun.com>
10040         This patch implements a `long double' suggestion by Oliver Kiddle.
10042         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Make the array
10043         static, to catch errors if the value isn't known at compile-time
10044         and the compiler supports dynamic arrays.  Change its name from
10045         `_array_' to `test_array' to avoid potential name clashes.
10046         (AC_C_LONG_DOUBLE): Make it a compile-time test, not a run-time
10047         test.  Do not define HAVE_LONG_DOUBLE if `long double' is no
10048         better than double.  Catch a bug in GCC 2.95.2 x86.
10049         * doc/autoconf.texi (C Compiler): Document the above.
10050         * NEWS: Likewise.
10052 2001-11-13  Akim Demaille  <akim@epita.fr>
10054         * tests/m4sh.at (LINENO): Protect from autom4te's substitution by
10055         hand.
10056         * tests/tools.at: Don't protect dnl, AT_DATA_M4SH does.
10058 2001-11-13  Akim Demaille  <akim@epita.fr>
10060         * lib/autotest/general.m4 (AT_INIT): After having run the test
10061         group, go back to the initial directory, not to at_suite_dir.
10063 2001-11-13  Akim Demaille  <akim@epita.fr>
10065         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH)
10066         (AT_DATA_AUTOCONF):  Also protect @&t@ from autom4te.
10067         (AT_CHECK_AUTOCONF, AT_CHECK_AUTOHEADER): Pass no --include
10068         option.
10069         (AT_CHECK_CONFIGURE): Use absolute paths.
10070         (_AT_CHECK_AC_MACRO): Create aclocal.m4 with AC_STATE_SAVE in it.
10071         The problem is still the old one: there is no means in M4 (that I
10072         know about) to create a defining macro, because there is no means
10073         to create `$1' etc., therefore, the defining macro ``swallows''
10074         all the arguments meant to the defined macro.
10076 2001-11-13  Akim Demaille  <akim@epita.fr>
10078         * tests/atspecific.m4 (AT_DATA_AUTOCONF): New.
10079         (AT_CONFIGURE_AC): Output the definition of AC_STATE_SAVE in
10080         configure.ac.
10081         * tests/aclocal.m4: Remove, as it is no longer used.
10083 2001-11-13  Akim Demaille  <akim@epita.fr>
10085         * lib/autotest/general.m4: Change `tests?' into `groups?' in
10086         variable names when referring to a single test group, or to
10087         `suite' when referring to the whole test suite.
10088         `at_last_test' is removed: m4 compute at_format itself.
10089         (at_stdout, at_stder1, at_stderr): New variables.
10090         (AT_CHECK): Use them.
10092 2001-11-13  Akim Demaille  <akim@epita.fr>
10094         * lib/autotest/general.m4 (AT_INIT): Be sure to put `.', relative,
10095         in PATH.
10096         Create `testsuite.dir/003/run' instead of `testsuite.003'.
10097         Do it as soon as a test fails, don't wait till the end of the test
10098         suite.
10099         Don't remove $as_me.[0-9]*, since these files no longer exist.
10101 2001-11-13  Akim Demaille  <akim@epita.fr>
10103         * tests/tools.at: Use absolute paths, since we are no longer run
10104         in place.
10106 2001-11-13  Akim Demaille  <akim@epita.fr>
10108         Now that tests are running in their own private dir, there is no
10109         need to list the files to remove at the end of tests groups.
10111         * lib/autotest/general.m4 (_AT_CLEANUP_FILE, AT_CLEANUP_FILES):
10112         (AT_data_files, at_data_files): Remove.
10113         (AT_CLEANUP, AT_DATA): Simplify.
10114         (AT_INIT): Adjust.
10115         Remove the group dir if !debug && !failed.
10116         * tests/atspecific.m4: Adjust.
10118 2001-11-13  Akim Demaille  <akim@epita.fr>
10120         Start a new layout for Autotest: `testsuite' creates
10121         `testsuite.dir' in which the at-check-line etc. files are to be
10122         found, and `testsuite.dir/003' where the test group 3 is run.
10124         * lib/autotest/general.m4 (AT_INIT): at_tests_dir,
10125         at_check_line_file, at_format, at_test_normalized, at_group_dir
10126         are new variables.
10127         Create the directories.
10128         Use absolute paths for at- files.
10129         (AT_CHECK): Adjust.
10131 2001-11-11  Michael Matz  <matz@kde.org>
10133         * m4sugar.m4 (_m4_foreach): Make it linear instead quadratic.
10134         (m4_car2): New.
10135         (m4_car): Properly quote arguments.
10137 2001-11-13  Akim Demaille  <akim@epita.fr>
10139         * tests/aclocal.m4 (AC_STATE_SAVE): s/LIBOBJS/LIB@&t@OBJS/ to cope
10140         with stricter rules on LIBOBJS.
10142 2001-11-12  Paul Eggert  <eggert@twinsun.com>
10144         * lib/autoconf/c.m4 (AC_C_PROTOTYPES): Define __PROTOTYPES too.
10145         * doc/autoconf.texi (C Compiler): AC_C_PROTOTYPES now defines
10146         __PROTOTYPES too.
10148 2001-11-12  Akim Demaille  <akim@epita.fr>
10150         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Use AC_CHECK_FUNCS.
10152 2001-11-12  Akim Demaille  <akim@epita.fr>
10154         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
10155         * lib/autoconf/functions.m4, lib/autoconf/general.m4,
10156         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
10157         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
10158         * lib/autoconf/types.m4: When invoking AC_DEFINE and friends,
10159         specify to what the macro should be defined (typically to 1).
10161 2001-11-12  Akim Demaille  <akim@epita.fr>
10163         * lib/autoconf/functions.m4 (AC_FUNC_STRTOD): AC_SUBST POW_LIB.
10164         From Jim Meyering.
10166 2001-11-12  Akim Demaille  <akim@epita.fr>
10168         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
10169         AC_TRY_EVAL to run $LEX, not AC_TRY_COMMAND.  This validates the
10170         definition used by Automake where LEX is +/- "${missing} lex" and
10171         `missing' itself contains variables.
10173 2001-11-12  Akim Demaille  <akim@epita.fr>
10175         * lib/autotest/general.m4 (AT_INIT): Push KILL at the end.
10176         Now that M4sh pushes BODY, the comments were output at the end of
10177         the test suites.
10179 2001-11-08  Akim Demaille  <akim@epita.fr>
10181         * bin/autoreconf.in (&autoreconf): Run aclocal before tracing, so
10182         that we can trace macros from aclocal.m4.
10183         Trace AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL, since the latter is
10184         obsoleted, and redirect to the former anyway.
10185         Reported by Ralf Corsepius.
10187 2001-11-08  Akim Demaille  <akim@epita.fr>
10189         * bin/autoreconf.in (&autoreconf): AC_CONFIG_SUBIDRS are to be
10190         processed only if present.
10191         * tests/torture.at (Configuring subdirectories): Use autoreconf
10192         instead of successive calls to autoconf.
10193         Add a nonexistent subdirectory to exercise the patch above.
10194         Reported by Ralf Corsepius.
10196 2001-11-08  Kevin Ryde  <user42@zip.com.au>
10198         * doc/autoconf.texi (Limitations of Usual Tools): Note HP-UX cc
10199         doesn't accept .S files.
10201 2001-11-07  Akim Demaille  <akim@epita.fr>
10203         * lib/m4sugar/m4sugar.m4 (m4_pattern_forbid): Accepts $2.
10204         * lib/autoconf/general.m4 (AC_INTI): Forbid LIBOBJS.
10205         (_AC_LIBOBJ): s/LIBOBJS/LIB@&t@OBJS/.
10206         * bin/autom4te.in (warn_forbidden): New.
10207         (handle_output): Use it.
10208         Read m4_pattern_forbid with messages.
10210 2001-11-05  Akim Demaille  <akim@epita.fr>
10212         * bin/autom4te.in (--normalize): Remove.
10213         * lib/autom4te.in: Adjust.
10215 2001-11-05  Akim Demaille  <akim@epita.fr>
10217         * tests/Makefile.am (testsuite): Rename this target as...
10218         ($(TESTSUITE)): this.
10219         From Nicolas Joly.
10221 2001-11-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
10223         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): When removing
10224         the --prefix option, also remove it's argument.
10226 2001-11-05  Akim Demaille  <akim@epita.fr>
10228         * doc/autoconf.texi (testsuite Invocation): Update.
10229         (Writing testsuite.at): Update.
10231 2001-11-03  Akim Demaille  <akim@epita.fr>
10233         * doc/autoconf.texi: s/@code/@command/ where appropriate.
10235 2001-11-03  Akim Demaille  <akim@epita.fr>
10237         * lib/Autom4te/General.pm: (&catfile, &canonfile)
10238         (&file_name_is_absolute): New, wrappers around routines from
10239         File::Spec.
10240         Use and export them.
10241         (&find_configure_ac): Optionally take a directory where to look at.
10242         * bin/autoreconf.in (&parse_args): Trim the configure.ac part of
10243         the arguments.
10244         Default @ARGV to `.', not find_configure_ac.
10245         (&autoreconf): Argument is a directory.
10246         Trace AC_CONFIG_SUBDIRS and schedule the subdirs for autoreconf'ing.
10247         * doc/autoconf.texi (autoreconf Invocation): Update.
10249 2001-11-03  Akim Demaille  <akim@epita.fr>
10251         * lib/Autom4te/General.pm (@export_vars, @export_subs)
10252         (@export_forward_subs): New.
10253         Add basename, dirname, and fileparse.
10254         (@EXPORT): Adjust.
10255         * bin/autoreconf.in (&autoreconf): Fix call to fileparse.
10256         Don't look for aclocal flags if we already know aclocal is not
10257         used.
10258         Move aclocal.m4t only if it exists.
10259         Reported by Ezra Peisach.
10261 2001-11-03  Akim Demaille  <akim@epita.fr>
10263         * bin/autoreconf.in (&parse_args): Work only on the configure.ac
10264         passed on command line, defaulting to ./configure.ac if present.
10265         (&maybe_autoreconf, File::Find): Remove, unused.
10266         (&autoreconf): If autoconf is not used, don't try to trace.
10268 2001-11-02  Akim Demaille  <akim@epita.fr>
10270         * configure.ac: Bump to 2.52g.
10272 2001-11-02  Akim Demaille  <akim@epita.fr>
10274         Version 2.52f.
10276 2001-11-02  Akim Demaille  <akim@epita.fr>
10278         * config/config.guess, config/config.sub, doc/standards.texi:
10279         * config/lispdir.m4: Update from masters.
10280         * configure.ac: Bump to 2.52f.
10282 2001-11-02  Akim Demaille  <akim@epita.fr>
10284         * bin/autoreconf.in (&autoreconf): Set `$aclocal_flags' to ''.
10285         Don't run aclocal when aclocal.m4 is not from aclocal.
10286         From Ezra Peisach.
10287         Don't run libtoolize and gettextize if --install is not given.
10289 2001-11-01  Paul Eggert  <eggert@twinsun.com>
10291         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): _AS_CR_PREPARE needs to
10292         be invoked before _AS_LINENO_PREPARE.
10293         (_AS_LINENO_PREPARE): Use as_cr_digits and as_cr_alnum rather
10294         than character ranges.
10296         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix NLS before
10297         invoking AS_BASENAME.  Set the locale variables to 'C' if
10298         possible, as POSIX requires this to get the traditional
10299         behavior.
10300         * doc/autoconf.texi (Special Shell Variables): Describe the above.
10302 2001-10-31  Paul Eggert  <eggert@twinsun.com>
10304         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Do not surround body
10305         with {}, as that triggers a bug in Bash 2.05.
10307         (_AS_LINENO_PREPARE): Use Sed rather than
10308         Awk.  Fix the sed prepass to work even if there are multiple
10309         instances of $LINENO on the same line.  Do not substitute for
10310         other variables like $LINENOT.  Do not check file dates; such a
10311         check is unreliable on sufficiently fast machines, and removing
10312         the check makes the code simpler and more reliable.  Check for
10313         output and chmod failures.
10315         * doc/autoconf.texi (Special Shell Variables): Document
10316         the above.
10318 2001-10-31  Akim Demaille  <akim@epita.fr>
10320         * tests/Makefile.am (atconfig): Remove this target, Automake
10321         handles it now.
10323 2001-10-31  Akim Demaille  <akim@epita.fr>
10325         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Do not
10326         AC_CONFIG_FILES(atlocal) as it means a file atlocal.in *must* be
10327         provided, while it is optional.
10328         * configure.ac: Adjust.
10330 2001-10-26  Paul Eggert  <eggert@twinsun.com>
10332         * NEWS, README, configure.ac, lib/Autom4te/General.pm,
10333           lib/Autom4te/Struct.pm:
10334         Require Perl 5.005_03 instead of just 5.005, as some tests fail
10335         with 5.005_02.
10337         * doc/autoconf.texi (Special Shell Variables): Document some
10338         more LINENO gotchas, particularly with respect to the Awk+Sed hack.
10340         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): New macro.
10341         (_AS_LINENO_PREPARE): Use it instead of shell eval, since
10342         eval $LINENO is not portable in practice.
10344 2001-10-24  Akim Demaille  <akim@epita.fr>
10346         * lib/Autom4te/General.pm (backname): New.
10348 2001-10-24  Akim Demaille  <akim@epita.fr>
10350         * m4/: Remove, merged into...
10351         * config/: here.
10353 2001-10-23  Tim Van Holder  <tim.van.holder@pandora.be>
10355         * doc/autoconf.texi (Shellology): Mention the problems with bash
10356         2.05's use of ANSI quoting in its `set' builtin.
10358 2001-10-22  Paul Eggert  <eggert@twinsun.com>
10360         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R):
10361         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
10362         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
10363         POSIX decided to standardize on the int flavor of strerror_r.
10364         Always do char* test, as there's no reason not to.
10365         Assign to a char* var, to catch strerror_r that returns int*.
10367         * doc/autoconf.texi (Particular Functions):
10368         Document the above changes.  Also, document the fact that
10369         AC_FUNC_STRERROR_R defines HAVE_DECL_STRERROR_R.
10371         * NEWS: Mention HAVE_WORKING_STRERROR_R -> STRERROR_R_CHAR_P.
10373 2001-10-20  Akim Demaille  <akim@epita.fr>
10375         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): The name of
10376         the executable was missing from the log.
10378 2001-10-20  Akim Demaille  <akim@epita.fr>
10380         * lib/Autom4te/General.pm (&update_file): If destination is
10381         unchanged, remove the source.
10382         (&up_to_date_p): Don't be verbose, be debug.
10383         * bin/autoreconf.in: No longer support --m4dir.
10384         (&autoreconf): Display the full path of the configure.ac we are
10385         studying.
10386         Trace it only once.
10387         Be sure to honor --force with gettextize.
10388         Always run aclocal.
10389         * doc/autoconf.texi: Adjust.
10391 2001-10-20  Akim Demaille  <akim@epita.fr>
10393         * bin/autoheader.in ($localdir, $m4, $SIMPLE_BACKUP_SUFFIX):
10394         Remove, dead.
10395         * bin/autoreconf.in (&autoreconf): Do not run gettextize when
10396         `intl' is already present, as it refuses unless --force.
10397         (&parse_args): Use -I, --include instead of the old Autoconf
10398         options.
10399         ($localdir, $autoconf_dir): Remove.
10400         (@include): New.
10401         (&maybe_autoreconf): New, to preserve $_ for File::Find.
10403 2001-10-19  Jens Petersen  <petersen@redhat.com>
10405         * lib/autoconf/programs.m4 (AC_PROG_AWK): Prefer gawk to mawk.
10406         * doc/autoconf.texi (Particular Programs): Likewise.
10408 2001-10-19  Akim Demaille  <akim@epita.fr>
10410         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Name the generated
10411         file in @configure_input@.
10412         Don't mention `automatically' in addition to `generated'.
10413         * tests/torture.at (#define header templates): Adjust.
10415 2001-10-19  Akim Demaille  <akim@epita.fr>
10417         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
10418         comment, explain how to install automatic mode selection.
10419         From Russ Allbery.
10421 2001-10-19  Ezra Peisach  <epeisach@zif.mit.edu>
10423         * bin/autoreconf.in (autoreconf): Display the path to the
10424         configure.ac being studied.
10426 2001-10-18  Paul Eggert  <eggert@twinsun.com>
10428         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast sizeof to unsigned
10429         long, to work around a bug in the HP C compiler version HP92453-01
10430         B.11.11.23709.GP.
10432         * lib/m4sugar/m4sh.m4 (AS_DIRNAME): Use 'dirname' if that works.
10433         (AS_BASENAME_EXPR): New macro.
10434         (AS_BASENAME_SED): Do not assume GNU sed semantics.
10435         (AS_BASENAME): Use 'basename' if that works; then try 'expr';
10436         and fall back on 'sed' only if the other two fail.  This makes
10437         AS_BASENAME act more like AS_DIRNAME.
10438         (as_me): Shell-quote the argument of AS_BASENAME, in case $0
10439         contains white space.
10440         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR):
10441         Use AS_DIRNAME, since I think it's now DOS-friendly.
10442         * tests/m4sh.at (DIRNAME_TEST): New arg $3.
10443         Allow "dirname //FOO" to return either / or //, as POSIX allows
10444         either behavior.
10446 2001-10-10  Akim Demaille  <akim@epita.fr>
10448         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Recognize
10449         `a_out.exe' for OpenVMS 7.1, DEC C 5.5 compiler, via GNV.
10450         From Eric Sharkey.
10452 2001-10-10  Akim Demaille  <akim@epita.fr>
10454         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): m4_defun, not
10455         m4_define, since...
10456         (_AS_ECHO_N): AS_REQUIREs it.
10458 2001-10-10  Akim Demaille  <akim@epita.fr>
10460         * lib/autoconf/general.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS)
10461         (AC_INCLUDES_DEFAULT): Move to...
10462         * lib/autoconf/headers.m4: here.
10463         * lib/autoconf/types.m4: Comment changes.
10464         * doc/autoconf.texi: Specify where the default includes are used
10465         in the macro prototypes.
10467 2001-10-09  Akim Demaille  <akim@epita.fr>
10469         * lib/autoconf/autoconf.m4 (m4_patsubst, m4_regexp): New
10470         transition code.
10472 2001-10-08  Akim Demaille  <akim@epita.fr>
10474         * bin/autoreconf.in (&autoreconf): Remove debugging code.
10475         (&parse_args): Pass verbosity/debugging options to subtools when
10476         --debug, not when --verbose.
10477         * lib/autom4te.in (Autoreconf-preselections): New.
10478         (Autoconf): Use it.
10480 2001-10-08  Akim Demaille  <akim@epita.fr>
10482         * bin/autoreconf.in (autoreconf): Run libtoolize when appropriate.
10484 2001-10-08  Akim Demaille  <akim@epita.fr>
10486         * doc/autoconf.texi (autoreconf Invocation): Adjust.
10487         * bin/autoreconf.in (autoreconf): Run gettextize when appropriate.
10489 2001-10-08  Akim Demaille  <akim@epita.fr>
10491         * tests/tools.at (AT_CHECK_PERL_SYNTAX): Check autoreconf.
10492         (Syntax of the shell scripts): Don't.
10493         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in: Don't
10494         bother with $force since...
10495         * lib/Autom4te/General.pm: does.
10497 2001-10-08  Akim Demaille  <akim@epita.fr>
10499         * bin/autoreconf.in: Rewrite in Perl.
10500         * configure.ac: Adjust.
10501         * lib/Autom4te/General.pm (&up_to_date_p): New.
10502         * bin/autom4te.in (&up_to_date_p): Use it.
10503         Rename as...
10504         (&up_to_date): this.
10506 2001-10-08  Akim Demaille  <akim@epita.fr>
10508         * lib/m4sugar/m4sugar.m4 (m4_case, m4_bmatch, m4_normalize)
10509         (m4_list_cmp): Use $0 to reinvoke yourself.
10510         (m4_patsubsts): New.
10511         (m4_strip, m4_version_unletter): Use it.
10512         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): Likewise.
10514 2001-10-08  Akim Demaille  <akim@epita.fr>
10516         * lib/autoconf/autoconf.m4, lib/autoconf/general.m4,
10517         * lib/autoconf/libs.m4, lib/autoconf/status.m4,
10518         * lib/autoconf/types.m4, lib/autotest/general.m4,
10519         * lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4, tests/atspecific.m4,
10520         * tests/torture.at: Rename m4_regexp, m4_patsubst, and m4_match to
10521         m4_bregexp, m4_bpatsubst, and m4_bmatch.
10522         * doc/autoconf.texi (Redefined M4 Macros): Adjust.
10524 2001-10-08  Akim Demaille  <akim@epita.fr>
10526         * lib/m4sugar/m4sh.m4: Use AS_REQUIRE.
10528 2001-10-08  Akim Demaille  <akim@epita.fr>
10530         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_EXPR): Use AS_REQUIRE.
10531         * tests/tools.at (AT_DATA_FORBIDDEN): Rename/move/duplicate to...
10532         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): here.
10533         * tests/tools.at, tests/m4sh.at: Use it.
10534         * tests/m4sh.at: Don't rely on Autoconf macros.
10535         (DIRNAME_TEST): Also exercise the expr variant.
10536         * tests/m4sugar.at, tests/atspecific.m4 (AT_CHECK_M4SUGAR): The
10537         preferred M4sugar extension is now `.4s'.
10538         * tests/README: Remove.
10540 2001-10-08  Akim Demaille  <akim@epita.fr>
10542         * lib/m4sugar/m4sugar.m4 (m4_provide_ifelse): Rename as...
10543         (m4_provide_if): this.
10544         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): New.
10545         * lib/autoconf/general.m4 (AS_DEFUN, AC_DEFUN_ONCE, AC_BEFORE)
10546         (AC_REQUIRE, AC_PROVIDE, AC_PROVIDE_IFELSE): Be exact copy of the
10547         M4sugar peer, i.e., drop the `AC_PROVIDE_$1' broken marker.
10549 2001-10-08  Akim Demaille  <akim@epita.fr>
10551         Use `add-log-current-defun-function' for ChangeLog creation.
10552         Suggested by Tom Tromey.
10554         * lib/emacs/autotest-mode.el (autotest-mode-map): New.
10555         (autotest-mode): Adjust.
10556         * lib/emacs/autoconf-mode.el (autoconf-mode-map): Modernize, map
10557         'comment-region onto `C-c ;'.
10558         Comments are `#', not `dnl'.
10559         (autoconf-current-defun): New.
10560         (autoconf-font-lock-keywords): Recognize `m4_defun'.
10562 2001-10-08  Akim Demaille  <akim@epita.fr>
10564         * lib/autoconf/general.m4 (_m4_divert(BODY)): Move to...
10565         * lib/m4sugar/m4sh.m4: here.
10566         (AS_INIT): Push the BODY diversion, set the #! /bin/sh line.
10567         * lib/autoconf/general.m4 (AC_PLAIN_SCRIPT) : Remove.
10568         (AT_INIT): Replace AC_PLAIN_SCRIPT with AS_INIT invocation,
10569         include handle the m4_pattern_*, no longer push the
10570         BODY diversion nor set the /bin/sh line, AS_INIT does it.
10571         * lib/autotest/general.m4 (AT_INIT): Likewise.
10572         * tests/base.at: Adjust the tests to use AS_INIT.
10573         * tests/tools.at (AT_DATA_FORBIDDEN): New.
10574         (autoconf: forbidden tokens): Adjust to work on M4sh instead of
10575         Autoconf.
10577 2001-10-07  Paul Eggert  <eggert@twinsun.com>
10579         * doc/autoconf.texi (config.status Invocation):
10580         CONFIG_SHELL defaults to a shell that supports LINENO if available.
10582         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): If the current
10583         shell does not support LINENO, and if CONFIG_SHELL is unset or
10584         empty, and if we can find a shell that does support LINENO,
10585         then set CONFIG_SHELL to that shell and then re-execute
10586         ourselves with CONFIG_SHELL.
10588 2001-10-05  Paul Eggert  <eggert@twinsun.com>
10590         * tests/Makefile.am (clean-local): Don't invoke $(TESTSUITE) if it
10591         doesn't exist.  Remove *.tmp, as a .tmp file is created during the
10592         build of $(TESTSUITE).
10594 2001-10-05  Akim Demaille  <akim@epita.fr>
10596         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Look in the path
10597         iff we are a bareword.
10598         Reported by Raja R Harinath.
10600 2001-10-05  Akim Demaille  <akim@epita.fr>
10602         * tests/m4sh.at (LINENO): New.
10603         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Be sure to set
10604         PATH_SEPARATOR before using it.
10605         Fix the absolute path case/esac pattern.
10606         Provide $0 as fallback for as_myself.
10607         Reported by Raja R Harinath.
10609 2001-10-05  Akim Demaille  <akim@epita.fr>
10611         * Makefile.am, config/Makefile.am, lib/emacs/Makefile.am,
10612         * m4/Makefile.am, man/Makefile.am: Add/adjust MAINTAINERCLEANFILES.
10614 2001-10-05  Akim Demaille  <akim@epita.fr>
10616         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): New, extracted from...
10617         (AS_SHELL_SANITIZE): here.  Use it.
10618         (_AS_LINENO_PREPARE): Preserve the exit status of $0.lineno.
10619         From Paul Eggert.
10621 2001-10-04  Akim Demaille  <akim@epita.fr>
10623         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use a portable
10624         combination of Awk and sed to replace $LINENO.
10626 2001-10-02  Paul Eggert  <eggert@twinsun.com>
10628         * doc/autoconf.texi (Limitations of Builtins): You can't use
10629         "source"; it's not portable.  Remove confusing and
10630         somewhat-incorrect example involving "." and "/".
10632         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): "source" -> ".", for
10633         compatibility with POSIX shells.
10635 2001-10-02  Akim Demaille  <akim@epita.fr>
10637         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Just source 40.lineno
10638         instead of exec'ing to preserve $0 and $@.
10640 2001-10-01  Akim Demaille  <akim@epita.fr>
10642         * tests/testsuite (AT_INIT) <at_pass_list>: New.
10643         Don't run twice the same test.
10645 2001-10-01  Akim Demaille  <akim@epita.fr>
10647         * lib/autotest/general.m4 (AT_INIT) <--help>: Catch up with reality.
10648         No longer output the list of tests.
10649         <--list>: New option.
10650         <--full-help>: Remove.
10651         Complete the short/long options duality.
10652         Various small adjustments.
10654 2001-10-01  Akim Demaille  <akim@epita.fr>
10656         * doc/autoconf.texi: Use @kbd for user input.
10657         Always use `$' as shell prompt.
10659 2001-09-30  Paul Eggert  <eggert@twinsun.com>
10661         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS):
10662         Don't use nested parenthesization.  This patch was originally
10663         suggested to bug-autoconf by Philippe De Muyter on 2000-05-28,
10664         but somehow it didn't get incorporated then.
10665         * doc/autoconf.texi (Limitations of Usual Tools):
10666         Clarify remark about sed and nested parenthesization.
10668         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF):
10669         Report an error if the size cannot be determined even though
10670         the type exists.
10671         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
10672         Check for `expr' arithmetic overflow, and for compilation failure,
10673         and invoke a new argument $4 if either is discovered.
10674         This makes _AC_COMPUTE_INT_COMPILE more like _AC_COMPUTE_INT_RUN.
10675         (_AC_COMPUTE_INT): Pass IF-FAILS arg to _AC_COMPUTE_INT_COMPILE.
10677 2001-09-28  Akim Demaille  <akim@epita.fr>
10679         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: New.
10680         * m4/lispdir.m4: New.
10681         * aclocal.m4, configure.ac: Adjust.
10683 2001-09-28  Akim Demaille  <akim@epita.fr>
10685         * lib/autotest/general.m4 (AT_VICTIMS): Rename as...
10686         (AT_TESTED): this.
10687         (AT_INIT): More the wrapped section to where it will be expanded.
10688         Output `AT_tested' only when existing.
10689         Catch unexpanded PACKAGE_STRING and PACKAGE_BUGREPORT.
10691 2001-09-27  Akim Demaille  <akim@epita.fr>
10693         Fix the passing of $? to ACTION-IF-FAILED in AC_TRY_RUN, that
10694         generates too many bug reports.
10696         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Pass the right exit
10697         status when executing the ACTION-IF-FALSE.
10698         * tests/base.at (AC_TRY_*): Rename as...
10699         (AC_TRY_COMMAND): this.
10700         (AC_RUN_IFELSE): New.
10701         * tests/compile.at (Extensions, C keywords)
10702         (AC_PROG_CPP requires AC_PROG_CC, GNU Fortran 77)
10703         (Broken/missing compilers, AC_PROG_CPP with warnings)
10704         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC): Move to...
10705         * tests/c.at (Extensions, C keywords)
10706         (Broken/missing compilers, AC_PROG_CPP with warnings)
10707         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC)
10708         (AC_PROG_CPP requires AC_PROG_CC): here and...
10709         * tests/fortran.at (GNU Fortran 77): there.
10710         * doc/autoconf.texi (autoconf Invocation): Fix the example:
10711         AC_TRY_RUN is about compilation, not shell commands.
10712         (Test Programs): AC_TRY_RUN works as used to be advertised.
10714 2001-09-27  Akim Demaille  <akim@epita.fr>
10716         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix bugs spotted by
10717         Raja R Harinath:
10718         Be sure to detect when $LINENO always returns the same value.
10719         Look for the original script, basename($0) is certainly not
10720         enough.
10721         Pass the CLI arguments to `$as_me.lineno'.
10723 2001-09-25  Akim Demaille  <akim@epita.fr>
10725         * lib/autotest/general.m4 (AT_INIT): Dump the whole config.log.
10726         Be sure the close and reopen the LOG fd before and after using tee
10727         to extend the log.
10728         <at_tests_pattern>: Adjust to the new format of at_help_all.
10730 2001-09-23  Akim Demaille  <akim@epita.fr>
10732         * bin/autom4te.in (parse_args): There can be several invocations
10733         of --language now.
10735 2001-09-23  Akim Demaille  <akim@epita.fr>
10737         * doc/autoconf.texi (Top): Wrap in @ifnottex.
10739 2001-09-23  Akim Demaille  <akim@epita.fr>
10741         * lib/autoconf/status.m4 (_AC_SRCPATHS): Compute and provide
10742         ac_buildpath, ac_top_buildpath, ac_srcpath, and ac_top_srcpath.
10743         (_AC_OUTPUT_FILES): Also substitute srcpath, top_srcpath,
10744         builddir, buildpath, top_builddir, and top_buildpath.
10745         (_AC_OUTPUT_SUBDIRS): Compute the dir variables *before* changing
10746         the current directory.
10747         * lib/autoconf/general.m4 (_AC_INIT_HELP): Compute the dir
10748         variables *before* changing the current directory.
10749         Skip nonexistent dirs.
10750         * doc/autoconf.texi (Preset Output Variables): Document these
10751         variables.
10753         * lib/autotest/general.m4: Do not reset AT_victims.
10754         Don't compute at_srcdir nor at_top_srcdir.
10756         * tests/tools.at: Hence use top_srcdir.
10758         * tests/Makefile.am, tests/autoconf, tests/autoheader,
10759         * tests/autom4te, tests/autoreconf, tests/autoupdate, tests/ifnames:
10760         Remove.
10761         * tests/autoreconf.in, tests/wrappl.in, tests/autom4te.in,
10762         * tests/wrapsh.in, tests/autoupdate.in: New.
10763         * tests/Makefile.am (DISTCLEANFILES, EXTRA_DIST): Adjust.
10764         * configure.ac: Build the position independent wrappers.
10766         * man/Makefile.am: Now that test wrappers are position
10767         independent, use them and drop dark envvar magic.
10769 2001-09-23  Akim Demaille  <akim@epita.fr>
10771         * doc/autoconf.texi (Common Shell Constructs): Rename as...
10772         (Programming in M4sh): this.
10773         Promote to @section.
10775 2001-09-23  Akim Demaille  <akim@epita.fr>
10777         * lib/autotest/general.m4 (AT_INIT): Dump config.log last.
10778         Pass $at_debug_args to the rerun test suite.
10779         * lib/m4sugar/Makefile.am (DISTCLEANFILES): New.
10780         * bin/Makefile.am (ETAGS_SH): Don't use characters ranges.
10781         From Paul Eggert.
10783 2001-09-23  Akim Demaille  <akim@epita.fr>
10785         * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
10787 2001-09-23  Akim Demaille  <akim@epita.fr>
10789         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
10790         over-escaping.
10792 2001-09-23  Akim Demaille  <akim@epita.fr>
10794         * lib/Autom4te/General.pm (&debug): New.
10795         * bin/autom4te.in ($language): Move to...
10796         (parse_args): here.
10797         Handle --language in languages.
10798         * lib/autom4te.in (Automake-selections, Autoheader-selections)
10799         (Autoscan-selections): New.
10800         (Autoconf): Adjust.
10802 2001-09-23  Tim Van Holder  <tim.van.holder@pandora.be>
10804         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/init.m4,
10805         * m4/install-sh.m4, m4/missing.m4, m4/sanity.m4, m4/strip.m4: Updated
10806         to match current versions from CVS Automake.
10808 2001-09-23  Alexandre Duret-Lutz  <duret_g@epita.fr>
10810         * doc/autoconf.texi (Special Shell Variables): Add pdksh output
10811         for $LINENO.
10813 2001-09-22  Akim Demaille  <akim@epita.fr>
10815         * lib/autoconf/autotest.m4: Create `package.m4'.
10816         * tests/Makefile.am (package.m4): Remove.
10818 2001-09-22  Akim Demaille  <akim@epita.fr>
10820         Rely on `$LINENO' when possible instead of `__oline__'.
10822         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Provide some form of
10823         `$LINENO' support replacement when not supported.
10824         (_AS_CR_PREPARE, _AS_TR_CPP_PREPARE, _AS_TR_SH_PREPARE): Invoke
10825         them explicitly to be sure they are not output before this section
10826         (via m4_require).  Cosmetic only.
10827         * lib/autoconf/c.m4, lib/autoconf/general.m4,
10828         * lib/autoconf/programs.m4: Replace all the occurrences of
10829         `__oline__' with `$LINENO'.
10830         * doc/autoconf.texi (Special Shell Variables): Document LINENO.
10832 2001-09-21  Tim Van Holder  <tim.van.holder@pandora.be>
10834         * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
10835         character (u: -> ue) in a code comment.
10836         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
10837         it works.
10839 2001-09-21  Akim Demaille  <akim@epita.fr>
10841         * Makefile.maint (AUTOM4TE): Neutralize autom4te.
10842         Suggested by Jim Meyering.
10844 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
10846         * lib/autoconf/programs.m4: Use extensions listed in
10847         $ac_executable_extensions when looking for programs.
10849 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
10851         * lib/autoconf/general.m4: Fix a small Englisho.
10852         * lib/autoconf/status.m4: Fix a small typo.  Handle DOS paths when
10853         setting up ac_dir_suffix and ac_top_builddir.
10854         * lib/m4sugar/m4sh.m4: Default CDPATH to $PATH_SEPARATOR, not ':'.
10856 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
10858         * doc/autoconf.texi (File System Conventions): Clarify the use of
10859         PATH_SEPARATOR.
10860         (Special Shell Variables[PATH_SEPARATOR]): Ditto.
10861         (Special Shell Variables[CDPATH]): Mention that $PATH_SEPRATOR should
10862         be used instead of ':'.
10863         * lib/autotest/general.m4: Replace occurrences of ':' in
10864         AUTOTEST_PATH with $PATH_SEPARATOR at test suite startup.
10866 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
10868         * tests/atgeneral.m4: Add basic support for test ranges (e.g. 7-34) as
10869         arguments.  Fixed a typo.
10871 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
10873         * man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
10874         $PATH.  Also set AUTOM4TE_CFG, so we can process autom4te properly.
10876 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
10878         * bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
10879         * bin/autoupdate.in: Ditto.
10880         * bin/autoheader.in: Reworded a few comments.
10881         * bin/autoconf.in: Reworded help text for a few options.
10882         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
10883         * bin/autoscan.in, bin/autoupdate.in: Ditto.
10885 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
10887         * lib/Autom4te/XFile.pm (open): Simplified the error message (we
10888         already have $file).  Set output files to binary mode (helps avoid
10889         CR issues on DOSish systems).
10891 2001-09-19  Akim Demaille  <akim@epita.fr>
10893         * lib/autotest/general.m4: Englishoes.
10894         From Tim Van Holder and Alexey Mahotkin.
10896 2001-09-18  Paul Eggert  <eggert@twinsun.com>
10898         * doc/autoconf.texi (Common Shell Constructs): New node,
10899         documenting AS_DIRNAME.
10900         (Limitations of Usual Tools): Refer to it when discussing dirname.
10901         Also, update discussion of POSIX standard to reflect latest draft.
10903         * lib/autoconf/c.m4:
10904         (AC_LANG_INT_SAVE(C)): Also support negative values, down to LONG_MIN.
10906         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
10907         Do not pass a first argument with leading '-'
10908         to expr, by parenthesizing initial integers that might be negative.
10910         * doc/autoconf.texi (Particular Functions): AC_FUNC_GETPGRP
10911         now merely checks whether it is an error to pass an argument
10912         to getpgrp.
10914         * lib/autoconf/functions.m4 (_AC_FUNC_GETPGRP_TEST): Remove.
10915         (AC_FUNC_GETPGRP): Don't bother with a runtime test.  Just check
10916         whether it is a (compile-time) error to pass an argument to
10917         getpgrp.  This simpler test supports the revised documentation,
10918         and is all that AC_FUNC_GETPGRP's users really need.
10920 2001-09-18  Akim Demaille  <akim@epita.fr>
10922         * doc/autoconf.texi (Limitations of Make) <$<>: New.
10924 2001-09-18  Akim Demaille  <akim@epita.fr>
10926         * doc/autoconf.texi (Limitations of Usual Tools) <find>: More about
10927         `{}'.
10928         * lib/autotest/general.m4 (AT_INIT): Adjust.
10930 2001-09-18  Paul Wagland  <paul@wagland.net>
10932         * tests/m4sh.at: Ensure that AS_DIRNAME handles '/', '//' and '///'
10933         correctly.
10934         Add test for AS_BASENAME.
10935         * lib/m4sugar/m4sh.m4: Fix AS_BASENAME so that it passes the previous
10936         added test. It now correctly handles /1/2/3/, returning '3' not ''.
10937         Added AS_BASENAME_SED to make the interface the same as AS_DIRNAME.
10938         * tests/base.at: Fixed the expected responses. The old ones were
10939         one line out...
10940         * lib/autoconf/general.m4: Fixed AC_PREFIX_PROGRAM, it now behaves as
10941         the documentation claims it should (and how it behaved in 2.13).
10943 2001-09-18  Akim Demaille  <akim@epita.fr>
10945         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): No INIT-CMDS in
10946         the AC_CONFIG_COMMANDS invocation.
10947         This also solves the name clash problems.
10948         Don't set the package's ID.
10949         * lib/m4sugar/Makefile.am (version.m4): Revamp.
10950         No longer to be shipped.
10951         (version.in): Remove.
10952         * lib/m4sugar/m4sugar.m4, lib/autoconf/general.m4,
10953         * lib/autoconf/status.m4: Adjust.
10954         Use `m4_PACKAGE_STRING'.
10955         * lib/autotest/general.m4 (AT_INIT): N-th signature change: now
10956         the only optional argument is the name of the test suite.
10957         Expect `package.m4' to define the package signature.
10958         * lib/autom4te.in (Autotest): Add `package.m4?'.
10959         * tests/Makefile.am (package.m4): New.
10960         * tests/suite.at: ifnames is a victim.
10962 2001-09-18  Akim Demaille  <akim@epita.fr>
10964         * lib/autom4te.in (Autoconf): Preselect AM_CONDITIONAL,
10965         AC_LIBSOURCE, AC_CONFIG_FILES.
10966         * lib/autotest/general.m4 (AT_INIT): Don't abort when a tested
10967         program version string doesn't match the package's.
10968         * lib/autoconf/general.m4 (AC_CACHE_VAL): Reestablish the space
10969         after `(cached)'.
10971 2001-09-17  Paul Eggert  <eggert@twinsun.com>
10973         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
10974         Allow expression to return any value that can fit into unsigned long
10975         (not int, as before).  Check for output errors.
10977 2001-09-17  Bruno Haible  <haible@ilog.fr>
10979         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
10980         Always include <stdio.h> and <stdlib.h>. Evaluate
10981         the expression in an extra function before these includes. Call
10982         fprintf "%d" only after ensuring the argument is of type 'int'.
10983         Reported by Wayne Chapeskie <waynec@spinnaker.com>.
10985 2001-09-17  Paul Eggert  <eggert@twinsun.com>
10987         Fix bug reported by Paul Townsend on AIX 4.3.3.0 with CFLAGS=-O4
10988         or CFLAGS=-O5.  In that case, the linker has a relaxed view of
10989         fatal errors, and AC_CHECK_LIB causes it to include libraries even
10990         when they don't exist.
10992         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT): Use AC_SEARCH_LIBS,
10993         not AC_CHECK_LIB, so that we don't use -ldir or -lx if we don't
10994         need it.
10996         * lib/autoconf/specific.m4 (AC_ISC_POSIX): Replace the old, crufty
10997         version with the version used by fileutils 4.1, except use
10998         AC_SEARCH_LIBS, not AC_CHECK_LIB, so that we don't use -lcposix if
10999         we don't need it.
11001         * doc/autoconf.texi (AC_ISC_POSIX): Describe new behavior.
11003 2001-09-13  Akim Demaille  <akim@epita.fr>
11005         * tests/base.at, tests/m4sh.at: Be sure to issue the bangshe line
11006         _first_.
11007         Reported by Gerrit P. Haase.
11009 2001-09-13  Akim Demaille  <akim@epita.fr>
11011         * lib/autotest/general.m4 (AT_INIT): Reset `AT_victims' so that
11012         m4_defn'ing is valid.
11014 2001-09-13  Akim Demaille  <akim@epita.fr>
11016         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): New.
11017         * lib/autotest/general.m4 (AT_VICTIMS, AT_KEYWORDS, _AT_CLEANUP_FILE):
11018         Use it.
11020 2001-09-13  Akim Demaille  <akim@epita.fr>
11022         * lib/m4sugar/m4sugar.m4 (_AS_QUOTE_IFELSE, _AS_BOX_INDIR): Use
11023         m4_match.
11024         (m4_re_escape): New.
11025         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER): Use it.
11026         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use m4_match.
11027         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER, AC_CONFIG_LINKS):
11028         Likewise.
11029         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P)
11030         (_AC_CHECK_TYPE_MAYBE_TYPE_P, AC_CHECK_MEMBER): Likewise.
11031         * lib/autotest/general.m4 (AT_INIT): Rename AT_TESTS_ALL as
11032         AT_tests_all for consistency.
11033         Set at_victims.
11034         (AT_VICTIMS): Similar to AT_KEYWORDS.
11035         (_AT_CLEANUP_FILE_IF): Use m4_match and m4_re_escape.
11037 2001-09-13  Akim Demaille  <akim@epita.fr>
11039         * lib/autotest/general.m4 (AT_INIT): Fix stupid bugs.
11041 2001-09-13  Akim Demaille  <akim@epita.fr>
11043         * lib/autotest/general.m4 (AT_INIT): Create and remove
11044         `$as_me.[0-9]+' instead of `debug-[0-9]+.sh', so that multiple
11045         test suites can cohabit.
11047 2001-09-13  Akim Demaille  <akim@epita.fr>
11049         * tests/mktests.sh: Don't output banners for empty test files.
11051 2001-09-13  Akim Demaille  <akim@epita.fr>
11053         Test suites can be run independently of configure.
11055         * lib/m4sugar/m4sh.m4 (_AS_ECHO, _AS_ECHO_N_PREPARE): New.
11056         * lib/autoconf/programs.m4 (_AC_PROG_ECHO): Remove.
11057         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust: AC_SUBST
11058         ECHO_N etc.
11059         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't ask for at_n
11060         and at_c.
11061         * lib/autotest/general.m4: Use ECHO_*.
11063 2001-09-13  Akim Demaille  <akim@epita.fr>
11065         * bin/ifnames.in: Rewrite in Perl.
11066         * configure.ac: Don't look for AWK.
11067         * tests/tools.at (AWK portability): Remove.
11068         (Syntax of the shell scripts): Don't check ifnames.
11069         (AT_CHECK_PERL_SYNTAX): New.
11070         (Syntax of the Perl scripts): Check ifnames.
11071         * tests/ifnames: New.
11073 2001-09-13  Akim Demaille  <akim@epita.fr>
11075         * lib/autotest/general.m4 (AT_INIT): Let --keywords also match
11076         test group titles.
11077         * tests/atspecific.m4 (AT_CHECK_AU_MACRO): AT_KEYWORDS(autoupdate).
11078         Remove all the other keywords.
11080 2001-09-10  Akim Demaille  <akim@epita.fr>
11082         * lib/autotest/general.m4 (AT_INIT): Remove the diversion HELP and
11083         SETUP: no longer used.
11084         Support -k, --keywords.
11085         <at_help>: Be `no', `short', or `long'.
11086         <at_help_all>: New variable.
11087         (AT_KEYWORDS): New.
11088         (AT_CLEANUP_FILE_IFELSE, AT_CLEANUP_FILE): Rename as...
11089         (_AT_CLEANUP_FILE_IF, _AT_CLEANUP_FILE): these.
11090         (_AT_CLEANUP_FILE_IF): Simplify the regexp.
11091         (AT_SETUP): Reset AT_line, AT_keywords, AT_description.
11092         No longer fill the HELP diversion.
11093         (AT_CLEANUP): Use them.
11094         * lib/m4sugar/m4sugar.m4 (m4_append): Support a separator.
11095         (m4_list_append): Remove.
11097         Spread a few keywords in the Autoconf test suite.
11099 2001-09-10  Akim Demaille  <akim@epita.fr>
11101         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't pass
11102         PATH_SEPARATOR, let M4sh compute it.
11103         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): New.
11104         * lib/autoconf/programs.m4 (AC_SHELL_PATH_WALK): Use PATH_SEPARATOR.
11105         Move to...
11106         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Here.
11107         Simplify when the path is not a literal.
11108         (AS_UNAME): Use it to report PATH.
11109         * lib/autoconf/general.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Remove.
11110         (_AC_INIT_DEFAULTS): AC_SUBST PATH_SEPARATOR.
11111         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Use _AS_PATH_WALK.
11112         * lib/autotest/general.m4 (AT_INIT): Use _AS_PATH_WALK to
11113         normalize the path, and to look for victims.
11114         * tests/semantics.at (AC_PATH_PROG & AC_PATH_PROGS)
11115         (AC_CHECK_PROG & AC_CHECK_PROGS): Use PATH_SEPARATOR.
11117 2001-09-07  Akim Demaille  <akim@epita.fr>
11119         * bin/autom4te.in (&handle_m4): `< /dev/null' so that GNU M4 1.5
11120         doesn't neutralize SIGINT, making autoconf etc. non interruptible.
11121         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Move the package
11122         related variables into `at_package_*'.
11123         * lib/autotest/general.m4 (AT_VICTIMS): New.
11124         (AT_INIT): Adjust for stand-alone/embedded test suites.
11125         (AS_MESSAGE_LOG_FD): Define and use it.
11126         * tests/suite.at (AT_VICTIMS): Use it.
11127         * tests/tools.at (autoupdating AC_PREREQ): Don't depend upon
11128         at_version.
11130 2001-09-07  Akim Demaille  <akim@epita.fr>
11132         Move toward possibly stand-alone test suites.
11134         * lib/autotest/general.m4: Stop displaying srcdir everywhere as,
11135         in addition, it introduces useless differences in logs.
11136         (AT_INIT): Let atconfig and atlocal be both optional.
11137         Adjust PATH computation.
11138         * lib/m4sugar/m4sh.m4 (AS_UNAME): More readable display of PATH.
11140 2001-09-07  Akim Demaille  <akim@epita.fr>
11142         * lib/autoconf/Makefile.am (autoconf.m4f): Depends upon
11143         m4sugar/version.m4.
11145 2001-09-05  Akim Demaille  <akim@epita.fr>
11147         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Use `_array_'
11148         to avoid GCC warnings.
11149         From Uwe Seimet.
11151 2001-09-05  Akim Demaille  <akim@epita.fr>
11153         * bin/autom4te.in: --language is -l, not -s.
11155 2001-09-05  Akim Demaille  <akim@epita.fr>
11157         Be ready to handle filenames as stupid as `dnl.at', for if even
11158         the maintainer is dumb enough to do that...
11160         * lib/autotest/general.m4 (AT_SETUP, AT_LINE): Demonstrates your
11161         excellence in M4 quotation: consider `__file__' is active.
11163         And BTW, when invoking m4, pass the --include in the right order:
11164         the wrong one.
11166         * bin/autom4te.in, bin/autoupdate.in: Use reverse when kingtal to
11167         4m.
11169 2001-09-05  Akim Demaille  <akim@epita.fr>
11171         * lib/Autom4te/XFile.pm: New lib file.
11172         * bin/autoupdate.in, bin/autoscan.pl, bin/autom4te.in,
11173         * bin/autoheader.in: Use it.
11175 2001-09-05  Akim Demaille  <akim@epita.fr>
11177         * bin/autoupdate.in (&handle_m4_macros) <unm4.m4>: Undefine iff
11178         defined.
11180 2001-09-05  Akim Demaille  <akim@epita.fr>
11182         * lib/Autom4te/General.pm (&getopt): Work around the `-' Getopt bug.
11183         * bin/autoheader.in, bin/autoupdate.in (&parse_args): Adjust.
11185         * bin/autoscan.in: Use `getopt' and `find_files' etc.
11186         Add -I, --include support.
11187         * doc/autoconf.texi (autoscan Invocation): Adjust.
11189 2001-09-05  Akim Demaille  <akim@epita.fr>
11191         CVS GNU M4 doesn't like `undefine(undefined)'.
11193         * bin/autoupdate.in (&handle_m4_macros, &handle_autoconf_macros):
11194         New, extracted from main.
11195         Use IO::File wherever possible.
11196         (input.m4): Be constant, use -I instead of hard coding $tmp.
11197         Therefore be a quoted heredoc.
11198         Don't invoke `_au_disable', since ac was not loaded, but just
11199         `unm4.m4'.
11201 2001-08-31  Akim Demaille  <akim@epita.fr>
11203         Version 2.52d.
11205 2001-08-31  Akim Demaille  <akim@epita.fr>
11207         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix the
11208         previous patch.
11209         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Can create `config.hin~'.
11211 2001-08-31  Akim Demaille  <akim@epita.fr>
11213         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): DU 5.0 has
11214         serious problems handling heredocs in heredocs.
11215         Reported by Nicolas Joly.
11217 2001-08-31  Akim Demaille  <akim@epita.fr>
11219         * doc/autoconf.texi: Don't promote non `m4_*' M4 macros.
11220         (Making testsuite Scripts): Update.
11222 2001-08-31  Akim Demaille  <akim@epita.fr>
11224         * lib/Makefile.am (CLEANFILES): Add autom4te.cfg.
11226 2001-08-31  Akim Demaille  <akim@epita.fr>
11228         * doc/autoconf.texi (Quadrigraphs): Document `@&t@'.
11229         (testsuite Scripts): There is no such thing as `atconfig.in'.
11230         And actually one diagram is missing: test suite runtime.
11232 2001-08-31  Akim Demaille  <akim@epita.fr>
11234         * lib/Autom4te/General.pm (&find_file): Browse the includes in the
11235         inverse order.
11237 2001-08-31  Akim Demaille  <akim@epita.fr>
11239         * bin/autoupdate.in (@include): `installcheck' revealed the path
11240         to m4sugar was lacking!
11242 2001-08-31  Akim Demaille  <akim@epita.fr>
11244         * man/Makefile.am (.x.1): We really have to pass
11245         autom4te_perllibdir.
11247 2001-08-31  Akim Demaille  <akim@epita.fr>
11249         * lib/autotest/general.m4 (AT_INIT): Don't pass all the args to
11250         debug scripts, in particular passing explicitly listed tests to
11251         run is stupid.
11253 2001-08-31  Akim Demaille  <akim@epita.fr>
11255         * bin/autom4te.in (&parse_args): Strip `.' from `@include'.
11256         * bin/autoupdate.in: Use --include, -I, and --force, -f, too.
11257         Use directly autom4te, not autoconf.
11258         * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
11260 2001-08-31  Akim Demaille  <akim@epita.fr>
11262         * tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
11263         * bin/autoheader.in (%symbol): Strip arguments of macros.
11265 2001-08-31  Akim Demaille  <akim@epita.fr>
11267         * doc/autoconf.texi: Catch up -I, --include changes.
11269 2001-08-31  Akim Demaille  <akim@epita.fr>
11271         * bin/autom4te.in (&parse_args): Die on unknown languages.
11272         * bin/autoheader.in: Run directly autom4te --mode=autoconf, no
11273         need for autoconf.
11274         Promote --include over --macrodir and other obsolete options.
11276 2001-08-31  Akim Demaille  <akim@epita.fr>
11278         * lib/Autom4te/General.pm ($version, $help, &getopt): New.
11279         * bin/autoupdate.in, bin/autoheader.in, bin/autom4te.in: Use them.
11280         * bin/autom4te.in ($autoconf): Pass --force.
11281         `print $out' doesn't print `$_' but `$out'.
11282         * tests/tools.at (Syntax of the Perl scripts): Pass the lib dir.
11283         (autoheader): Pass --force since the test suite goes too fast for
11284         the time stamps.
11285         Adjust to the new autoheader messages.
11287 2001-08-31  Akim Demaille  <akim@epita.fr>
11289         * bin/autoheader.in: Handle the acconfig.h etc. junk files.
11290         Check the completeness of the #template.
11291         * lib/Autom4te/General.pm (&update_file): s/remove/unlink/.
11292         * tests/semantics.at (AC_C_BIGENDIAN): Adjust AT_CHECK_AUTOHEADER
11293         invocation.
11295 2001-08-31  Akim Demaille  <akim@epita.fr>
11297         * lib/Autom4te/General.pm (&find_file, &update_file): New.
11298         * bin/autoupdate.in, bin/autoheader.in: Adjust.
11299         Drop AC_MACRODIR dead for real.
11300         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Now autoheader says
11301         `autoheader: `config.hin' is created'.
11302         * tests/tools.at (Syntax of the Perl scripts): Check autoheader.
11304 2001-08-31  Akim Demaille  <akim@epita.fr>
11306         * bin/autoheader.in: Rewrite in Perl.
11307         * tests/autoheader: Adjust.
11309 2001-08-31  Akim Demaille  <akim@epita.fr>
11311         * bin/autoconf.in (--include, -I): New option.
11312         Map --localdir, --autoconf-dir onto it.
11313         Forward autom4te's options instead of interpreting them.
11314         * bin/autoconf.in, bin/autoheader.in (AC_MACRODIR, autoconf_dir):
11315         There is no such envvar since the inception of autom4te.cfg.
11316         * bin/autom4te.in (&parse_args): Uniquify `@include'.
11317         * bin/autoupdate.in: Adjust, and perform more control.
11318         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Adjust.
11319         * tests/autoconf: Dittowise.
11321 2001-08-31  Akim Demaille  <akim@epita.fr>
11323         * bin/autoconf.in: Don't bother with `acsite.m4' and `aclocal.m4'.
11324         * bin/autom4te.in (&find_file): Support `FILE?' standing for
11325         optionally `FILE'.
11326         Use -e, not -f, since /dev/null for instance is OK.
11327         (&parse_args): Adjust.
11328         * lib/autom4te.in (Autoconf): Add `acsite.m4?' and `aclocal.m4?'.
11330 2001-08-31  Akim Demaille  <akim@epita.fr>
11332         * configure.ac: Also find tested executables in bin.
11333         * bin/autoconf.in, bin/autoheader.in, bin/autoreconf.in,
11334         * bin/autoscan.in, autoupdate.in: Use exclusively the name of the
11335         installed peer executables, only PATH is allowed to resolve it.
11336         Pass `autoconf_dir' via options, not via invisible envvars.
11337         * lib/Autom4te/General.pm (&find_peer): Remove.
11338         * lib/autotest/general.m4 (AT_INIT): `AUTOTEST_PATH=a:b' gives
11339         `abuild:asrc:bbuild:bsrc', not `abuild:bbuild:asrc:bsrc'.
11340         * man/Makefile.am: Let help2man rely on PATH instead of trying to
11341         find the executables for it.
11342         * tests/Makefile.am: Major cleanup.  Too lazy to document...
11343         * tests/atlocal.in: Remove all the obscure envvar manipulations.
11344         We only need PERL.
11345         * tests/atspecific.m4, tests/tools.at: Passing --localdir is
11346         indeed related to running the test suite, while passing
11347         --autoconf-dir and others is related to running non installed
11348         Autoconf executables.  So don't do that, leave it to...
11349         * tests/autoconf, tests/autoheader, tests/autom4te, tests/autoupdate,
11350         * tests/autoscan: New.
11351         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't
11352         refer to library files: rely on --language.
11354 2001-08-29  Akim Demaille  <akim@epita.fr>
11356         * bin/autom4te.in, lib/autom4te.in, bin/autoconf.in:
11357         s/--set/--language/.
11359 2001-08-29  Akim Demaille  <akim@epita.fr>
11361         * doc/autoconf.texi: Strip the @nodes.
11362         Suggested by Paul Eggert.
11363         (Initializing configure): Typo.
11365 2001-08-29  Akim Demaille  <akim@epita.fr>
11367         * bin/autom4te.in (&handle_output): s/@__@/@&t@/.
11368         Suggested by Paul Eggert.
11370 2001-08-29  Akim Demaille  <akim@epita.fr>
11372         * Makefile.maint (do-po-update): Wget refuses to overwrite files:
11373         download in a tmp dir.
11375 2001-08-29  Akim Demaille  <akim@epita.fr>
11377         * lib/autotest/general.m4: s/AT-devnull/devnull/ since there are
11378         case insensitive OSes out there :(
11379         From Tim Van Holder.
11381 2001-08-29  Akim Demaille  <akim@epita.fr>
11383         * lib/autom4te.in: New.
11384         * lib/Makefile.am (edit, autom4te.cfg): New.
11385         * bin/autom4te.in (BEGIN): Simplify.
11386         Rely on `AC_MACRODIR' in addition of `autom4te_perllibdir'.
11387         (&load_configuration): New.  Use it.
11388         (&parse_args): Support --mode, --set, and --melt.
11389         * bin/autoconf.in: Simplify and adjust.
11390         * tests/Makefile.am (AUTOMAKE): Use --set.
11391         * tests/atlocal.in: Adjust.
11392         * BUGS: distcheck and check are weak.
11394 2001-08-29  Akim Demaille  <akim@epita.fr>
11396         * lib/autotest/general.m4: Use
11397                 foo=`(command) 2>/dev/null`
11398         not
11399                 foo=`command` 2>/dev/null
11400         (at-devnull): Rename as...
11401         (AT-devnull): this.
11402         (--clean): Remove AT-* files too.
11403         * doc/autoconf.texi (Limitations of Usual Tools): Document `date'.
11404         Reported by Nicolas Joly.
11406 2001-08-28  Akim Demaille  <akim@epita.fr>
11408         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't use single
11409         quotes inside single quotes.
11410         Reported by Nicolas Joly.
11412 2001-08-28  Kevin Ryde  <user42@zip.com.au>
11414         * doc/autoconf.texi (Function Portability): Mention C right shifts.
11416 2001-08-27  Tim Van Holder  <tim.van.holder@pandora.be>
11418         * lib/autotest/general.m4: Reword some messages.
11419         (AT_INIT): Check for the `times' builtin before using it.
11420         Support test ranges as arguments to the testsuite.
11421         Have -e imply -d as the help text suggested.
11423 2001-08-27  Akim Demaille  <akim@epita.fr>
11425         * Makefile.maint: Formatting changes.
11426         (do-po-update, po-update, cvs-update, update): New targets.
11427         (AMTAR): Remove.
11429 2001-08-27  Akim Demaille  <akim@epita.fr>
11431         * lib/autotest/general.m4 (AT_INIT) <at_cmd_line>: Remove.
11432         <at_cmd_line>: New.
11433         Pass it to debug-*.sh scripts.
11434         <AUTOTEST_PATH>: May contain absolute dir names.
11436 2001-08-27  Akim Demaille  <akim@epita.fr>
11438         * lib/autotest/general.m4 (AT_INIT): Log the command line.
11439         Support `VAR=VAL' as arguments.
11440         Compute PATH _after_ the options processing, so that AUTOTEST_PATH
11441         may be set via the command line.
11443 2001-08-27  Akim Demaille  <akim@epita.fr>
11445         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): $2 defaults to $1.
11446         * lib/autotest/autotest.m4 (AT_INIT): Expand AUTOTEST_PATH into
11447         first the build dirs, then the src dirs.
11448         * configure.ac (AC_CONFIG_TESTDIR): Adjust.
11450 2001-08-27  Akim Demaille  <akim@epita.fr>
11452         * lib/autotest/general.m4 (AT_INIT): Output the definition of
11453         at_data_files earlier.
11454         (--clean, -c): New option.
11455         * tests/Makefile.am: Use this option.
11457 2001-08-27  Akim Demaille  <akim@epita.fr>
11459         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename `ac_dots' as
11460         `ac_top_builddir' to mimic Automake's vocabulary, which much more
11461         readable.
11462         Adjust callers.
11463         * doc/autoconf.texi (Configuration Actions): Document the vars
11464         available in commands.
11465         Emphasize the risks of collisions in init-cmds.
11467 2001-08-27  Akim Demaille  <akim@epita.fr>
11469         * doc/autoconf.texi (Input) <AC_INIT>: Move to..
11470         (Initializing configure): this new node.
11472 2001-08-27  Akim Demaille  <akim@epita.fr>
11474         * Makefile.am (EXTRA_DIST): INSTALL.txt is a dead hack.
11476 2001-08-27  Akim Demaille  <akim@epita.fr>
11478         * m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
11479         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this.
11480         New file.
11481         * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
11483 2001-08-27  Akim Demaille  <akim@epita.fr>
11485         * lib/autoconf/general.m4 (AU_DEFINE, AU_DEFUN, AU_ALIAS): Move
11486         to...
11487         * lib/autoconf/autoheader.m4: this new file.
11488         * lib/autoconf/general.m4 (AH_OUTPUT, AH_VERBATIM)
11489         (_AH_VERBATIM_OLD, AH_TEMPLATE, _AH_TEMPLATE_OLD, AH_TOP, AH_BOTTOM):
11490         Move to...
11491         * lib/autoconf/autoupdate.m4: this new file.
11493 2001-08-27  Akim Demaille  <akim@epita.fr>
11495         * lib/autoconf/status.m4 (_AC_SRCPATHS): New.
11496         (_AC_OUTPUT_LINKS, _AC_OUTPUT_FILES, _AC_OUTPUT_SUBDIRS): Use it.
11497         Standardize the var names (ac_sub_srcdir -> ac_srcdir, ac_subdir
11498         -> ac_dir).
11499         (_AC_OUTPUT_HEADERS): AS_DIRNAME always return a dir name.
11500         * lib/autoconf/general.m4 (_AC_INIT_HELP): Ditto.
11502 2001-08-27  Akim Demaille  <akim@epita.fr>
11504         * lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
11505         (AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
11506         (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
11507         (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
11508         (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
11509         (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
11510         (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
11511         (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
11512         (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
11513         (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
11514         (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
11515         (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
11516         (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
11517         (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
11518         (_AC_OUTPUT_SUBDIRS): Move to...
11519         * lib/autoconf/status.m4: this new file.
11520         * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
11521         * tests/Makefile.am, tests/suite.at: Adjust.
11523 2001-08-27  Akim Demaille  <akim@epita.fr>
11525         Automake 1.5.
11527         * Makefile.am (AUTOMAKE_OPTIONS): Add 1.5 and dist-bzip2.
11528         (AMTAR): Help automake define it.
11529         (INSTALL, install-data-hook): The INSTALL.txt trick is no longer
11530         needed, 1.5 can have a macro and a target with the same name.
11531         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/install-sh.m4,
11532         * m4/strip.m4: New.
11533         * m4/init.m4, m4/sanity.m4: Update.
11534         * doc/Makefile.am (CLEANFILES): 1.5 knows the texi2dvi files.
11535         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am,
11536         * lib/m4sugar/Makefile.am, lib/autoscan/Makefile.am,
11537         * lib/Autom4te/Makefile.am, man/Makefile.am: Use dist/nodist.
11539 2001-08-27  Akim Demaille  <akim@epita.fr>
11541         Provide a mean to ``AC_PREREQ'' for M4sugar, M4sh and Autotest.
11543         * lib/autoconf/version.in: Remove.
11544         * lib/m4sugar/version.in: New.
11545         * lib/m4sugar/m4sugar.m4 (m4_acversion, m4_version_prereq): New.
11546         Adjust callers.
11547         * bin/autoupdate.in: Distinguish M4sugar vs. Autoconf macros by
11548         the name of the directory they're in, instead of the filename,
11549         since version.m4 is now in m4sugar, but m4_acversion must not be
11550         classified as an Autoconf macro.
11551         ($input_m4): Don't qualify the path to m4sugar.
11552         Rather, pass autoconf_dir to m4.
11553         * tests/Makefile.am (testsuite): Remove -I top_srcdir, unneeded.
11554         * tests/suite.at: Require 2.52c.
11556 2001-08-27  Akim Demaille  <akim@epita.fr>
11558         testsuite.log should include config.log.
11560         * lib/autotest/autotest.m4: New.
11561         * lib/autotest/general.m4, tests/atspecific.m4: Adjust.
11562         * tests/suite.at : Adjust.
11563         (AT_INIT): Log config.log.
11564         * lib/m4sugar/m4sugar.m4 (m4_text_box): New.
11565         * lib/m4sugar/m4sh.m4 (_AS_BOX_LITERAL): Adjust.
11566         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Use them.
11567         (_AC_INIT_PREPARE): Fix the incredibly messy and buggy completion
11568         of config.log on traps.
11569         (_AC_OUTPUT_CONFIG_STATUS): Use AS_BOX.
11570         Use consistently `_ACEOF' for configure's here docs, and `_CSEOF'
11571         for config.status'.
11572         Open the log as soon as possible.
11573         Use the same log introduction as configure's.
11575 2001-08-22  Paul Eggert  <eggert@twinsun.com>
11577         * doc/autoconf.texi (Indices): New node.
11578         Move indices out of the top level menu and into this submenu.
11580 2001-08-22  Akim Demaille  <akim@epita.fr>
11582         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
11583         AC_TRY_COMMAND.
11584         (AC_DECL_YYTEXT): Fix the previous patch: it points to AC_PROG_LEX.
11586 2001-08-22  Akim Demaille  <akim@epita.fr>
11588         * lib/autoconf/general.m4 (AC_SHELL_PATH_WALK, AC_CHECK_PROG)
11589         (AC_CHECK_PROGS, AC_PATH_PROG, AC_PATH_PROGS, AC_CHECK_TOOL_PREFIX)
11590         (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS): Move to...
11591         * lib/autoconf/programs.m4: here.
11592         * lib/autoconf/specific.m4 (_AC_PROG_ECHO, AC_PROG_MAKE_SET)
11593         (AC_PROG_RANLIB, AC_PROG_YACC, AC_PROG_LEX, _AC_DECL_YYTEXT)
11594         (AC_PROG_INSTALL, AC_PROG_LN_S, AC_RSH): Move to...
11595         * lib/autoconf/programs.m4: here.
11596         (_AC_DECL_YYTEXT): Rename as...
11597         (_AC_PROG_LEX_YYTEXT_DECL): this.
11598         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am
11599         * tests/Makefile.am, tests/suite.am: Adjust.
11601 2001-08-22  Akim Demaille  <akim@epita.fr>
11603         * lib/autoconf/general.m4 (AC_LIST_MEMBER_OF, AC_LINKER_OPTION):
11604         Move to...
11605         * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF, _AC_LINKER_OPTION):
11606         here.
11607         * lib/autoconf/general.m4 (AC_TRY_LINK_FUNC): Move to...
11608         * lib/autoconf/functions.m4: here.
11609         * lib/autoconf/general.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB)
11610         (AH_CHECK_LIB): Move to...
11611         * lib/autoconf/libs: this new file.
11612         * lib/autoconf/specific.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT)
11613         (_AC_PATH_X, AC_PATH_X, AC_PATH_XTRA): Move to...
11614         * lib/autoconf/libs.m4: here.
11615         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am: Adjust.
11617 2001-08-22  Akim Demaille  <akim@epita.fr>
11619         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Fail if fails.
11620         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Adjust.
11621         (AC_SITE_LOAD): Better logging of config.site.
11623 2001-08-20  Akim Demaille  <akim@epita.fr>
11625         * configure.ac (AT_CONFIG): Fix the path.
11626         * m4/atconfig.m4 (AT_CONFIG): Don't use EOF but ATEOF so that 2.52
11627         can be used.
11629 2001-08-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
11631         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prepare the cross-compile
11632         program with AC_LANG_PROGRAM before feeding it to
11633         AC_COMPILE_IFELSE.  Cleanup grep usage.
11635 2001-08-20  Akim Demaille  <akim@epita.fr>
11637         * ChangeLog, ChangeLog.0, ChangeLog.1, ChangeLog.2, AUTHORS, BUGS,
11638         * NEWS, README, README-alpha, TODO, tests/README: This package is
11639         `Autoconf', not `autoconf' (the executable).
11641 2001-08-20  Akim Demaille  <akim@epita.fr>
11643         Info readers seem to need `Index' in the index node title :(
11645         * doc/autoconf.texi: Reverse the 2001-08-15 change which
11646         simplified index node names.
11648 2001-08-20  Akim Demaille  <akim@epita.fr>
11650         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Warn if the
11651         arguments are not literals.
11652         * doc/autoconf.texi (Input) <AC_INIT>: Arguments must be literals.
11653         Specify the output variables, and macros defined.
11655 2001-08-20  Akim Demaille  <akim@epita.fr>
11657         * doc/autoconf.texi (Examining Declarations) <AC_TRY_CPP>:
11658         (Examining Syntax) <AC_TRY_COMPILE>
11659         (Examining Libraries) <AC_TRY_LINK>
11660         (Test Programs) <AC_TRY_RUN>: These macros double quote some of
11661         their arguments.
11662         Reported by Werner Lemberg.
11664 2001-08-20  Akim Demaille  <akim@epita.fr>
11666         * lib/autotest/general.m4 (AT_INIT): Compute top_builddir,
11667         top_srcdir and srcdir from at_topbuild_2_topsrc and at_testdir.
11668         Load atlocal late enough to dump it in the log.
11669         * m4/atconfig.m4 (AT_CONFIG): Pass them to atconfig.
11671 2001-08-20  Akim Demaille  <akim@epita.fr>
11673         * tests/torture.at (Configuring subdirectories): New test.
11674         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Say what you are
11675         looking for.
11676         * m4/atconfig.m4: Be sure the let $[0] be expandable.
11677         (top_srcdir): Fix its computation.
11679 2001-08-20  Akim Demaille  <akim@epita.fr>
11681         * lib/autoconf/general.m4 (_AC_OUTPUT_COMMANDS): Say what you do.
11682         * m4/atconfig.m4 (AT_CONFIG): $1 is now the directory where the
11683         test suite lives.
11684         Create `atconfig' automagically.
11685         Configure atlocal.in if present.
11686         * tests/atconfig.in: Remove.
11687         * tests/atlocal.in: New.
11688         * tests/Makefile.am: Adjust.
11690 2001-08-20  Akim Demaille  <akim@epita.fr>
11692         Huh!?!?!  There are still some user EOF tags used, which prevents
11693         their use in AC_CONFIG_COMMANDS for instance...
11695         * lib/autoconf/general.m4, lib/autoconf/specific.m4,
11696         * lib/autotest/general.m4: Rename the EOF tags as `_ACEOF',
11697         `_CSEOF', or `_ATEOF', as appropriate.
11698         * lib/m4sugar/Makefile.am, lib/autoconf/Makefile.am,
11699         * lib/autotest/Makefile.am (check-local): Enforce this constraint.
11701 2001-08-20  Akim Demaille  <akim@epita.fr>
11703         * tests/base.at, tests/m4sh.at, tests/m4sugar.at,
11704         * tests/semantics.at, tests/tools.at, tests/torture.at:
11705         s/^AT_DATA\(([^][]+),/AT_DATA([$1],/.
11707 2001-08-20  Akim Demaille  <akim@epita.fr>
11709         Autotest invokes M4sh's initialization.
11711         * lib/autotest/general.m4: Adjust the diversion names.
11712         (AT_INIT): Run AS_INIT.
11713         Use the BINSH diversion to invoke /bin/sh.
11714         * tests/base.at, tests/m4sh.at, tests/m4sugar.at, tests/tools.at:
11715         * tests/torture.at: Respect M4sugar and M4sh macro name spaces.
11717 2001-08-20  Akim Demaille  <akim@epita.fr>
11719         Let M4sh have its own diversions.
11721         * lib/autoconf/general.m4 (_m4_divert(BINSH), _m4_divert(REVISION))
11722         (_m4_divert(NOTICE)): Rename as...
11723         * lib/m4sugar/m4msh.m4 (_m4_divert(BINSH), _m4_divert(HEADER-REVISION))
11724         (_m4_divert(HEADER-COMMENT)): these.
11725         (_m4_divert(HEADER-COPYRIGHT), _m4_divert(HEADER-COPYRIGHT)): New.
11726         (_m4_divert(NOTICE)): New, for Libtool.
11727         * lib/autoconf/general.m4 (_m4_divert(PREPARE)): Remove, replaced
11728         long ago with `_m4_divert(GROW)'.
11729         (AC_COPYRIGHT, AC_REVISION, _AC_INIT_NOTICE): Adjust.
11731 2001-08-20  Akim Demaille  <akim@epita.fr>
11733         * tests/base.at, tests/compile.at, tests/foreign.at,
11734         * tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
11735         * tests/semantics.at, tests/suite.at, tests/tools.at,
11736         * tests/torture.at: Ask Autotest mode, not Autoconf mode.
11738 2001-08-20  Akim Demaille  <akim@epita.fr>
11740         * bin/autom4te.in (handle_output): Handle @__@.
11742 2001-08-20  Akim Demaille  <akim@epita.fr>
11744         * lib/autoconf/autoconf.m4, lib/autoconf/oldnames.m4,
11745         * lib/autotest/general.m4: Adjust the license.
11747 2001-08-17  Paul Eggert  <eggert@twinsun.com>
11749         * doc/autoconf.texi (Function Portability): Mention snprintf,
11750         following up on a suggestion by Kevin Ryde.
11752 2001-08-17  Akim Demaille  <akim@epita.fr>
11754         * doc/install.texi, doc/autoconf.texi: Use `autoconf', not
11755         `autoconf_manual', as texinfo.tex 2001-06-21.10 chokes on it.
11757 2001-08-17  Akim Demaille  <akim@epita.fr>
11759         * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
11760         `$0.log' as for projects where testsuite is in src, we'd have
11761         testsuite.log created in src.
11763 2001-08-17  Akim Demaille  <akim@epita.fr>
11765         * bin/autom4te.in (&parse_args): Recognize --normalize.
11767 2001-08-17  Akim Demaille  <akim@epita.fr>
11769         Start implementing the AC_CHECK_HEADER transition scheme.
11771         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
11772         (_AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_MONGREL): New.
11773         (AC_CHECK_HEADER): Use them.
11775 2001-08-17  Akim Demaille  <akim@epita.fr>
11777         * doc/autoconf.texi: Work around Texinfo buglets.
11778         (Transformation Rules): One example is enough, users are expected
11779         to have their brains on. And BTW, use DESTDIR.
11780         (dvar): New macro.  Use it.
11782 2001-08-17  Akim Demaille  <akim@epita.fr>
11784         * doc/autoconf.texi (Writing testsuite.at) <AT_CHECK>: Complete.
11785         * lib/autotest/general.m4 (AT_INIT): Use the relative dir when
11786         looking for ChangeLogs.
11788 2001-08-17  Akim Demaille  <akim@epita.fr>
11790         * bin/autom4te.in: --normalize is a new option.
11791         * bin/autoconf.in: Use it.
11793 2001-08-17  Akim Demaille  <akim@epita.fr>
11795         * bin/Makefile.am, lib/Autom4te/Makefile.am, lib/autoconf/Makefile.am
11796         * lib/autotest/Makefile.am, lib/m4sugar/Makefile.am: Add TAGS support.
11798 2001-08-16  Paul Eggert  <eggert@twinsun.com>
11800         * doc/autoconf.texi, doc/install.texi: Put copyright notice at
11801         start, not at end.
11803 2001-08-15  Akim Demaille  <akim@epita.fr>
11805         * doc/Makefile.am (fu): New index, can't use fn because of defmac.
11806         Use it.
11808 2001-08-15  Akim Demaille  <akim@epita.fr>
11810         * doc/autoconf.texi (pr): New index.
11811         (prindex, findex): Use, merge, and output them.
11812         (Environment Variable Index, Output Variable Index)
11813         (Preprocessor Symbol Index, Autoconf Macro Index, M4 Macro Index)
11814         (Autotest Macro Index): Rename as...
11815         (Environment Variables, Output Variables,Preprocessor Symbols)
11816         (Autoconf Macros, M4 Macros, Autotest Macros): these.
11817         * doc/install.texi: Use @command.
11818         (Environment Variables): Rename as...
11819         (Defining Variables): this.
11821 2001-08-15  Akim Demaille  <akim@epita.fr>
11823         * doc/autoconf.texi (Function Portability): sprintf's return
11824         value.
11825         From Kevin Ryde.
11827 2001-08-15  Akim Demaille  <akim@epita.fr>
11829         * Makefile.maint (CVS): New.
11830         (local-check): Run changelog-check. last.
11831         (alpha): Don't depend upon local-check, since...
11832         (cvs-dist): depends upon it.
11834 2001-08-15  Tim Van Holder  <tim.van.holder@pandora.be>
11836         * tests/Makefile.am: Use a clean-local rule to remove
11837         autom4te.cache (it's a directory, not a file.
11838         * Makefile.am: Ditto (but maintainer-clean-local).
11840 2001-08-15  Akim Demaille  <akim@epita.fr>
11842         * bin/autom4te.in (@m4_warning): New.
11843         (&handle_m4): Use it.
11844         * tests/m4sugar.at (m4_warn): Pass `-f' to autom4te to ensure the
11845         warnings are issued at each run.
11846         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): M4sugar
11847         is in the src tree.
11849 2001-08-15  Akim Demaille  <akim@epita.fr>
11851         * tests/atspecific.m4 (AT_CHECK_AUTOUPDATE): Perl is now required:
11852         don't waste time running `autoupdate --version' works.
11853         * tests/tools.at (autoupdating AC_PREREQ): Likewise.
11855 2001-08-13  Akim Demaille  <akim@epita.fr>
11857         * doc/autoconf.texi (ma): Rename this index as...
11858         (ac): this.
11860 2001-08-13  Akim Demaille  <akim@epita.fr>
11862         * Makefile.am: Remove dead code and dead comments.
11863         (pdf, html): New targets.
11864         * doc/autoconf.texi (Using Autotest): New chapter.
11865         * doc/Makefile.am (pdf): New targets.
11866         (CLEANFILES): Adjust.
11868 2001-08-13  Akim Demaille  <akim@epita.fr>
11870         * lib/autotest/general.m4 (AT_INIT): Log the start/stop dates and
11871         duration of the test suite.
11873 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
11875         * tests/semantics.at (AC_C_BIGENDIAN): Explicitelly save and load
11876         endianness for comparison instead of relying on AT_CHECK_ENV.
11878 2001-08-11  Paul Eggert  <eggert@twinsun.com>
11880         * doc/autoconf.texi, doc/install.texi: Add a copyright notice
11881         to the INSTALL file.
11883 2001-08-11  Paul Eggert  <eggert@twinsun.com>
11885         * NEWS: The autoconf manual now is distributed under the terms
11886         of the GNU Free Documentation License.
11888         * doc/autoconf.texi: Switch from old style copyright notice to FDL.
11889         Add an appendix "Copying This Manual" for the FDL.
11891         * doc/fdl.texi: New file, from
11892         <http://www.gnu.org/licenses/fdl.texi>.
11894         * doc/Makefile.am (autoconf_TEXINFOS): Add fdl.texi.
11896 2001-08-10  Paul Eggert  <eggert@twinsun.com>
11898         * AUTHORS, BUGS, ChangeLog, ChangeLog.0, ChangeLog.1,
11899         ChangeLog.2, GNUmakefile, Makefile.maint, NEWS, README,
11900         README-alpha, TODO, configure.ac, lib/autoconf/Makefile.am,
11901         m4/atconfig.m4, m4/init.m4, m4/m4.m4, m4/missing.m4,
11902         m4/sanity.m4, tests/README, tests/aclocal.m4,
11903         tests/atspecific.m4, tests/base.at, tests/compile.at,
11904         tests/foreign.at, tests/m4sh.at, tests/m4sugar.at,
11905         tests/semantics.at, tests/suite.at, tests/tools.at,
11906         tests/torture.at: Add copyright notice.
11908         * tests/mktests.sh: Update year in copyright notice.
11910 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
11912         * tests/semantics.at (AC_C_BIGENDIAN): New test.
11914 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
11916         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Handle ACTION-IF-TRUE,
11917         ACTION-IF-FALSE, and ACTION-IF-UNKNOWN.
11918         * doc/autoconf.texi (C Compiler Characteristics): Update
11919         documentation for AC_C_BIGENDIAN.
11921 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
11923         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Guess endianness by grep'ing
11924         magic values from an object file when cross-compiling.
11925         Based on code by Guido Draheim <Guido.Draheim@gmx.de>.
11927 2001-08-10  Akim Demaille  <akim@epita.fr>
11929         * bin/autom4te.in (&handle_output): Don't use `grep' with side
11930         effects.
11931         Suggested by Russ Allbery.
11933 2001-08-10  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
11935         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Propagate the
11936         current $prefix to the sub-configures.
11938 2001-08-09  Tim Van Holder  <tim.van.holder@pandora.be>
11940         * lib/autoconf/lang.m4: Ignore *.xSYM when looking for an executable
11941         extension (needed on BeOS).  Reported by Guido van Rossum.
11943 2001-08-09  Akim Demaille  <akim@epita.fr>
11945         * bin/autom4te.in ($icache): Load it only if older than autom4te.
11947 2001-08-07  Akim Demaille  <akim@epita.fr>
11949         * lib/autotest/general.m4 (AT_INIT): All the `at-*' are to be
11950         removed.
11951         (at-setup-line): Huh?  Be a variable `at_setup_line', not a file.
11952         No need to remove the files before and after the each test, before
11953         each test and at the end of the suite is enough.
11954         Display only the children `times', not the shell's.
11955         If the test failed or was skipped, at-times is not available.
11957 2001-08-07  Akim Demaille  <akim@epita.fr>
11959         Always produce testsuite.log, including when there are no
11960         failures.  This helps getting information on skipped tests, and
11961         duration of the tests.  Err, implement the latter btw.
11963         * lib/autotest/general.m4 (AT_INIT): Set up fd 6 for the log.
11964         Dump information on the first run of each test.
11965         (AT_CLEANUP): Create `at-times' containing the duration of the
11966         test group.
11968 2001-08-07  Akim Demaille  <akim@epita.fr>
11970         The use of `dumpstat' revealed that `len' was used although it
11971         should not.  m4_text_wrap was using it, but in the Autoconf world
11972         where it is legal.  Hence (i) test M4sh in its own world, not
11973         Autoconf's, and (ii), ahem, fix the bug :)
11975         * lib/autotest/general.m4: Be sure the set good quotes, as tracing
11976         does not like `' instead of [].
11977         (AT_INIT): Forbid `^_?AT_'.
11978         And don't output such tokens.
11979         * tests/Makefile.am (CLEANFILES): Add `script', `script.s4g',
11980         `script.as', and `autom4te.cache'.
11981         Remove `empty' and `macro' which are no longer used.
11982         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): New.
11983         * tests/m4sugar.at: Use it.
11984         * lib/m4sugar/m4sugar.m4: Use `m4_len' not `len'.
11986 2001-08-07  Akim Demaille  <akim@epita.fr>
11988         * bin/autoconf.in, bin/autoheader.in: --force, -f is a new option.
11990 2001-08-07  Alexandre Duret-Lutz  <duret_g@epita.fr>
11992         * bin/autom4te.in (handle_output): Typo in quadrigraph substitution.
11994 2001-08-04  Akim Demaille  <akim@epita.fr>
11996         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, AC_FUNC_ERROR_AT_LINE)
11997         (AC_FUNC_FSEEKO, AC_FUNC_OBSTACK): Use AC_LANG_IFELSE, not
11998         AC_TRY_LINK.
11999         * lib/autoconf/headers.m4 (AC_HEADER_MAJOR): Likewise.
12000         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS)
12001         (AC_F77_MAIN): Likewise.
12003 2001-08-04  Akim Demaille  <akim@epita.fr>
12005         Don't rely on M4sugar outputting the patterns in files, since we
12006         might process the output _without_ running m4, hence without these
12007         files.
12009         * lib/m4sugar/m4sugar.m4 (m4_init): No need for `m4_tmpdir'.
12010         * bin/autom4te.in (@Request::includes): Remove, unused.
12011         (@Request::source): Rename as...
12012         (@Request::input): this.
12013         (@preselect): Add `m4_pattern_forbid' and `m4_pattern_allow'.
12014         (&handle_output): Fetch the patterns from the traces.
12015         `$forbidden' and `$allowed' are constant: use m//o.
12016         (&handle_m4): M4sugar no longer wants `m4_tmpdir'.
12017         (m4_pattern_forbid, m4_pattern_allow): Adjust for tracing only.
12019 2001-08-04  Akim Demaille  <akim@epita.fr>
12021         `autoconf && autoheader' is sped up.  Now, speed up `autoheader &&
12022         autoconf', i.e., in addition to caching traces, cache the output.
12024         * bin/autom4te.in (Request::cache): Rename as...
12025         (Request::id): this.
12026         ($cache, $icache, $tcache, $ocache): New.
12027         (&handle_m4): Save M4 output in the cache instead of $tmp.
12028         (&handle_output): Adjust.
12029         (&up_to_date_p): Check that the output cache is up to date too.
12030         (top level): Run `&handle_m4' iff force or the cache is invalid.
12031         Run `&handle_output' if the output cache is more recent.
12033 2001-08-04  Akim Demaille  <akim@epita.fr>
12035         * bin/autom4te.in ($force): New.
12036         (&parse_args, &print_usage): -f, --force is a new option.
12037         (&handle_output): CPP directives might have spaces after `#'.
12038         (&parse_args): The first file only can be frozen.
12040 2001-08-04  Akim Demaille  <akim@epita.fr>
12042         Don't let autom4te compute the `include' traces several times:
12043         first check that the trace cache file is up to date, and then
12044         compare its timestamp with that of the output.
12046         * bin/autom4te.in, bin/autoupdate.in, bin/autoscan.in: Normalize
12047         the preamble.  Don't require 5.005 as Autom4te::General does it,
12048         and better yet (use `use', not `require'!).
12049         * lib/Autom4te/Struct.pm: Rename the last occurrences of
12050         Class::Struct as Autom4te::Struct.
12051         * lib/Autom4te/General.pm (File::stat): Use it.
12052         (&mtime): New, export it.
12053         * bin/autom4te.in: Use it.
12054         Declare `$req' is invalid if it is outdated.
12055         Don't declare it valid before saving it if something went wrong.
12057 2001-08-04  Akim Demaille  <akim@epita.fr>
12059         Autom4te shall not encode Autoconf data, and preselecting traces
12060         must be proposed to the users.
12062         * bin/autom4te.in (@required_trace): Remove.
12063         (@preselect): New.
12064         (&parse_args, &print_usage): -p, --preselect is a new option.
12065         (&up_to_date_p): Adjust.
12066         * bin/autoconf.in: Preselect some Autoconf macros.
12068 2001-08-04  Akim Demaille  <akim@epita.fr>
12070         * tests/tools.at (autoconf --trace: user macros): Check traces on
12071         macros invoked without arguments, and macros invoked with multiple
12072         lines arguments.
12074 2001-08-03  Alexandre Duret-Lutz  <duret_g@epita.fr>
12076         * bin/autom4te.in (handle_traces): Fix rewriting of traces without
12077         arguments.
12079 2001-08-03  Akim Demaille  <akim@epita.fr>
12081         * bin/autoconf.in ($@): Work around the usual sh bug.
12082         From Nicolas Joly.
12084 2001-08-03  Akim Demaille  <akim@epita.fr>
12086         Clean up the handling of the M4 builtins tracing exception.
12088         * bin/autom4te.in (Request::request): Don't complete M4 builtins
12089         trace requests.
12090         (@m4_builtins): Rename as...
12091         (@m4_builtin): this.
12092         (%m4_builtin_alternate_name): New.
12093         (&parse_args): Complete the trace requests with alternate names.
12094         (&handle_traces): Hence no longer do it here.
12095         (&trace_requests): Remove, unused.
12097 2001-08-03  Akim Demaille  <akim@epita.fr>
12099         * doc/autoconf.texi (Redefined M4 Macros): Document m4_exit,
12100         m4_if, and m4_wrap.
12102 2001-08-03  Akim Demaille  <akim@epita.fr>
12104         * lib/m4sugar/m4sugar.m4 (m4_init): Also forbid `_m4_*' tokens.
12105         (m4_divert_pop): Dump the whole diversion stack when a diversion
12106         mismatch happens.
12107         * bin/autom4te.in (&handle_output): Remember of the first
12108         occurrence of a possibly undefined macro, not the last.
12109         Complain about the possibly undefined macros in the same order as
12110         the appear in the output.
12111         * lib/autoconf/Makefile.am (autoconf.m4f): List its dependencies.
12112         * tests/tools.at (autoconf: forbidden tokens, basic)
12113         (autoconf: forbidden tokens, exceptions): No longer sort
12114         autoconf's stderr, as it is now deterministic.
12115         Check that `dnl' is caught.
12117 2001-08-01  Akim Demaille  <akim@epita.fr>
12119         * configure.ac: Bump to 2.52c.
12121 2001-08-01  Akim Demaille  <akim@epita.fr>
12123         Version 2.52b.
12125         * lib/Autom4te/Makefile.am (perllibdir): s/Autoconf/Autom4te/.
12127 2001-08-01  Akim Demaille  <akim@epita.fr>
12129         Version 2.52a.
12131 2001-08-01  Akim Demaille  <akim@epita.fr>
12133         * lib/Autom4te/General.pm: Use `carp' and `croak', not `warn' and
12134         `die'.
12135         (&END): New.
12136         * bin/autoconf.in, bin/autom4te.in, bin/autoupdate.in: Remove your
12137         `END', as `Autom4te::General::END' will be triggered.
12138         * bin/autoupdate.in, bin/autoscan.in: Improve error messages accuracy.
12139         * bin/autoupdate.in (File::Compare, File::Copy): Use them instead of
12140         system to run `mv', `rm', and `cmp'.
12142 2001-08-01  Akim Demaille  <akim@epita.fr>
12144         * lib/Autom4te/General.pm (&unique): New.
12145         * bin/autoscan.in (&output): Use it to issue trace requests once.
12147 2001-08-01  Akim Demaille  <akim@epita.fr>
12149         * lib/Autom4te/General.pm: New.
12150         * bin/autom4te.in (Autom4te::General): Use it.
12151         ($me, $tmp, $verbose, $debug, &mktmpdir, &verbose, &xsystem)
12152         (&find_configure_ac, &find_slave): Remove.
12153         * bin/autoscan.in: Likewise.
12154         * bin/autoupdate.in: Likewise.
12156 2001-08-01  Akim Demaille  <akim@epita.fr>
12158         * autoconf.in, autom4te.in, autoscan.in, ifnames.in,
12159         * autoheader.in, autoreconf.in, autoupdate.in: Move to...
12160         * bin: here, new directory.
12161         * lib/Autoconf: Rename as...
12162         * lib/Autom4te: this, to please case insensitive junkie OSes.
12164 2001-08-01  Akim Demaille  <akim@epita.fr>
12166         * autom4te.in ($m4): Handle the --nesting-limit.
12167         * autoconf.in (M4): Remove.
12169 2001-08-01  Akim Demaille  <akim@epita.fr>
12171         * autoconf.in ($AWK): Remove, no longer used.
12172         * test/tools.at: Use AT_CHECK_AUTOCONF.
12173         (AWK portability): Remove, for autoconf no longer uses AWK.
12174         (Syntax of the Perl scripts): New.
12175         * configure.ac: autoconf no longer needs an AWK with a good
12176         regexp engine.
12177         Use a static test on AC_PACKAGE_VERSION.
12178         * autom4te.in (&up_to_date_p): Output depends on the arguments.
12179         * lib/autoconf/Makefile.am: Ship version.m4, maintainer file.
12180         * tests/atconfig.in (PERL): New.
12182 2001-08-01  Akim Demaille  <akim@epita.fr>
12184         * lib/autoconf/lang.m4 (AC_LANG(C), AC_LANG_C, _AC_LANG_ABBREV(C))
12185         (AC_LANG(C++), AC_LANG_CPLUSPLUS, _AC_LANG_ABBREV(C++))
12186         (AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C), AC_LANG_CALL(C))
12187         (AC_LANG_FUNC_LINK_TRY(C), AC_LANG_BOOL_COMPILE_TRY(C))
12188         (AC_LANG_INT_SAVE(C), _AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
12189         (AC_LANG_PREPROC(C), _AC_PROG_PREPROC_WORKS_IFELSE, AC_PROG_CPP)
12190         (AC_LANG_COMPILER(C), ac_cv_prog_gcc, AC_PROG_CC, _AC_PROG_CC_G)
12191         (AC_PROG_GCC_TRADITIONAL, AC_PROG_CC_C_O, AC_LANG_PREPROC(C++))
12192         (AC_PROG_CXXCPP, AC_LANG_COMPILER(C++), ac_cv_prog_gxx)
12193         (AC_PROG_CXX, _AC_PROG_CXX_G, _AC_PROG_CXX_EXIT_DECLARATION)
12194         (AC_PROG_CC_STDC, AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE)
12195         (AC_C_BIGENDIAN, AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE)
12196         (AC_C_STRINGIZE, AC_C_PROTOTYPES): Move to...
12197         * lib/autoconf/c.m4: here, new file.
12199         * lib/autoconf/lang.m4 (AC_LANG(Fortran 77), AC_LANG_FORTRAN77)
12200         (_AC_LANG_ABBREV(Fortran 77), AC_LANG_SOURCE(Fortran 77))
12201         (AC_LANG_PROGRAM(Fortran 77), AC_LANG_CALL(Fortran 77))
12202         (AC_LANG_PREPROC(Fortran 77), AC_LANG_COMPILER(Fortran 77))
12203         (ac_cv_prog_g77, AC_PROG_F77, _AC_PROG_F77_G, AC_PROG_F77_C_O)
12204         (_AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V, AC_F77_LIBRARY_LDFLAGS)
12205         (AC_F77_DUMMY_MAIN, _AC_LANG_PROGRAM_C_F77_HOOKS, AC_F77_MAIN)
12206         (_AC_F77_NAME_MANGLING, AC_F77_NAME_MANGLING, AC_F77_WRAPPERS)
12207         (AC_F77_FUNC): Move to...
12208         * lib/autoconf/fortran.m4: here, new file.
12210 2001-08-01  Akim Demaille  <akim@epita.fr>
12212         * acfunctions.m4: Rename as...
12213         * lib/autoconf/functions.m4: this.
12214         * acgeneral.m4: Rename as...
12215         * lib/autoconf/general.m4: this.
12216         * acheaders.m4: Rename as...
12217         * lib/autoconf/headers.m4: this.
12218         * aclang.m4: Rename as...
12219         * lib/autoconf/lang.m4: this.
12220         * acoldnames.m4: Rename as...
12221         * lib/autoconf/oldnames.m4: this.
12222         * acspecific.m4: Rename as...
12223         * lib/autoconf/specific.m4: this.
12224         * actypes.m4: Rename as...
12225         * lib/autoconf/types.m4: this.
12226         * autoconf.m4: Rename as...
12227         * lib/autoconf/autoconf.m4: this.
12229         * m4sugar.m4: Rename as...
12230         * lib/m4sugar/m4sugar.m4: this.
12231         * m4sh.m4: Rename as...
12232         * lib/m4sugar/m4sh.m4: this.
12234         * tests/atgeneral.m4: Rename as...
12235         * lib/autotest/general.m4: this.
12237         * acfunctions: Rename as...
12238         * lib/autoscan/functions: this.
12239         * acheaders: Rename as...
12240         * lib/autoscan/headers: this.
12241         * acidentifiers: Rename as...
12242         * lib/autoscan/identifiers: this.
12243         * aclibraries: Rename as...
12244         * lib/autoscan/libraries: this.
12245         * acmakevars: Rename as...
12246         * lib/autoscan/makevars: this.
12247         * acprograms: Rename as...
12248         * lib/autoscan/programs: this.
12250 2001-08-01  Akim Demaille  <akim@epita.fr>
12252         * doc/autoconf.texi: Moving/deleting open files is not portable.
12253         Portability issues for `.' (source), and more information about sed.
12255 2001-07-25  Steven G. Johnson  <stevenj@alum.mit.edu>
12257         * aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Ignore -libmil (on Solaris),
12258         which has a special meaning and is not a reference to libibmil.a.
12259         Reported by Matteo Frigo.
12261 2001-07-25  Pavel Roskin  <proski@gnu.org>
12263         * autom4te.in (mktmpdir): Strip trailing newline from mktemp
12264         output.
12266 2001-07-25  Akim Demaille  <akim@epita.fr>
12268         * autoconf.in: Try to define the variables before using them.
12269         * autom4te.in ($perllibdir): Use `$autom4te_perllibdir' as envvar
12270         instead of `$perllibdir'.
12271         * tests/atconfig.in ($autom4te_perllibdir): Export it.
12273 2001-07-25  Akim Demaille  <akim@epita.fr>
12275         * autoconf.in (ac_LF_and_DOT): Remove, unused.
12277 2001-07-24  Akim Demaille  <akim@epita.fr>
12279         Let autoconf use autom4te for traces.
12281         * autoconf.in ($task, task trace): Remove, merely pass --trace to
12282         autom4te.
12283         * autoheader.in: Don't pass `-' to autoconf, rather, a tmp file.
12284         (Because I found no way for autom4te to accept `-').
12285         * autom4te.in (&Request::request): Beware of M4 builtins.
12286         (END): Don't try to remove the content of an empty dir.
12287         (&parse_args): Default is `$f:$l:$n:$%', not `$f:$l:$n:$*'.
12288         (&handle_output): Set a default value to `$forbidden'.
12289         * autoupdate.in (&verbose, &xsystem): New, from autom4te.in.
12290         ($autoconf): Pass --debug and --verbose.
12291         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Clean up autom4te's
12292         cache.
12294 2001-07-24  Akim Demaille  <akim@epita.fr>
12296         Let autoconf use autom4te to create configure.
12298         * autoconf.in ($automate): New var.
12299         (task script): Use autom4te.
12300         * autom4te.in (File::Spec): Use it.
12301         (&find_file): New.
12302         (&parse_args): --warning is -W, not -w.
12303         Find the top level files.
12304         (&handle_m4): Pass the warnings flags.
12305         Don't report verbosely m4's failures, unless requested.
12306         (&handle_output): Don't complain for forbidden tokens in comments.
12307         Be sure to report all the forbidden tokens within a single line.
12308         (&trace_format_to_m4): Preserve `$_'.
12309         (&handle_traces): Sort the output macros.
12310         (&up_to_date_p): Find the files before trying to get its time stamp.
12312 2001-07-24  Akim Demaille  <akim@epita.fr>
12314         * Makefile.am: Ship, build and install Autom4te.
12315         (SUBDIRS): Add lib.
12316         * lib/Autoconf/Struct.pm: New, from Automake 1.5.
12317         * configure.in: Require Perl.
12318         * man/autom4te.in: New.
12320 2001-07-19  Paul Eggert  <eggert@twinsun.com>
12322         * doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
12323         example, rather than (exit 1); exit (which isn't portable).
12325 2001-07-18  Akim Demaille  <akim@epita.fr>
12327         Version 2.52.
12329 2001-07-18  Akim Demaille  <akim@epita.fr>
12331         The C-Fortran 77 hooks are available only once AC_F77_DUMMY_MAIN
12332         was run, while they are needed also when it is expanded.
12333         Reported by Nicolas Joly.
12335         * aclang.m4 (AC_F77_DUMMY_MAIN): Define _AC_LANG_PROGRAM_C_F77_HOOKS.
12336         (AC_LANG_PROGRAM(C)): Use it instead of depending upon
12337         AC_F77_DUMMY_MAIN being expanded.
12339 2001-07-18  Akim Demaille  <akim@epita.fr>
12341         * configure.in: Bump to 2.51a.
12343 2001-07-17  Akim Demaille  <akim@epita.fr>
12345         Version 2.51.
12347 2001-07-17  Akim Demaille  <akim@epita.fr>
12349         * aclang.m4 (AC_F77_DUMMY_MAIN): Let the interface be more
12350         Autoconfy: $1 = action-if-found, $2 = action-if-not-found.
12352 2001-07-17  Akim Demaille  <akim@epita.fr>
12354         The runtime test for AC_FUNC_GETPGRP fails when prototypes are
12355         used.  Well, then use the prototypes when you can, and runtime as
12356         a last resort.
12357         Reported by Artur Frysiak
12359         * acfunctions.m4 (_AC_FUNC_GETPGRP_TEST): New.
12360         (AC_FUNC_GETPGRP): Use it.
12361         First try to compile with 0-ary or 1-ary calls.
12363 2001-07-17  Akim Demaille  <akim@epita.fr>
12365         * actypes.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P): `foo_t' is a
12366         replacement type.
12367         From Paul Eggert.
12369 2001-07-17  Akim Demaille  <akim@epita.fr>
12371         * Makefile.maint: Sync. with cppi 1.10.
12373 2001-07-17  Akim Demaille  <akim@epita.fr>
12375         * aclang.m4 (AC_LANG_PROGRAM(C)): Output F77_DUMMY_MAIN only when
12376         AC_F77_DUMMY_MAIN has been run.
12377         From Pavel Roskin and Steven G. Johnson.
12379 2001-07-17  Akim Demaille  <akim@epita.fr>
12381         * configure.in: Rename as...
12382         * configure.ac: this.
12384 2001-07-17  Akim Demaille  <akim@epita.fr>
12386         * Makefile.am (INSTALL.txt): Don't use $@ and $< in non suffix
12387         rules.
12388         From Marc Espie.
12389         * Makefile.maint (release-archive-dir): Rename as...
12390         (release_archive_dir): this, so that it can be specialized in
12391         Makefile.
12393 2001-07-14  Akim Demaille  <akim@epita.fr>
12395         * configure.in: Bump to 2.50d.
12397 2001-07-14  Akim Demaille  <akim@epita.fr>
12399         Version 2.50c.
12400         * Makefile.maint (alpha): Typo.
12402 2001-07-14  Akim Demaille  <akim@epita.fr>
12404         * doc/autoconf.texi (Limitations of Make): Macro names and underscore.
12406 2001-07-14  Akim Demaille  <akim@epita.fr>
12408         * config/config.guess, config/config.sub, config/texinfo.tex
12409         * doc/standards.texi, doc/make-stds.texi: Update.
12411 2001-07-14  Akim Demaille  <akim@epita.fr>
12413         * Makefile.maint (cvs-check, cvs-tag-check, cvs-diff-check): New.
12415 2001-07-14  Akim Demaille  <akim@epita.fr>
12417         * Makefile.maint (maintainer-check): Rename as...
12418         (maintainer-distcheck): this.
12419         (changelog-check, static-check): New.
12420         Use them.
12422 2001-07-14  Kevin Ryde  <user42@zip.com.au>
12424         * doc/autoconf.texi (C++ Compilers Characteristics): Last resort
12425         for CXX is g++, not gcc.
12427 2001-07-14  Akim Demaille  <akim@epita.fr>
12429         * doc/autoconf.texi (Files): New subsection.
12431 2001-07-14  Akim Demaille  <akim@epita.fr>
12433         * doc/autoconf.texi (C Compiler, Fortran 77 Compiler): Be subsections
12434         of...
12435         (Generic Compiler Characteristics): this.
12436         (C++ Compiler): New subsection.
12438 2001-07-14  Akim Demaille  <akim@epita.fr>
12440         * autoscan.in: Use IO::File.
12441         Adjust all the routines to use it.
12442         ($log): New file (autoscan.log).
12443         (output): Dump detailed logs into $log, and a shortened version to
12444         stderr.
12445         (&scan_makefile): Refine the regexp catching tokens in the code.
12446         * doc/autoconf.texi (autoscan Invocation): Document `autoscan.log'
12447         and the `configure.ac' checking feature.
12449 2001-07-12  Akim Demaille  <akim@epita.fr>
12451         For some AWK, such as on HPUX 11, `xfoo' does not match `foo|^bar'.
12452         Reported by Michael Elizabeth Chastain.
12454         * autoconf.in: Refuse such AWK.
12455         * configure.in: Likewise.
12456         * Makefile.am (acversion.m4): Do not use move-if-change this file
12457         has dependencies.
12458         * doc/autoconf.texi (Fortran 77 Compiler): Some typos.
12460 2001-07-10  Jens Petersen  <petersen@redhat.com>
12462         * autoscan.in (&scan_makefile): Improve programs regexp to parse
12463         things like "g++", "file.c" and "some-conf" as tokens.
12464         (&scan_file): Match C++ files extensions.
12465         If the filename extension is C++ then ask for c++.
12467 2001-07-05  Steven G. Johnson  <stevenj@alum.mit.edu>
12469         * aclang.m4 (AC_F77_DUMMY_MAIN): Use AC_TRY_LINK, not
12470         AC_TRY_LINK_FUNC, to check whether defining a dummy
12471         main-like routine is needed for linking with F77 libs.
12473 2001-07-05  Pavel Roskin  <proski@gnu.org>
12475         * aclocal.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Remove conftest*
12476         after using break.
12477         (_AC_PROG_F77_V_OUTPUT): Remove conftest*, not conftest.* after
12478         linking.
12480 2001-07-05  Akim Demaille  <akim@epita.fr>
12482         * Makefile.am (move_if_change): New.  Use it instead of `mv'.
12483         (acversion.m4): Name it `$(srcdir)/acversion.m4' to ease broken
12484         Makes' lives.
12485         Reported by Nicolas Joly.
12487 2001-07-04  Akim Demaille  <akim@epita.fr>
12489         * acgeneral.m4 (_AC_RUN_IFELSE): Remove conftest.o when cleaning
12490         up.
12491         * acfunctions.m4 (AC_FUNC_WAIT3): Use `break' to silent some
12492         warnings from compilers.
12493         * aclang.m4 (_AC_LANG_COMPILER_GNU): Log the version information
12494         for all the compilers, not only GNU.  Hence move from here...
12495         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77): to here.
12497 2001-07-04  Akim Demaille  <akim@epita.fr>
12499         * acfunctions.m4 (AC_FUNC_STRTOD, AC_FUNC_STRERROR_R)
12500         (AC_FUNC_STRCOLL, AC_FUNC_WAIT3): Use AC_RUN_IFELSE and
12501         AC_COMPILE_IFELSE.
12503 2001-07-04  Akim Demaille  <akim@epita.fr>
12505         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Actually apply
12506         the ``strings.h'' change claimed below.
12508 2001-07-04  Akim Demaille  <akim@epita.fr>
12510         * aclang.m4 (_AC_LANG_COMPILER_GNU): s/-dumpspecs/-v/.
12512 2001-07-04  Akim Demaille  <akim@epita.fr>
12514         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
12515         strings.h if usable with string.h.
12516         Suggested by Paul Eggert.
12518 2001-07-04  Akim Demaille  <akim@epita.fr>
12520         * autoscan.in (&scan_file): Skip FILE if there is FILE.in.
12521         From Jens Petersen.
12523 2001-07-03  Akim Demaille  <akim@epita.fr>
12525         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Specify CONFIG_FILES
12526         etc. in the log.
12528 2001-07-03  Akim Demaille  <akim@epita.fr>
12530         * acheaders.m4 (AC_CHECK_HEADER): When INCLUDES are set, use the
12531         compiler, not the preprocessor.
12532         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): No longer use
12533         dedicated code to check for inttypes.h, as AC_CHECK_HEADERS does
12534         the right thing.
12535         * Makefile.am (.m4.m4f): Emphasize M4 error messages and fail
12536         earlier if there are.
12538 2001-07-03  Akim Demaille  <akim@epita.fr>
12540         * autoscan.in ($initfile): Remove.
12541         (&find_file): Rename as...
12542         (&scan_file): this.
12543         Immediately scan the current file, instead of gathering them, and
12544         later having them handled by &scan_files.
12545         (&scan_files): Merely invoke Find::File.
12546         Adjust.
12548 2001-07-02  Akim Demaille  <akim@epita.fr>
12550         * autoscan.in: Formatting changes, matching the invocation order.
12551         (File::Find): Use it instead of Perl 4's `find.pl'.
12552         (&wanted): Rename as...
12553         (&find_file): this.
12555 2001-07-01  Pavel Roskin  <proski@gnu.org>
12557         * aclang.m4 (AC_F77_DUMMY_MAIN): Remove conftest* after using
12558         break in the argument to AC_TRY_LINK_FUNC.
12559         (AC_F77_MAIN): Remove conftest* after using break in the
12560         argument to AC_TRY_LINK.
12562 2001-07-01  Steven G. Johnson  <stevenj@alum.mit.edu>
12564         Add alternate 'main' routine detection for linking C/C++ with Fortran,
12565         fixing link failures for e.g. AC_F77_WRAPPERS on NetBSD.
12567         * aclang.m4 (AC_F77_DUMMY_MAIN): New macro to detect whether a
12568         dummy alternate main is required even if the user provides her own
12569         'main'.
12570         (AC_F77_MAIN): New macro to detect whether it is possible to
12571         provide an alternate 'main' function name, using the 'main' from
12572         the Fortran libraries.
12573         (AC_LANG_PROGRAM(C)): Use F77_DUMMY_MAIN, if it is defined, so that
12574         cross-language link tests can be performed successfully.
12575         (_AC_F77_NAME_MANGLING): Require AC_F77_DUMMY_MAIN.  Also put $FLIBS
12576         after $LIBS, for consistency; this should be the general rule since
12577         the user may want to link to Fortran libraries that require $FLIBS.
12578         * doc/autoconf.texi: Document AC_F77_DUMMY_MAIN and AC_F77_MAIN.
12580 2001-06-29  Pavel Roskin  <proski@gnu.org>
12582         * atgeneral.m4 (AT_CHECK): Add a newline to the end of
12583         at-stdout and at-stderr instead of removing the newline
12584         from the echo output, which is not guaranteed to work.
12586 2001-06-28  Jens Petersen  <petersen@redhat.com>
12588         * aclang.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Only add declaration to
12589         confdefs.h when non-zero.
12591 2001-06-28  Akim Demaille  <akim@epita.fr>
12593         * configure.in: Bump to 2.50c.
12595 2001-06-26  Akim Demaille  <akim@epita.fr>
12597         Version 2.50b.
12599 2001-06-26  Akim Demaille  <akim@epita.fr>
12601         Version 2.50a.
12603 2001-06-25  Pavel Roskin  <proski@gnu.org>
12605         * tests/atspecific.m4 (AT_CHECK_MACRO): Accept one more
12606         argument, AUTOCONF-FLAGS.
12607         * tests/mktests.sh (update_exclude_list): Add
12608         AC_SYS_RESTARTABLE_SYSCALLS and AC_FUNC_WAIT3.
12609         * tests/semantics.at: Test AC_SYS_RESTARTABLE_SYSCALLS and
12610         AC_FUNC_WAIT3 with "-W no-obsolete".
12612 2001-06-25  Akim Demaille  <akim@epita.fr>
12614         * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
12616 2001-06-25  Akim Demaille  <akim@epita.fr>
12618         * autoscan.in (%macro): Now maps from word to list of macros.
12619         (&init_tables): Die when a word which is already handled by
12620         explicit macros is mapped to the default macro.
12621         (&print_unique): Remove, inlined in...
12622         (&output_kind): here.
12623         (File::Basename): Use it.
12624         (&output): Sort the CONFIG_FILES.
12625         * acheaders: Normalize.
12626         * acfunctions: Likewise.
12628 2001-06-25  Akim Demaille  <akim@epita.fr>
12630         * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
12631         characteristics in the logs.
12632         Suggested by Mo DeJong.
12634 2001-06-24  Akim Demaille  <akim@epita.fr>
12636         * acfunctions.m4 (AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH)
12637         (AM_FUNC_MKTIME, AM_FUNC_OBSTACK, AM_FUNC_STRTOD): Reactivated.
12638         * doc/autoconf.texi (Autoconf 2.13): New section.
12640 2001-06-24  Akim Demaille  <akim@epita.fr>
12642         * autoconf.in (Task traces): Separate the error messages from the
12643         traces to improve robustness.
12645 2001-06-23  Akim Demaille  <akim@epita.fr>
12647         * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
12648         three as failures are unlikely, and speed matters.
12650 2001-06-23  Akim Demaille  <akim@epita.fr>
12652         * doc/autoconf.texi (Redefined M4 Macros): New.
12654 2001-06-23  Akim Demaille  <akim@epita.fr>
12656         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Consider
12657         inttypes.h is missing if it conflicts with sys/types.h, as on IRIX
12658         5.3.
12660 2001-06-23  Paolo Bonzini  <bonzini@gnu.org>
12662         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Defer parsing of
12663         config.status targets to after the evaluation of the INIT-CMDS.
12664         Double quote config.status targets (used to be single quoted).
12666 2001-06-23  Akim Demaille  <akim@epita.fr>
12668         * tests/torture.at (CONFIG_FILES, HEADERS, LINKS and COMMANDS):
12669         Check the content of the created file.
12670         Check the ./config.status command line invocation.
12672 2001-06-23  Akim Demaille  <akim@epita.fr>
12674         * tests/foreign.at (Libtool): Reject prehistoric versions.
12676 2001-06-23  Akim Demaille  <akim@epita.fr>
12678         * aclang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Try to be robust to
12679         preexisting files matching a.*.
12681 2001-06-23  Akim Demaille  <akim@epita.fr>
12683         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Output error messages on
12684         stderr.
12685         * doc/autoconf.texi (AC_ARG_VAR): Update.
12687 2001-06-21  Akim Demaille  <akim@epita.fr>
12689         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Die instead of warning when
12690         precious variables have changed.
12691         * tests/torture.at (AC_ARG_VAR): Adjust.
12693 2001-06-21  Akim Demaille  <akim@epita.fr>
12695         ./configure --program-suffix=foo produces `transform=s,$$,foo,;',
12696         but some sed choke on multiple `;', and other tools (e.g.,
12697         Automake), include the separator themselves.
12699         * acgeneral.m4 (AC_ARG_VAR): Be sure not to leave extra `;'.
12701 2001-06-19  Tim Van Holder  <tim.van.holder@pandora.be>
12703         * doc/autoconf.texi (Functions Portability): Rename as...
12704         (Function Portability): this.
12705         (Function Portability): Document potential problems with unlink().
12707 2001-06-19  Paul Eggert  <eggert@twinsun.com>
12709         * NEWS, doc/autoconf.texi: Document quadrigraphs.
12711 2001-06-18  Akim Demaille  <akim@epita.fr>
12713         * acfunctions.m4 (AC_FUNC_FORK): Fix typos.
12715 2001-06-18  Ruediger Kuhlmann  <info@ruediger-kuhlmann.de>
12717         * acfunctions.m4: (AC_FUNC_VFORK) rename as...
12718         (_AC_FUNC_VFORK): this.
12719         Remove AC_DEFINEs and don't guess cross-compilation values.
12720         (_AC_FUNC_FORK): New, check whether fork() isn't just a stub.
12721         (AC_FUNC_FORK): New, use _AC_FUNC_VFORK and _AC_FUNC_FORK to
12722         define HAVE_WORKING_FORK, HAVE_WORKING_VFORK; and vfork to fork if
12723         vfork doesn't work.
12724         Guess values if cross-compiling, but warn.
12725         * acfunctions: Add AC_FUNC_FORK.
12726         * doc/autoconf.texi: Document AC_FUNC_FORK. Give example to define
12727         and vfork appropriately.
12729 2001-06-18  Akim Demaille  <akim@epita.fr>
12731         * doc/autoconf.texi (Functions Portability): New section.
12733 2001-06-18  Akim Demaille  <akim@epita.fr>
12735         * autoconf.in (M4): Pass --nesting-limit=1024, unless already set
12736         in $M4.
12737         Suggested by Andreas Schwab.
12739 2001-06-18  Akim Demaille  <akim@epita.fr>
12741         * acfunctions.m4 (AC_FUNC_CHOWN, AC_FUNC_CLOSEDIR_VOID)
12742         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK)
12743         (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES, _AC_FUNC_STAT)
12744         (AC_FUNC_UTIME_NULL): Use AC_INCLUDES_DEFAULT.
12745         Don't use AC_TRY_RUN, which double quotes, prefer AC_RUN_IFELSE,
12746         and either AC_LANG_SOURCE or AC_LANG_PROGRAM.
12747         (AC_FUNC_CLOSEDIR_VOID): Protect C++ from `int closedir ();' (or
12748         the converse).
12750 2001-06-18  Akim Demaille  <akim@epita.fr>
12752         * doc/autoconf.texi (ms): New index.
12753         (Macro Index): Rename as...
12754         (Autoconf Macro Index): this.
12755         (M4 Macro Index): New appendix.
12756         (Programming in M4): New chapter.
12757         Define M4sugar, M4sh, m4_pattern_forbid, and m4_pattern_allow.
12758         (Quoting): Rename as...
12759         (M$ Quotation): this.
12760         Be part of `Programming in M4).
12762 2001-06-18  Nicolas Joly  <njoly@pasteur.fr>
12764         * tests/torture.at (AC_ARG_VAR): Set variables and export them
12765         in separate statements for compatibility with Tru64 v5.1.
12767 2001-06-17  Akim Demaille  <akim@epita.fr>
12769         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
12770         current values of the precious variables, not the previously
12771         cached values.
12772         Pass precious variables which are set to config.status.
12773         * doc/autoconf.texi (Setting Output Variables): Document AC_ARG_VAR.
12774         * tests/torture.at (AC_ARG_VAR): New.
12776 2001-06-15  Paul Eggert  <eggert@twinsun.com>
12778         * doc/autoconf.texi: Move AC_FUNC_WAIT3 and
12779         AC_SYS_RESTARTABLE_SYSCALLS to the obsolete section,
12780         and explain why and how to replace them.
12781         * acfunctions.m4 (AC_FUNC_WAIT3): Warn as obsolete.
12782         * acspecific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
12784 2001-06-15  Akim Demaille  <akim@epita.fr>
12786         `build_alias', `host_alias', and `target_alias' are not AC_SUBST'd.
12787         Reported by Bruno Haible.
12789         * acgeneral.m4 (AC_ARG_VAR): Move the AC_SUBST, from here...
12790          (_AC_ARG_VAR_PRECIOUS): to here.
12792 2001-06-15  Pavel Roskin  <proski@gnu.org>
12794         * acheaders.m4 (_AC_CHECK_HEADER_DIRENT): Instead of defining
12795         an unused pointer use cast to this type and `if' statement to
12796         avoid warnings from the compiler.
12797         (AC_HEADER_TIME): Likewise.
12798         * actypes.m4 (AC_CHECK_MEMBER): s/foo/ac_aggr/. Use the member
12799         in `if' statement to avoid warnings from the compiler. Declare
12800         ac_aggr static to avoid the need to initialize it.
12802 2001-06-14  Akim Demaille  <akim@epita.fr>
12804         * doc/autoconf.texi (Portable Shell): Move to follow `Writing
12805         Macros'.
12807 2001-06-13  Akim Demaille  <akim@epita.fr>
12809         * m4/missing.m4, config/missing: Updated to Automake 1.4g's.
12810         Suggested by Alexander Mai.
12812 2001-06-13  Akim Demaille  <akim@epita.fr>
12814         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Guard
12815         sys/types.h and sys/stat.h, and check for them.
12817 2001-06-13  Akim Demaille  <akim@epita.fr>
12819         * acheaders.m4 (AC_CHECK_HEADER, AC_CHECK_HEADERS): Support $4 =
12820         INCLUDES.
12822 2001-06-12  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
12824         * acspecific.m4 (AC_PATH_XTRA): Check if linking against libX11
12825         succeeds and only try adding libdnet upon a failure.
12827 2001-06-12  Akim Demaille  <akim@epita.fr>
12829         * autoscan.in (&output_kind): Output the comment only if it exists.
12830         (%kind_comment): Add entry for `programs'.
12831         (&output_programs): Use &output_kind.
12832         (&output_functions, &output_identifiers, &output_headers)
12833         (&output_programs): Inline, and remove.
12835 2001-06-12  Akim Demaille  <akim@epita.fr>
12837         * autoscan.in (%kind_comment): New.
12838         (output_kind): New.
12839         (output_functions, output_identifiers, output_headers): Use it.
12841 2001-06-12  Akim Demaille  <akim@epita.fr>
12843         * autoscan.in (&print_unique): Take `$kind' and `$word' as
12844         arguments, to factor indirections into `%macro' and `%used'.
12845         (%generic_macro): Fix a typo.
12847 2001-06-12  Akim Demaille  <akim@epita.fr>
12849         * aclibraries: New.
12850         * autoscan.in (@kinds): Add `libraries'.
12851         Use `@kinds' instead of hard coded lists.
12852         (%programs, %headers, %identifiers, %makevars, %libraries, %functions):
12853         Remove, replaced by...
12854         (%used): this.
12856 2001-06-12  Akim Demaille  <akim@epita.fr>
12858         * autoscan.in (%functions_macros %headers_macros)
12859         (%identifiers_macros %programs_macros %makevars_macros): Remove,
12860         replaced by...
12861         (%macro): New.
12863 2001-06-11  Raja R Harinath  <harinath@cs.umn.edu>
12865         * aclang.m4 (AC_NO_EXECUTABLES): Override
12866         _AC_COMPILER_EXEEXT_WORKS, not _AC_LANG_COMPILER_WORKS.
12868 2001-06-11  Akim Demaille  <akim@epita.fr>
12870         * aclang.m4 (AC_NO_EXECUTABLES): Define the macros with their
12871         trailing new line.
12872         Reported by Andreas Schwab.
12874 2001-06-11  Akim Demaille  <akim@epita.fr>
12876         * Makefile.am, Makefile.maint: Typos.
12878 2001-06-09  Akim Demaille  <akim@epita.fr>
12880         * doc/autoconf.texi (Here-Documents): New section, gathering
12881         documentation about here-documents.
12882         Use `href', not `uref', and other changes.
12884 2001-06-09  Akim Demaille  <akim@epita.fr>
12886         * doc/autoconf.texi (Portable Shell Programming): Promoted as a
12887         chapter.
12889 2001-06-09  Akim Demaille  <akim@epita.fr>
12891         * doc/autoconf.texi (Limitations of Builtins): Complete the
12892         description of the here-docs penalties with Alexandre Oliva's
12893         explanations.
12895 2001-06-01  Paul Eggert  <eggert@twinsun.com>
12897         * doc/autoconf.texi: Talk about here documents and speedups.
12898         Do not use "echo" on arbitrary strings.
12899         Spell "here-documents" consistently with the standard.
12901 2001-06-09  Akim Demaille  <akim@epita.fr>
12903         * doc/autoconf.texi (Concept Index): Introduce it.
12904         Regenerate the menus.
12906 2001-06-09  Akim Demaille  <akim@epita.fr>
12908         * Makefile.maint, GNUmakefile: New, from Jim Meyering.
12909         * config/prev-version.txt: New.
12910         * config/move-if-change: New, for GNU libc.
12912 2001-06-06  Pavel Roskin  <proski@gnu.org>
12914         * tests/atgeneral.m4 (AT_INIT): Remove "/bin/sh" after $SHELL.
12916 2001-06-06  Akim Demaille  <akim@epita.fr>
12918         * acgeneral.m4 (AC_CHECK_LIB): Fix the cache var name to work
12919         properly when $1 is not a literal.
12920         Fixes PR Autoconf/187, reported by Bram Moolenaar.
12922 2001-06-06  Akim Demaille  <akim@epita.fr>
12924         Invoking AC_COPYRIGHT before AC_INIT fails.
12926         * Makefile.am (.m4.m4f): Pass --fatal-warnings to m4.
12927         * acgeneral.m4 (_m4_divert(VERSION_FSF))
12928         (_m4_divert(VERSION_USER)): New.
12929         (AC_COPYRIGHT): $2 is the diversion to use.
12930         (_AC_INIT_COPYRIGHT): Use the FSF diversion.
12931         (AC_INIT): Remove dead comments as now it's commutative.
12933 2001-06-06  Akim Demaille  <akim@epita.fr>
12935         * tests/semantics.at (AC_CHECK_LIB): Strengthen to reflect
12936         PR autoconf/187.
12938 2001-06-05  Akim Demaille  <akim@epita.fr>
12940         * acgeneral.m4 (_AC_INIT_PARSE_ARGS): `prefix' and `exec_prefix'
12941         can be empty.
12942         `*dir' variables cannot be NONE.
12943         Reported by Mark Kettenis.
12945 2001-06-05  Paul Eggert  <eggert@twinsun.com>
12947         * doc/autoconf.texi: Fix references to Solaris and SunOS versions.
12949 2001-06-04  Akim Demaille  <akim@epita.fr>
12951         * acgeneral.m4 (AC_VAR_SET, AC_VAR_GET, AC_VAR_TEST_SET)
12952         (AC_VAR_SET_IFELSE, AC_VAR_PUSHDEF and AC_VAR_POPDEF, AC_TR_CPP)
12953         (AC_TR_SH): Move as...
12954         * m4sh.m4 (AS_VAR_SET, AS_VAR_GET, AS_VAR_TEST_SET)
12955         (AS_VAR_SET_IF, AC_VAR_PUSHDEF, AS_VAR_POPDEF, AS_TR_CPP)
12956         (AS_TR_SH): these.
12957         (_AS_TR_PREPARE, _AS_CR_PREPARE, _AS_TR_CPP_PREPARE)
12958         (_AS_TR_SH_PREPARE): New.
12959         (AS_SHELL_SANITIZE): Invoke _AS_TR_PREPARE.
12960         * tests/aclocal.m4 (AC_STATE_SAVE): `as_' vars can be modified.
12962 2001-06-02  Akim Demaille  <akim@epita.fr>
12964         * Makefile.am (.m4.m4f): Pass the options first.
12965         Fixes PR autoconf/182.
12967 2001-06-02  Nathan Sidwell  <nathan@codesourcery.com>
12969         GNU getopt, when POSIXLY_CORRECT does not permute options and
12970         arguments.  So pass the options first.
12971         Fixes PR autoconf/184.
12973         * autoconf.sh (m4_prefiles, m4f_prefiles): New variables.
12974         (run_m4): Remove files.
12975         (run_m4f): Remove.
12976         Update remainder of script to use them.
12977         (for warning in): Do not use a literal comma as it will not be
12978         split by IFS.
12980 2001-06-02  Christian Marquardt  <marq@gfz-potsdam.de>
12982         * aclang.m4 (AC_PROG_F77): Add Fujitsu's "frt" to the list of
12983         Fortran compilers to check.
12984         (_AC_PROG_F77_V): Add '-###' as a possible option to print
12985         information on library and object files.
12986         (AC_PROG_CXX): Add Fujitsu's "FCC" to the list of C++ compilers
12987         to check.
12989 2001-06-02  Akim Demaille  <akim@epita.fr>
12991         * autom4te.in (Request::@request): Declare with `vars', not `my',
12992         as it prevents updates via `do FILENAME'.
12994 2001-06-02  Akim Demaille  <akim@epita.fr>
12996         * configure.in (standards_texi): Remove, dead code.
12998 2001-06-02  Akim Demaille  <akim@epita.fr>
13000         * autom4te.in: New.
13002 2001-06-02  Pavel Roskin  <proski@gnu.org>
13004         * acgeneral.m4 (_AC_INIT_PREPARE): Don't rely on $? in the traps
13005         for signals other than 0 - exit with code 1.
13006         * m4sh.m4 (AS_TMPDIR): Likewise.
13007         * autoconf.in: Likewise. Also don't rely on exit == exit $?.
13008         * autoheader.in: Likewise.
13009         * autoreconf.in: Likewise.
13010         * tests/torture.at (Signal handling): New test for the above.
13012 2001-06-01  Akim Demaille  <akim@epita.fr>
13014         * m4sugar.m4 (m4_defn, m4_undefine, m4_popdef): Clarify the error
13015         message.
13017 2001-05-31  Akim Demaille  <akim@epita.fr>
13019         * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
13020         Add copyright and comments.
13021         * acheaders: Add stdint.h.
13022         Suggested by Paul Eggert.
13024 2001-05-31  Akim Demaille  <akim@epita.fr>
13026         * atgeneral.m4 (AT_INIT): Use $SHELL.
13027         * atspecific.m4 (AT_CHECK_DEFINES): Skip HAVE_STDINT_H.
13029 2001-05-31  Akim Demaille  <akim@epita.fr>
13031         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
13032         stdint.h.
13033         From Paul Eggert and Lars Hecking.
13035 2001-05-31  Akim Demaille  <akim@epita.fr>
13037         * tests/base.at: Adjust line numbers in error messages.
13039 2001-05-31  Akim Demaille  <akim@epita.fr>
13041         * tests/base.at, tests/m4sh.at: When using AC_PLAIN_SCRIPT be sure
13042         to emit the bangshe line.
13043         Reported by David Carter.
13045 2001-05-30  Steven G. Johnson  <stevenj@alum.mit.edu>
13047         * aclang.m4 (AC_PROG_F77): Add Compaq's "fort" to the list of
13048         Fortran (95) compilers to check.
13050 2001-05-29  Alexandre Duret-Lutz  <duret_g@epita.fr>
13052         * doc/autoconf.texi (Introduction, Pointers): Update the Autoconf
13053         Macro Archive URL.
13055 2001-05-23  Pavel Roskin  <proski@gnu.org>
13057         * aclang.m4 (AC_PROG_CPP): Use `break' instead of `break 2' since
13058         _AC_PROG_PREPROC_WORKS_IFELSE expands arguments outside the loop.
13059         (AC_PROG_CXXCPP): Likewise.
13061 2001-05-22  Akim Demaille  <akim@epita.fr>
13063         * config: New directory.
13064         * configure.in: AC_CONFIG_AUX_DIR it.
13065         * tests/atspecific.m4 (AT_CONFIGURE_AC): Adjust.
13067 2001-05-22  Akim Demaille  <akim@epita.fr>
13069         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in,
13070         * autoupdate.in: Specify the Emacs mode.
13071         * acversion.m4.in: Rename as...
13072         * acversion.m4: this.
13073         * tests/Makefile.am (CLEANFILES): More garbage.
13075 2001-05-22  Akim Demaille  <akim@epita.fr>
13077         * autoconf.sh, autoreconf.sh, autoheader.sh, autoscan.pl, ifnames.sh:
13078         Rename as...
13079         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in:
13080         these.
13082 2001-05-21  Akim Demaille  <akim@epita.fr>
13084         * configure.in: Bump to 2.50a.
13087         -----
13089         Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free
13090         Software Foundation, Inc.
13092         This file is part of GNU Autoconf.
13094         GNU Autoconf is free software; you can redistribute it and/or modify
13095         it under the terms of the GNU General Public License as published by
13096         the Free Software Foundation; either version 2, or (at your option)
13097         any later version.
13099         GNU Autoconf is distributed in the hope that it will be useful,
13100         but WITHOUT ANY WARRANTY; without even the implied warranty of
13101         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13102         GNU General Public License for more details.
13104         You should have received a copy of the GNU General Public License
13105         along with autoconf; see the file COPYING.  If not, write to
13106         the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
13107         Boston, MA 02110-1301, USA.