1 2006-05-29 Paul Eggert <eggert@cs.ucla.edu>
3 * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS): Rewrite to avoid
4 the use of 'tr', since this is our only use of 'tr'.
6 2006-05-29 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7 and Paul Eggert <eggert@cs.ucla.edu>
9 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
10 Don't assume 'grep' works on long lines, since AIX grep doesn't.
12 2005-05-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
14 * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Do not use `grep' on
15 the output file in the `${datarootdir}' test.
17 2005-05-28 Stepan Kasal <kasal@ucw.cz>
18 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
20 * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If we have not seen
21 mention of `datarootdir' in the input file(s), but literal
22 `${datarootdir}' in the output file, and we haven't warned yet,
23 then warn as well: the user may have (erroneously) used
24 `AC_SUBST([mydatadir], [$datadir/my])' instead of the correct
25 `AC_SUBST([mydatadir], ['${datadir}/my'])'.
26 * tests/torture.at (datarootdir workaround): Extend this test.
29 2006-05-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
30 and Paul Eggert <eggert@cs.ucla.edu>
32 * doc/autoconf.texi (autoheader Invocation): The first argument to
33 `AC_DEFINE_UNQUOTED' need not be a literal. Mention the
34 alternatives and clear up the language a bit.
36 2006-05-27 Paul Eggert <eggert@cs.ucla.edu>
38 * NEWS: Reword notice for AC_TRY_COMMAND, AC_TRY_EVAL,
39 ac_config_guess, ac_config_sub, ac_configure.
40 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
41 Fix typo that prevented an unnecessary space from being removed.
42 Problems reported by Ralf Wildenhues in:
43 http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00143.html
45 2006-05-26 Paul Eggert <eggert@cs.ucla.edu>
47 * doc/autoconf.texi (Particular Programs, Limitations of Usual Tools):
48 Use better wording to talk about AC_PROG_MKDIR_P's thread-safety.
49 Don't use the term "thread-safe" to talk about mkdir race
50 conditions, since the problem is more a process than a thread
51 issue. Problem reported by Stepan Kasal in:
52 http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00088.html
53 * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Use code that mimics
54 the test for 'install' more closely. Look at MKDIR_P first.
55 Look in the PATH, and at /opt/sfw/bin.
56 Look for a 'gmkdir' program as well (Solaris 10 /opt/sfw/bin/gmkdir).
57 Don't bother to try mkdir -p, since we already check mkdir --version;
58 just look at the version number. (There's no easy way to check
59 for race-free implementations.)
60 * tests/tools.at (autoconf: subdirectories): Adjust to above
61 changes, since MKDIR_P now might end in "/mkdir -p".
63 * doc/autoconf.texi (autoheader Invocation): Mention that the
64 first arg of AC_DEFINE_UNQUOTED must be a literal.
65 Problem reported by Ben Pfaff in
66 <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00090.html>.
68 * NEWS: Mention that AC_TRY_COMMAND and AC_TRY_EVAL may be removed.
69 * doc/autoconf.texi (Special Chars in Variables): New section.
70 (Preset Output Variables): Warn about special chars in CPPFLAGS.
71 (Installation Directory Variables): Quote $(datadir) better.
72 (Limitations of Builtins): Describe some of eval's trickiness.
74 * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Simplify quoting.
75 * lib/autoconf/fortram.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
76 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put leading space
77 in front of every arg, not just trailing args. Quote apostrophes.
78 (_AC_EVAL_ECHO): New macro.
79 (_AC_EVAL, AC_EVAL_STDERR): Use it. Quote arg of eval.
80 (AC_TRY_EVAL, AC_TRY_COMMAND): Mention that these macros might get
82 (_AC_LINK_IFELSE): Use proper rule for shell continuation lines,
83 exposed by quoting of eval argument. Put the command on line line
85 * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use eval more safely.
86 (_AC_PATH_X, AC_PATH_X): Quote more safely.
87 * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use eval more safely.
88 * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Don't use eval.
89 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Minor style change.
90 Handle special chars in prefix, ac_srcdir, ac_aux_dir.
92 (_AC_OUTPUT_CONFIG_STATUS): Adjust to above changes.
93 * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Note that this API needs
95 * tests/base.at (AC_TRY_COMMAND): Use proper rule for shell continuation
96 lines, exposed by quoting of eval argument.
98 2006-05-26 Stepan Kasal <kasal@ucw.cz>
99 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
101 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Drop the
102 initialization of `ac_cv_exeext', do not override it if it was
103 already set, unless it was set to `no', for compatibility with
104 Autoconf-2.13, and comment this.
105 Do not export `ac_cv_exeext', Libtool hasn't needed this for years.
106 (_AC_COMPILER_EXEEXT_DEFAULT): Likewise, do not export it.
107 (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_CROSS): Typos.
108 * doc/autoconf.texi (Compilers and Preprocessors) <EXEEXT>:
109 Document that this test may be overridden by setting
112 2006-05-26 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
114 Revert these two patches:
116 2006-04-06 Eric Blake <ebb9@byu.net>
117 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
118 check, s/ac_exeext/ac_cv_exeext/. Fixes regression introduced
121 2006-04-01 Stepan Kasal <kasal@ucw.cz>
122 Clean up _AC_COMPILER_EXEEXT* macros.
123 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
124 detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
125 ac_file to the name of the default output file and call
126 _AC_COMPILER_EXEEXT_WORKS. Move the definition of ac_files and the
127 initial `rm' of the candidate files...
128 (_AC_COMPILER_EXEEXT): ... here and simplify them. Moreover, use
129 the same list in subsequent `rm' calls, and for the temporary
130 redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
131 and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
132 (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
133 (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
134 no longer needed) by libtool. Make it a cache check.
135 (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
136 copied here by mistake.
137 (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
139 * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
140 _AC_COMPILER_OBJEXT directly.
141 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
143 2006-05-25 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
145 * doc/autoconf.texi (Limitations of Usual Tools) < sed (`t')>:
146 Fix description of how the buggy `sed' works.
148 2006-05-25 Noah Misch <noah@cs.caltech.edu>
152 * lib/Autom4te/XFile.pm (lock): Allow EOPNOTSUPP, besides
153 ENOLCK. Only mention `make -j' when applicable. Only raise
154 fatal errors when `make -j' is involved. Improve error message.
156 2006-05-25 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
158 * doc/autoconf.texi (Here-Documents): We now know more about
159 the variable expansion in here documents bug.
160 Thanks to Tim Rice and Stepan Kasal.
162 * doc/autoconf.texi (Making testsuite Scripts): Add an example
163 how to use TESTSUITEFLAGS. Suggested by Eric Blake.
165 2006-05-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
167 * tests/autotest.at (Multiline command from M4 expansion):
168 No failure to be expected if the shell quotes newlines in
169 commands in the `set -x' output. Report by Tim Rice.
172 2006-05-23 Paul Eggert <eggert@cs.ucla.edu>
174 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Don't use shell
175 expansion in the here-documents used by config.status, as that
176 runs afoul of the Korn shell version M-12/28/93d bug described in
177 the Autoconf manual, and this in turn causes a Coreutils 5.95 build to
178 fail as described by Tim Rice and diagnosed by Ralf Wildenhues in
179 <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00082.html>.
181 2006-05-23 Jim Meyering <jim@meyering.net>
183 * lib/autoconf/functions.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK):
184 Fix typo introduced with 2006-04-02 change. It reversed the sense
187 2006-05-23 Paul Eggert <eggert@cs.ucla.edu>
189 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Simplify ac_dA and
190 ac_dB slightly, to save bytes in the script.
191 Max out at 50 lines, rather than 96; this is more likely
192 (though not guaranteed) to avoid obscure 'sed' failures.
194 2006-05-23 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
196 * lib/autotest/general.m4 (AT_INIT): UnixWare `tr' may interpret
197 `tr -d -' as bad option argument. Work around this by deleting
198 an unrelated character.
199 Report by Tim Rice <tim@multitalents.net>.
201 2006-05-22 Paul Eggert <eggert@cs.ucla.edu>,
202 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>,
203 Stepan Kasal <kasal@ucw.cz>
205 * doc/autoconf.texi (Particular Programs): Do not promise that
206 we always prefer the GNU version of the program, and that we
207 search according to PATH; both rules can have exceptions.
208 Update description of AC_PROG_GREP, AC_PROG_EGREP, AC_PROG_FGREP,
209 AC_PROG_SED. Move descriptions of limitations
210 to the Limitations of Usual Tools section.
211 (Limitations of Usual Tools) <sed>: Mention script length
212 limitations with Solaris /usr/ucb/sed.
213 <grep>: Fix wording for empty alternative. Mention that -c and
214 -l should not be combined, and that -E and -F should not be
217 2006-05-21 Paul Eggert <eggert@cs.ucla.edu>
218 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
220 * lib/autoconf/programs.m4 (AC_PROG_SED): Catch script length
221 limits in Solaris 8 /usr/ucb/sed by testing a long script.
223 2006-05-22 Stepan Kasal <kasal@ucw.cz>
225 * doc/autoconf.texi (Defining Symbols): Literal parameter of
226 AC_DEFINE is now passed to m4_pattern_allow.
227 * NEWS: Mention that; likewise for AC_SUBST.
228 * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL): Pass
229 the parameter to m4_pattern_allow.
230 * tests/tools.at: Add a check for that.
232 2006-05-22 Stepan Kasal <kasal@ucw.cz>
234 * lib/autoconf/status.m4: Fix typos.
236 2006-05-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
238 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
239 only the files that this macro generates.
241 2006-05-21 Paul Eggert <eggert@cs.ucla.edu>
243 * doc/autoconf.texi (Limitations of Usual Tools) <sed>: For
244 the HP-UX sed limitation of 99 commands, labels do not count.
245 * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Mention that
247 (_AC_OUTPUT_HEADER): Revert the change from 2006-05-19.
249 2006-05-21 Paul Eggert <eggert@cs.ucla.edu>
251 * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
252 Import the following fix from coreutils:
254 2006-01-13 Jim Meyering <jim@meyering.net>
256 Invoke AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
257 $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need
258 not double-quote uses of that variable, to accommodate the rare
259 case in which getmntent is available in none of the libraries
260 checked. This happens at least on FreeBSD 5.0.
262 2006-05-20 Paul Eggert <eggert@cs.ucla.edu>
264 * lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Bring back
265 ac_config_guess, ac_config_sub, and ac_configure, since evidently
266 some other programs unwisely rely on these undocumented vars.
267 But put in warning comments about them.
268 Problem reported by Ralf Wildenhues in
269 <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00068.html>.
270 * NEWS: Document that these variables are intended to go away.
272 2006-05-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
274 * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): Require AC_PROG_CXX,
275 and set the language to C++ (analogous to the equivalent Fortran
278 * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): New macro.
279 * doc/autoconf.texi (C++ Compiler): Document it.
280 * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Adjust comment.
283 2006-05-19 Paul Eggert <eggert@cs.ucla.edu>
285 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Fix off-by-one bug
286 that caused config.status to generate 100-command sed scripts; the
287 portable limit is 99.
289 2006-05-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
291 * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Name temporary
292 variable `ac_d' instead of `d' to avoid infringing namespace.
293 Report by Ralf Menzel.
295 2006-05-18 Paul Eggert <eggert@cs.ucla.edu>
297 * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Don't prepend
298 $ac_top_build_prefix to $MKDIR_P if it's just 'mkdir -p'.
299 * tests/tools.at (autoconf: subdirectories): New test, taken from
300 the corresponding problem report by Ralf Wildenhues in:
301 http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00053.html
303 * lib/autoconf/functions.m4 (AC_REPLACE_FNMATCH, AC_FUNC_FNMATCH_GNU):
304 Quote some uses of shell variables if they might suffer unexpected
305 globbing. This doesn't fix all instances of quoting problems that
306 I found, just the easy ones that look safe.
307 * lib/autoconf/general.m4 (_AC_INIT_SRCDIR, _AC_INIT_HELP):
308 (AC_CONFIG_AUX_DIR, AC_CONFIG_AUX_DIR_DEFAULT, AC_CONFIG_AUX_DIRS):
309 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST, AC_CANONICAL_TARGET):
310 (AC_CACHE_LOAD, AC_CACHE_SAVE): Likewise.
311 * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT): Likewise.
312 * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
313 * lib/autoconf/status.m4 (_AC_OUTPUT_LINK, _AC_OUTPUT_SUBDIRS):
315 * lib/autotest/general.m4 (_AC_INIT_PARSE_ARGS): Likewise.
316 * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Likewise.
318 2006-05-18 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
320 * bin/autoreconf.in ($help): Reword according to the manual.
321 Suggested by Olly Betts.
323 2006-05-17 Olly Betts <olly@survex.com> (tiny change)
324 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
326 * bin/autoreconf.in: Pass the directory argument to
327 `require_configure_ac'. Fix comment.
328 * tests/torture.at (Configuring subdirectories): Expose this.
329 Reported by Olly Betts.
331 2006-05-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
333 * lib/Automake/Configure_ac.pm, lib/Automake/Channels.pm,
334 lib/Automake/FileUtils.pm, lib/Automake/Struct.pm: Sync from
337 * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
338 `$configure_in' instead of `configure.in', to preserve
341 2006-05-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
343 * config/config.guess, config/config.sub, config/texinfo.tex,
344 doc/make-stds.texi, doc/standards.texi: Sync from upstream.
346 2006-05-14 Paul Eggert <eggert@cs.ucla.edu>
348 * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Fix overly-picky
349 test for C99 conformance; (bool) 0.5 is an integer constant
350 expression, but (bool) -0.5 is not. Problem reported by Fedor
351 Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
353 2006-05-13 Paul Eggert <eggert@cs.ucla.edu>
355 * doc/autoconf.texi (Particular Programs): AC_PROG_MKDIR_P now
356 sets MKDIR_P, not mkdir_p, to avoid collisions with Automake.
357 Warn about obsolete install-sh files. Remove stray sentence
358 fragment and fix cross reference.
359 * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Don't insist on
360 install -d; this undoes the 2006-05-10 change.
361 (MKDIR_P): Mark with AN_MAKEVAR.
362 (AC_PROG_MKDIR_P): Fall back on $ac_install_sh, not $INSTALL, so
363 that we don't require $INSTALL to be thread-safe. Move comments
364 out of generated code. Require AC_CONFIG_AUX_DIR_DEFAULT instead
365 of AC_PROG_INSTALL. Output a message saying that we're checking
366 mkdir -p. Set MKDIR_P rather than mkdir_p. Do special magic for
367 MKDIR_P instead of AC_SUBST.
368 * lib/autoconf/status.m4 (_AC_OUTPUT_FILE, _AC_OUTPUT_CONFIG_STATUS):
369 Special magic for MKDIR_P, too.
370 * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Remove comment that defeated
372 * tests/local.at (AT_CHECK_ENV): mkdir_p -> MKDIR_P.
374 2006-05-11 Paul Eggert <eggert@cs.ucla.edu>
376 Sync from Automake, as follows:
378 2006-05-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
379 * config/install-sh: Initialize IFS, so field splitting isn't
381 * config/mkinstalldirs: Likewise.
382 * config/missing: Remove superfluous quotes. Replace all uses of
383 `[' by `test', for consistency, and for..
384 * config/missing (sed_minuso, sed_output): New variables.
385 (autom4te, help2man, makeinfo): Use them. Unifies detection of
386 `-o FILE', `--output FILE', `--output=FILE', stricter regex.
387 Fixes `missing' to detect `--output' for help2man. Fixes
388 PR automake/483. Report by Dennis J. Linse.
389 (autom4te): Document in `missing --help'.
391 2006-05-10 Paul Eggert <eggert@cs.ucla.edu>
393 * NEWS: New macro AC_PROG_MKDIR_P. AS_MKDIR_P is now more robust.
394 * config/install-sh: Don't use 'path' to talk about file names,
395 as per GNU coding standards. Close a race condition reported by Ralf
396 Wildenhues and Stepan Kasal. There is still a race condition
397 on hosts that predate Posix 1003.1-1992, but we can't help this.
398 Don't mishandle weird characters like space on pre-Posix hosts.
399 Invoke mkdir at most once per dir arg on pre-Posix hosts.
400 * doc/autoconf.texi (Programming in M4sh): Cross-reference to
401 AC_PROG_MKDIR_P from AS_MKDIR_P.
402 (Limitations of Usual Tools): Cross-reference to AC_PROG_MKDIR_P
403 from mkdir. Mention that Autoconf 2.60 install-sh is safe but
404 earlier editions are not (including Automake 1.8.3).
405 Do not suggest mkinstalldirs for thread-safety.
406 * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Insist on an 'install'
407 that understands -d, so that AC_PROG_MKDIR_P can fall back on $INSTALL.
408 * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Make it more robust in the
409 presence of special characters and race conditions.
410 * tests/local.at (AT_CHECK_ENV): Add mkdir_p to the list of variables
411 in Autoconf's name space.
413 2006-05-10 Bruno Haible <bruno@clisp.org>
414 and Paul Eggert <eggert@cs.ucla.edu>
416 * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): New macro, taken
417 from Automake with minor changes.
418 * doc/autoconf.texi (Particular Programs): Document AC_PROG_MKDIR_P.
420 2006-05-10 Paul Eggert <eggert@cs.ucla.edu>
422 * config/install-sh: Update to Automake CVS version, as follows:
423 2006-04-25 Stepan Kasal <kasal@ucw.cz>
424 * lib/install-sh: Simplify the expr implementation of dirname.
425 2006-04-24 Paul Eggert <eggert@cs.ucla.edu>
426 * lib/install-sh: Handle --, and diagnose unknown options.
428 2006-05-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
430 * tests/Makefile.am (AUTOTEST): Use `$(MY_AUTOM4TE)' instead of
431 `./autom4te' to create `./testsuite', since the `all' target
432 will ensure its presence, but `installcheck' should not create
433 the uninstalled wrappers.
435 * tests/torture.at (Unusual Automake input files): Skip if we
436 detect automake < 1.8.
438 2006-05-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
440 * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If ac_cv_prog_cc_stdc
441 is set to `no', then that overrides and sets ac_cv_prog_cc_c89
442 and ac_cv_prog_cc_c99 to `no', for backward compatibility.
445 2006-05-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
447 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Take care not to
448 munge (multiple) white space and other oddities.
449 * tests/torture.at (AT_CHECK_AC_ARG_VAR): Make sure to M4-escape
450 single quotes in variable assignment.
451 (AC_ARG_VAR, configure invocation): Adjust tests to expose this
452 and similar failures by adding multiple spaces, tabs, and other
454 Report and different test suggested by Francesco Romani
455 <fromani@gmail.com> and Andrew Church <achurch@achurch.org>.
457 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): When we escape
458 single quotes, we only need to search for single quotes; this
459 both simplifies the search pattern, and makes us less
460 susceptible to `echo' variations for arguments not containing
462 (_AC_ARG_VAR_VALIDATE): Likewise.
464 2006-05-04 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
466 * doc/autoconf.texi (Special Shell Variables) <IFS>: Document
467 `$*' and IFS concatenation issue with traditional shells and
468 bash-2.04. Report by Seanster@Seanster.com.
470 2006-05-03 Bruno Haible <bruno@clisp.org>
472 * doc/autoconf.texi (Limitations of Usual Tools): Identify more
473 precisely which Mac OS X versions have the od problem.
475 2006-05-02 Paul Eggert <eggert@cs.ucla.edu>
477 * doc/autoconf.texi: Use @option systematically.
480 2006-05-02 Paul Eggert <eggert@cs.ucla.edu>
481 and Bruno Haible <bruno@clisp.org>
483 * doc/autoconf.texi (Limitations of Usual Tools): Add a paragraph
485 (Integer Overflow): Mention the special case of integer division
488 2006-05-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
490 * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Cater for
491 traditional shells like the Solaris one that do not use the
492 first IFS character for assembling `$*'.
493 Prompted by a related report from autoconf_bug@nro.ca.
495 2006-05-01 Paul Eggert <eggert@cs.ucla.edu>
496 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
498 * doc/autoconf.texi (Limitations of Builtins, Limitations of Make):
499 Mention more problems with the -e option.
501 2006-04-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
504 * doc/autoconf.texi (Systemology): Mention the Heirloom Project.
506 * doc/autoconf.texi (Introduction, Pointers): Use `@/' liberally
507 in URLs to improve DVI formatted output (requires texinfo 4.6).
508 (System Services, Systemology, Shellology): Likewise.
509 (Limitations of Usual Tools): Rewrite Mac OS X example for nicer
512 * doc/autoconf.texi (Fortran Compiler): Do not use `@ovar' in
514 (Runtime): Fix macro argument names to match description:
515 `action-if-found' -> `action-if-true' and similarly.
516 (Obsolete Macros): Likewise.
517 * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE): Likewise.
518 (AC_COMPILE_IFELSE, AC_TRY_COMPILE, _AC_LINK_IFELSE)
519 (AC_LINK_IFELSE, AC_TRY_LINK, AC_COMPILE_CHECK): Likewise.
521 2006-04-29 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
523 * doc/autoconf.texi (Limitations of Make): Clean up markup.
526 * doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for
529 2006-04-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
531 * doc/autoconf.texi (Limitations of Builtins): Document FreeBSD
532 /bin/sh set unsorted output.
533 * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Adjust.
534 * tests/local.at: Likewise.
536 2006-04-26 Paul Eggert <eggert@cs.ucla.edu>
538 * doc/autoconf.texi (Portable C and C++, Varieties of Unportability):
539 (Integer Overflow, Null Pointers, Buffer Overruns):
540 (Floating Point Portability, Exiting Portably): New sections.
541 (Writing Test Programs): Fix some langauge. Recommend exiting
542 with status 1, not merely nonzero. Clarify exit declaration.
543 (Run Time): Move C exit status stuff to new Exiting Portably section.
544 (Systemology): Mention Posix and levenez. Update v7 reference.
545 (Portable Shell): Mention the Posix shell.
547 2006-04-25 Stepan Kasal <kasal@ucw.cz>
549 * bin/autoconf.as (me): Replace by as_me.
551 2006-04-25 Paul Eggert <eggert@cs.ucla.edu>
553 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Don't use AS_ERROR,
554 since as_me isn't set yet.
556 2006-04-23 Paul Eggert <eggert@cs.ucla.edu>
558 Prepare for deprecation of AS_BASENAME and AS_DIRNAME, and fix
559 a few minor bugs in this area.
561 * doc/autoconf.texi (Programming in M4sh): Comment out the
562 documentation of AS_BASENAME, for now.
563 (Shell Substitutions): Do not use AS_DIRNAME in an example.
564 (Limitations of Builtins) <basename>: Do not refer to
566 * bin/autoconf.as (me): Don't use AS_BASENAME.
567 (dir): Remove the unused variable.
568 * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED): Renamed from
569 AS_DETECT_REQUIRED. All uses changed.
570 (_AS_DETECT_SUGGESTED): Renamed from AS_DETECT_SUGGESTED.
572 (_AS_DETECT_BETTER_SHELL): Put ;; at the end of a case.
573 (AS_BASENAME): Use "basename --" to protect against leading "-".
574 (_AS_BASENAME_EXPR): Renamed from AS_BASENAME_EXPR. All uses changed.
575 (_AS_BASENAME_SED): Renamed from AS_BASENAME_SED. All uses changed.
576 (_AS_BASENAME_PREPARE): Reject implementations that cannot handle "--".
577 (_AS_DIRNAME_PREPARE): Likewise.
578 (_AS_DIRNAME_EXPR): Renamed from AS_DIRNAME_EXPR. All uses changed.
579 (_AS_DIRNAME_SED): Renamed from AS_DIRNAME_SED. All uses changed.
580 (AS_DIRNAME): Use "dirname --".
582 2006-04-23 Paul Eggert <eggert@cs.ucla.edu>
584 * doc/autoconf.texi (Runtime): Renamed from "Run Time". All uses
585 of "run time" and "run-time" changed to "runtime", for consistency.
586 * lib/autoconf/fortran.m4: Likewise (in comment).
587 * lib/autoconf/functions.m4: Likewise.
588 * lib/autoconf/general.m4: Likewise.
589 * lib/autoconf/headers.m4: Likewise.
591 * doc/autoconf.texi (Run Time): Document the exit status situation
592 with more accuracy and detail.
594 2006-04-23 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
596 * doc/autoconf.texi (Introduction): The GNU Autoconf Macro
597 Archive is not officially `GNU' any more. Update URL.
598 (Defining Directories): Likewise
599 * lib/autoconf/c.m4 (AC_C_RESTRICT): Update URL.
601 2006-04-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
603 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Remove the leading
604 newline from the `trap' code to finish `config.log'; the NetBSD
605 /bin/sh resets the exit status after an empty command, as
606 documented in doc/autoconf.texi.
607 Reported by Dalibor Topic <robilad@kaffe.org>.
609 2006-04-19 Paul Eggert <eggert@cs.ucla.edu>
611 * doc/autoconf.texi (C Compiler): Clarify AC_C_TYPEOF.
612 Suggested by Bruno Haible.
614 2006-04-18 Paul Eggert <eggert@cs.ucla.edu>
616 * configure.ac (ac_cv_sh_n_works): Don't try to test for it, since
617 some shells (e.g., Solaris 8 /bin/sh) implement it verrrry slowly.
618 Instead, just list the shells that we know work.
619 * tests/local.at (AT_CHECK_SHELL_SYNTAX): Remove 2nd arg. All uses
620 changed. Be more cautious about the _cv_ variable.
621 * tests/tools.at (Syntax of the shell scripts): Check the
622 _cv_ variable once, at first, to avoid an internal autoconf error
623 when sh -n does not work.
625 2006-04-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
627 * lib/Autom4te/FileUtils.pm: Sync from Automake.
629 2006-04-16 Paul Eggert <eggert@cs.ucla.edu>
631 * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Don't
632 use ">&-" since we're only 99.999% sure that this is portable,
633 and since the MinGW bug is fixed in a different way.
634 * lib/autotest/general.m4 (AT_INIT): Likewise.
636 2006-04-16 Stepan Kasal <kasal@ucw.cz>
638 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle --recheck
639 before opening config.log, to avoid hitting a bug on MinGW.
641 2006-04-14 Paul Eggert <eggert@cs.ucla.edu>
643 * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Close
644 AS_MESSAGE_LOG_FD before reopening it onto the log file.
645 This works around a MinGW bug reported by Eric Paire.
646 Make sure that all writes to the log file append to it,
647 rather than possibly losing data.
648 * lib/autotest/general.m4 (AT_INIT): Likewise.
650 2006-04-14 Stepan Kasal <kasal@ucw.cz>
652 * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
655 2006-04-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
659 * configure.ac (AC_INIT): Bump to 2.59d.
661 2006-04-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
665 * Makefile.maint (news-date-check): Do not require a leading `*'
666 before the release date in NEWS.
668 2006-04-12 Stepan Kasal <kasal@ucw.cz>
669 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
671 * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If the templates for
672 the instantiated file do not contain the string 'datarootdir'
673 but contain @datadir@, @docdir@, @infodir@, @localedir@, or
674 @mandir@, replace the reference '${datarootdir}' by the value.
675 * tests/torture.at (datarootdir workaround): New test.
676 * NEWS: Advertise this temporary fixup.
677 Based on a patch by Bruno Haible, reported and analyzed by
678 Paul Eggert and Noah Misch.
680 2006-04-12 Eric Blake <ebb9@byu.net>
682 * tests/autotest.at (Debugging a failed test): Fix comment.
684 2006-04-12 Stepan Kasal <kasal@ucw.cz>
686 * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Simplify the summary of
687 all the changes since 2006-04-07.
689 2006-04-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
691 * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): If `ln -s file1 file2'
692 succeeded, but `ln -s file dir' failed, take care to remove the
693 leftover target before the next test, to prevent its spurious
694 failure; also make sure `ln file dir' works before selecting it.
695 Thanks to Keith Marshall for pointing this out.
698 * lib/autotest/general.m4 (AT_INIT): Store quoted variable
699 assignments in `at_debug_args', so that we put them correctly
701 * tests/autotest.at (Debugging a failed test): Unmark XFAIL.
702 Reported by Eric Blake.
704 2006-04-11 Eric Blake <ebb9@byu.net>
706 * tests/autotest.at (AT_CHECK_AT): Add new argument, to allow
707 top-level tests after micro-suite has been run. Used in...
708 (Debugging a successful test, Debugging script and environment),
709 (Debugging a failed test): ...these new tests. The first of these
711 * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): New
712 macro, split out from...
713 (AT_INIT): ...here, so that using -d also generates a run script.
714 Document that -d inhibits top-level logging.
715 * doc/autoconf.texi (testsuite Invocation): Document that -d only
716 inhibits top-level logging; debug scripts are created.
718 * lib/autotest/general.m4 (_AT_CHECK): Avoid syntax error on empty
720 * tests/autotest.at (Empty test, Empty check): New test to check it.
722 * lib/autoconf/c.m4 (AC_C_CONST, AC_C_VOLATILE): Avoid warnings
725 2006-04-10 Stepan Kasal <kasal@ucw.cz>
727 * tests/mktests.sh: Use "trap '' 0", not "trap 0". Do not touch
728 the files if a problem appears. Make the empty *.at files
729 read-only, too. Proposed by Ralf Wildenhues.
731 2006-04-10 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
733 * config/Makefile.am: Add comment to force updated Makefile.in.
735 * lib/freeze.mk: Fix typo in comment. Unlike the last, white
736 space only patch to this file, this patch causes the Makefile.in
737 files that include freeze.mk to be updated, and thus have a
738 newer time stamp again, which in turn makes a pristine CVS
739 checkout have correct time stamps.
741 * Makefile.maint (cvs-sv): New macro, to be used..
742 (config.guess-url_prefix, config.sub-url_prefix)
743 (texinfo.tex-url_prefix, standards.texi-url_prefix): ..here;
744 point to CVS text checkout of Gnulib files.
745 (copyright-check): Bump current year.
746 (announcement): Do not hard-wire `./announce-gen'.
747 (cvs-update): Propagate failures of `cvs' and `move-if-change'
749 * Makefile.cfg (executable-update): Use `chmod a+x' instead of
751 (wget_files): Update config.guess, config.sub, texinfo.tex by
752 `wget-update', now that their URLs work again.
754 2006-04-10 Paul Eggert <eggert@cs.ucla.edu>
756 * doc/autoconf.texi (Particular Types): Don't use AC_CHECK_TYPE.
757 Problem noted by Paul D. Smith.
759 2006-04-10 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
761 * doc/autoconf.texi: Remove unused words from word list.
762 * .x-sc_prohibit_atoi_atof, .x-sc_space_tab, .x-sc_sun_os_names,
763 .x-sc_trailing_space: New files.
765 * doc/standards.texi: Sync from gnulib.
767 * NEWS, doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): Mark
768 `LIBOBJDIR' as experimental.
770 * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): MSYS `ln -s' fails
771 with a target directory; it's internally implemented as `cp'
772 anyway, but since Autoconf advertises the possibility to use
773 a target directory when LN_S is `ln -s', we need to find out.
774 Reported by Rolf Ebert <rolf.ebert.gcc@gmx.de> against MSYS,
775 analyzed by Keith Marshall <keith.marshall@total.com>.
779 2006-04-10 Paul Eggert <eggert@cs.ucla.edu>
781 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
782 confdefs.h as-is. In general, if it has backslash-newline or the
783 like, then it doesn't work either to sort or to remove empty
786 2006-04-09 Stepan Kasal <kasal@ucw.cz>
788 * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
790 2006-04-09 Alexandre Duret-Lutz <adl@gnu.org>
792 * lib/autom4te.in (Automake-preselections): Preselect
795 2006-04-08 Paul Eggert <eggert@cs.ucla.edu>
797 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Use '\'' for an
798 apostrophe within a single-quoted string, as this is the usual
799 tradition and is easier to read than '"'"'. Don't rely on the
800 shell treating "$/" like '$/'. Use a more-consistent indenting
803 2006-04-09 Eric Blake <ebb9@byu.net>
805 * tests/autotest.at (Backquote command substitution),
806 (Multiline backquote command substitution): Remove mistaken
807 AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
809 (Parenthetical command substitution, Multiline parenthetical
810 command substitution): here.
812 2006-04-08 Paul Eggert <eggert@cs.ucla.edu>
814 Import macros from gnulib (often changing their name).
816 * NEWS: AC_C_TYPE_LONG_DOUBLE is now obsolete.
817 New macros AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE,
818 AC_CHECK_HEADERS_ONCE, AC_FUNC_STRTOLD, AC_HEADER_ASSERT,
819 AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE,
820 AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_INT8_T,
821 AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
822 AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT,
823 AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T,
824 AC_TYPE_UINT64_T, AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T,
825 AC_TYPE_UNSIGNED_LONG_LONG_INT, AC_USE_SYSTEM_EXTENSIONS.
826 The manual mentions Gnulib more prominently.
827 * doc/autoconf.texi (Gnulib): New node.
828 (Pointers): Add Gnulib URL.
829 (Particular Functions): Alphabetize. Add AC_FUNC_STRTOLD.
830 (Generic Functions): Add AC_CHECK_FUNCS_ONCE. Refer to new
832 (Particular Headers): Add AC_HEADER_ASSERT. For stdbool.h,
833 suggest a #define rather than a typedef for _Bool, and mention
834 Gnulib rather than trying to substitute stdbool code.
835 (Generic Headers): Add AC_CHECK_HEADERS_ONCE.
836 (Generic Declarations): Add AC_CHECK_DECLS_ONCE.
837 (Particular Structures): Add AC_STRUCT_DIRENT_D_INO,
838 AC_STRUCT_DIRENT_D_TYPE.
839 (Particular Types): Mention stdint.h and inttypes.h as standard
841 Add AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
842 AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_DOUBLE,
843 AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_LONG_LONG_INT, AC_TYPE_UINT8_T,
844 AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
845 AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT.
846 (C Compiler): Move AC_C_LONG_DOUBLE to ...
847 (Obsolete Macros): here. Under AC_LONG_DOUBLE, mention
848 AC_TYPE_LONG_DOUBLE or AC_TYPE_LONG_DOUBLE_WIDER instead.
849 (Posix Variants): Add AC_USE_SYSTEM_EXTENSIONS.
850 (Coding Style). Don't mention m4_expand_once.
851 * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Implement via
852 AC_TYPE_LONG_DOUBLE_WIDER. Now obsolete.
853 * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): New macro.
854 (AC_CHECK_FUNCS): Use it.
855 (AC_CHECK_FUNCS_ONCE, AC_FUNC_STRTOLD): New macros.
856 (AC_FUNC_WAIT3): "the Open Group standards" -> "POSIX".
857 * lib/autoconf/general.m4 (AC_CHECK_DECLS_ONCE): New macro.
858 * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): New macro.
859 (AC_HEADER_ASSERT): New macro.
860 (AC_HEADER_STDBOOL): Don't assume "#error" works.
861 Catch a bug in IBM AIX xlc compiler version 6.0.0.0.
862 Catch a bug in an HP-UX C compiler.
863 * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): New macro.
864 * lib/autoconf/types.m4 (AC_TYPE_INTMAX_T. AC_TYPE_UINTMAX_T):
865 (AC_TYPE_INTPTR_T, AC_TYPE_UINTPTR_T. AC_TYPE_LONG_DOUBLE):
866 (AC_TYPE_LONG_DOUBLE_WIDER, AC_C_LONG_DOUBLE, AC_TYPE_LONG_LONG_INT):
867 (AC_TYPE_UNSIGNED_LONG_LONG_INT, _AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT):
868 (_AC_STRUCT_DIRENT, AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE):
871 * tests/mktests.sh (ac_exclude_list, au_exclude_list): Do not
872 use /^foo|bar$/, it does not mean /^(foo|bar)$/.
874 2006-04-08 Stepan Kasal <kasal@ucw.cz>
876 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Fix the wording
877 of the warning introduced by the 2001-08-28 change.
879 2006-04-08 Stepan Kasal <kasal@ucw.cz>,
880 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
882 * lib/autoconf/general.m4 (AC_CACHE_SAVE): All `ac_cv_env_foo'
883 variables shall be overriden by the cache.
884 * tests/torture.at (AC_ARG_VAR): Test also with a first value
885 that contains braces.
887 2006-04-07 Stepan Kasal <kasal@ucw.cz>
889 Revert the patch from 2006-04-01 and only improve
890 _AS_DETECT_BETTER_SHELL:
892 * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not optimize; do not
893 skip nonexistent directories.
894 (_AS_DETECT_BETTER_SHELL): The optimization is moved here--try
895 only shell candidates which exist.
896 (AS_UNAME): No need to give three parameters to _AS_PATH_WALK.
897 * lib/autotest/general.m4 (AT_INIT): No need to give three
898 parameters to _AS_PATH_WALK.
900 2006-04-07 Stepan Kasal <kasal@ucw.cz>,
901 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
903 * bin/autoupdate.in (handle_autoconf_patches): Change the way we
904 distinguish m4sugar macros.
905 * tests/tools.at (autoupdating with aclocal and m4_include):
906 New test. Bug reported by Gary V. Vaughan <gary@gnu.org>,
907 test case by Noah Misch <noah@cs.caltech.edu>.
909 2006-04-07 Stepan Kasal <kasal@ucw.cz>
911 Revert my change from 2006-03-17, in other words:
912 * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Insert BIN_SH=xpg4
914 (AS_SHELL_SANITIZE): Remove DUALCASE=1.
915 * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Say that
918 2006-04-07 Eric Blake <ebb9@byu.net>
920 * doc/autoconf.texi (Programming in M4sh): Document that
921 AS_MKDIR_P exits the script on failure.
922 * lib/autotest/general.m4: Remove redundant AS_ERROR.
924 2006-04-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
926 * config/elisp-comp, config/install-sh, config/mdate-sh,
927 config/missing, config/mkinstalldirs: Sync from Automake.
929 * lib/Autom4te/FileUtils.pm, lib/Autom4te/Struct.pm: Sync
932 * doc/make-stds.texi: Sync from gnulib.
934 2006-04-06 Eric Blake <ebb9@byu.net>
936 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
937 check, s/ac_exeext/ac_cv_exeext/. Fixes regression introduced
940 2006-04-06 Stepan Kasal <kasal@ucw.cz>,
941 Eric Blake <ebb9@byu.net>,
942 Paul Eggert <eggert@cs.ucla.edu>,
943 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
945 * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Fix the detection of
946 whether `set' quotes correctly: redirect stderr of the tested
947 `set', and use a subshell, for Ultrix; use `sed' instead of
948 `grep' for zsh `set' which may write binary output; match only
949 at the beginning of a line, to avoid false positives.
950 In order to avoid false positives by unrelated variables with
951 multiline content, put the dump algorithm in a subshell and
952 unset all variables containing newlines (except some which are
953 special to the shell). Warn about cache variables that are
956 2006-04-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
958 * config/config.guess, config/config.sub, config/texinfo.tex:
961 * tests/mktests.sh: Reword comments.
963 * tests/mktests.sh: Only skip internal macros starting with
964 `_AC_' or `__AC_'. Noted by Stepan Kasal.
965 Update exclusion lists for the test suite to this end:
966 (AC_ARG_VAR): Do test this now.
967 (AC_SEARCH_LIBS, AC_REPLACE_FUNCS): Need an argument.
968 (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
969 (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
970 (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
972 * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
973 shell issue with double-quoted command substitutions of native
975 Reported to MSYS by Mark Cave-Ayland, to Autoconf by Keith
978 * Makefile.maint (sc_cast_of_argument_to_free): Do not fail when
979 no file matches the glob, discard the warning, set `nullglob'.
980 (syntax-check): Likewise.
981 (sc_cast_of_x_alloc_return_value): Likewise.
982 (sc_cast_of_alloca_return_value, sc_error_exit_success)
983 (sc_prohibit_jm_in_m4, .re-list, sc_unmarked_diagnostics)
984 (m4-check): Likewise.
985 (sc_system_h_headers): Do not print rule on execution.
986 (sc_tight_scope): Do not fail for non-existing `src' directory.
987 (sc_changelog): Skip the Copyright footer.
988 * lib/autoconf/lang.m4: Remove trailing space.
990 * lib/autoconf/status.m4: More replacements to
991 <tab><space> where this makes sense.
993 2006-04-06 Stepan Kasal <kasal@ucw.cz>
995 * tests/Makefile.am (maintainer-check-posix):
996 s/POSIXLY_CORRECTLY/POSIXLY_CORRECT/
998 * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Append TAGS to
999 ac_config_<foo>s again, sometimes normalized, sometimes not.
1000 (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS):
1001 (AC_CONFIG_COMMANDS): Do not do so here.
1002 (_AC_CONFIG_REGISTER_DEST): Double quote the tags in macros _AC_LIST_TAGS
1003 and_AC_LIST_TAG_COMMANDS; fixes another regression introduced by the
1004 2005-07-25 rewrite. Noticed by Noah Misch.
1006 * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): Do not define
1007 _AC_PRESERVE_HELP_ORDER, ...
1008 (AC_ARG_ENABLE, AC_ARG_WITH): ... use AC_PROVIDE_IFELSE insetad.
1010 * lib/autoconf/general.m4 (AC_ARG_VAR): Do not use m4_divert_once
1011 inside m4_expand_once; it is redundant.
1013 * lib/autoconf/general.m4 (_AC_INIT_HELP): Remove the broken support
1014 for --help from Cygnus `configure.'
1016 2006-04-06 Paul Eggert <eggert@cs.ucla.edu>
1018 * doc/autoconf.texi (C Compiler): Warn about #error. Follows up
1019 on a patch proposed by Ralf Wildenhues.
1021 2006-04-05 Paul Eggert <eggert@cs.ucla.edu>
1023 * lib/autoconf/status.m4: Replace <space>''<tab> with
1024 <tab><space> where this makes sense.
1026 2006-04-05 Howard Chu <hyc@highlandsun.com> (trivial change)
1027 Noah Misch <noah@cs.caltech.edu>
1029 * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): New macro.
1030 (AC_ARG_ENABLE, AC_ARG_WITH): Adjust.
1031 * doc/autoconf.texi (Help Formatting): New node.
1032 * NEWS: Announce AC_PRESERVE_HELP_ORDER.
1034 2006-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1036 * TODO, config/Makefile.am, lib/freeze.mk, lib/autoconf/c.m4,
1037 lib/autoconf/specific.m4, lib/autoconf/status.m4,
1038 lib/autoconf/types.m4, lib/autotest/general.m4,
1039 tests/mktests.sh, tests/torture.at: White space cleanup:
1040 remove some SPACE before TAB, or add quoting ('' or @&t@).
1042 * NEWS, TODO, bin/autoreconf.in: `filesystem' -> `file system'.
1044 * doc/autoconf.texi (Shell Substitutions): Document `^' vs. `|'.
1046 2006-04-05 Eric Blake <ebb9@byu.net>
1048 * lib/autotest/general.m4 (AT_INIT): Prep AT_*_all, so that an
1049 empty test suite works.
1050 * tests/autotest.at (Empty test suite): Remove xfail.
1052 2006-04-05 Noah Misch <noah@cs.caltech.edu>
1054 * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Do not append normalized
1055 TAGS to ac_config_<foo>s.
1056 (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS): Do so here.
1057 (AC_CONFIG_COMMANDS): Append NAME to ac_config_commands without
1058 normalizing it, consistent it with previous releases.
1059 * tests/torture.at (Macro calls in AC_CONFIG_COMMANDS tags): New test.
1061 2006-04-05 Paul Eggert <eggert@cs.ucla.edu>
1063 * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR, AS_DIRNAME_EXPR):
1064 Use simplified args that Eric Blake originally suggested.
1066 2006-04-04 Paul Eggert <eggert@cs.ucla.edu>
1068 * tests/mktests.sh: Don't use 'cat'; just read the files directly.
1069 Prefer 'sort -u' to 'sort | uniq'. Filter data before sorting it.
1070 Use 'comm' rather than N instances of grep; this also fixes a bug
1071 whereby substrings were incorrectly matched, causing us to not
1072 generate tests for AC_F77_NAME_MANGLING and AC_FUNC_LSTAT.
1073 (exclude_list): Exclude empty macros.
1074 (ac_exclude_list): Exclude AC_INCLUDES_DEFAULT.
1076 Use awk rather than grep -E or egrep, to avoid
1077 portability problems with regular expressions containing newlines.
1078 (exclude_list, ac_exclude_list, au_exclude_list, ac_exclude_script):
1079 Switch from grep to awk syntax.
1080 (ac_exclude_script): Renamed from ac_exclude_egrep.
1081 (au_exclude_script): Renamed from au_exclude_egrep.
1083 2006-04-04 Noah Misch <noah@cs.caltech.edu>
1085 * lib/autoconf/general.m4 (_AC_INIT_HELP): Only `configure.in' evidences
1086 a subdirectory subject to Cygnus `configure'.
1087 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Likewise.
1089 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Omit the bug
1090 report request when we have no AC_PACKAGE_BUGREPORT.
1092 2006-04-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1096 * tests/mktests.sh: Update copyright year in the header of the
1099 * lib/autoconf/c.m4 (AC_C_INLINE): Do not skip cleanup code.
1100 (AC_C_RESTRICT): Likewise. Furthermore, add a function with a
1101 typedef'ed restricted pointer, to catch a compiler bug on
1102 HP-UX 11.x, and fix warnings so it passes with -Werror.
1103 (_AC_PROG_CC_C99): Likewise.
1104 Reported by Albert Chin <china@thewrittenword.com>.
1105 * tests/mktests.sh: Do not skip AC_C_INLINE, AC_C_RESTRICT.
1107 2006-04-03 Noah Misch <noah@cs.caltech.edu>
1109 * bin/autoscan.in (subdirs): New global.
1110 (scan_file): Prune directories with configure{,.{ac,in,gnu}}.
1111 (output): Emit AC_CONFIG_SUBDIRS as needed.
1112 * tests/autoscan.at (autoscan): Remove XFAIL.
1114 2006-04-03 Noah Misch <noah@cs.caltech.edu>
1116 * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
1118 2006-04-03 Eric Blake <ebb9@byu.net>
1120 * THANKS: Add myself.
1122 2006-04-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1124 * lib/autotest/general.m4 (AT_INIT): Add `at_testdir' to pointer
1125 to log, point to testsuite output tree.
1127 2006-04-02 Paul Eggert <eggert@cs.ucla.edu>
1129 * NEWS: AC_PROG_CC and AC_PROG_CXX no longer declare 'exit'.
1130 * doc/autoconf.texi (Function Portability): Mention that C++
1131 has trouble with 'exit'.
1132 (Guidelines): Test programs shouldn't use 'exit'.
1133 * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
1134 Remove; all uses removed.
1135 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN):
1136 Return from 'main' instead of calling 'exit'.
1137 * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_CLOSEDIR_VOID):
1138 (_AC_FUNC_FNMATCH_IF, AC_FUNC_GETGROUPS):
1139 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, _AC_FUNC_MALLOC_IF):
1140 (AC_FUNC_MEMCMP, AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
1141 (AC_FUNC_SETPGRP, _AC_FUNC_STAT, AC_FUNC_STRTOD, AC_FUNC_STRERROR_R):
1142 (AC_FUNC_STRNLEN, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
1143 (_AC_FUNC_FORK, _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
1144 * lib/autoconf/headers.m4 (AC_HEADER_STDC): Likewise.
1145 * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
1146 * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
1147 * tests/compile.at: Likewise.
1149 2006-04-02 Pavel Roskin <proski@gnu.org>
1151 * doc/autoconf.texi (AC_PATH_X): Update per 2005-08-26 change.
1153 2006-04-01 Stepan Kasal <kasal@ucw.cz>
1155 Clean up _AC_COMPILER_EXEEXT* macros.
1157 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
1158 detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
1159 ac_file to the name of the default output file and call
1160 _AC_COMPILER_EXEEXT_WORKS. Move the definition of ac_files and the
1161 initial `rm' of the candidate files...
1162 (_AC_COMPILER_EXEEXT): ... here and simplify them. Moreover, use
1163 the same list in subsequent `rm' calls, and for the temporary
1164 redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
1165 and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
1166 (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
1167 (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
1168 no longer needed) by libtool. Make it a cache check.
1169 (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
1170 copied here by mistake.
1171 (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
1172 _AC_COMPILER_EXEEXT.
1173 * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
1174 _AC_COMPILER_OBJEXT directly.
1175 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
1177 2006-04-01 Stepan Kasal <kasal@ucw.cz>
1179 * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): New macro.
1180 (AS_DIRNAME): Use it.
1181 (_AS_PREPARE): Add _AS_DIRNAME_PREPARE.
1183 * tests/*.at: Remove the generated ones.
1185 2006-04-01 Stepan Kasal <kasal@ucw.cz>
1187 * lib/autotest/general.m4 (AT_INIT): Don't optimize the first PATH walk.
1189 2006-04-01 Eric Blake <ebb9@byu.net>
1191 * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Optimize nonexistent
1192 directories, unless optional third argument supplied.
1193 (AS_UNAME): Don't optimize PATH walk.
1195 * lib/Autom4te/Struct.pm, lib/autoconf/c.m4: s/non-existent/nonexistent/
1197 2006-04-01 Eric Blake <ebb9@byu.net>
1198 and Stepan Kasal <kasal@ucw.cz>
1200 * lib/m4sugar/m4sh.m4: Sort sections as implied by the comments,
1203 2006-04-01 Noah Misch <noah@cs.caltech.edu>
1205 * lib/autoconf/general.m4 (_AC_INIT_VERSION): Emit script name and
1206 Autoconf version number despite a zero- or one-argument AC_INIT.
1208 * bin/autoreconf.in (parse_args): Multiple -v send --verbose to
1210 * lib/Autom4te/General.pm (getopt): Make -v and -d incremental.
1211 * doc/autoconf.texi (autoreconf Invocation): Document it.
1213 * doc/autoconf.texi: Use `Cygwin', `MinGW', and `license' consistently.
1214 Append LocalWords so ispell-buffer passes cleanly. Spelling fixes.
1216 2006-04-01 Eric Blake <ebb9@byu.net>
1218 * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Allow use in shell lists.
1219 * lib/autotest/general.m4: Be tolerant of existing directory when
1220 rm failed to remove it.
1222 2006-04-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1224 * bin/autoupdate.in: Redefine m4_location so that warnings print
1225 the correct lines of the input file by subtracting..
1226 (_au__first_line): ..this new definition.
1228 * lib/autoconf/general.m4 (AC_COMPILE_CHECK): Prefer
1229 AC_MSG_CHECKING over obsolete AC_CHECKING in autoupdated code.
1230 Remove stray newline in output.
1231 (AC_FOREACH): AU_DEFUN this as literal for autoupdate, and also
1232 AC_DEFUN this for autoconf, including the obsoletion diagnose.
1233 Fixes autoupdating of code where the replacement output contains
1235 * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
1236 * tests/mktests.sh (ac_exclude_list): Add AC_FOREACH.
1237 (au_exclude_list): Add AC_LANG_SAVE.
1238 * tests/tools.at: Several new tests for all of this.
1239 * doc/autoconf.texi (Obsoleting Macros): Give a hint about the
1241 The AC_LANG_SAVE issue was reported against Libtool by
1242 Dalibor Topic <robilad@kaffe.org>, and against Autoconf 2.57 by
1243 Kristian Kvilekval <kris@cs.ucsb.edu>.
1245 2006-04-01 Stepan Kasal <kasal@ucw.cz>
1247 * bin/autoupdate.in: Handle m4 builtins and m4sugar macros together--
1248 switch all of them on and of when necessary. Fixes the bug when
1249 m4sugar macros (e.g., m4_define) were expanded after the first
1250 automatic update (e.g., after AC_PREREQ or AC_INIT).
1252 2006-03-31 Paul Eggert <eggert@cs.ucla.edu>
1254 * doc/autoconf.texi (Programming in M4sh): Sharpen the descriptions
1255 of AS_BASENAME and AS_DIRNAME. Reported by Stepan Kasal.
1257 * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): Handle ///, ////, etc.
1258 correctly. Problem reported by Eric Blake.
1259 (_AS_EXPR_PREPARE): Detect Tru64 expr bug. Problem reported by
1262 2006-03-30 Paul Eggert <eggert@cs.ucla.edu>
1264 * doc/autoconf.texi (Programming in M4sh, Limitations of Usual Tools):
1265 Tighten up the basename/dirname wording.
1267 2006-03-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1269 * Makefile.maint (sc_texi_notab): New check: do not use TABs
1270 in texinfo files outside of verbatim environments.
1271 (syntax-check-rules): Update.
1272 * doc/autoconf.texi (Configuration Headers): Conform to it.
1274 2006-03-30 Chris Pickett <cpicke@cs.mcgill.ca> (tiny change)
1276 * doc/autoconf.texi (autoreconf Invocation): Mention that -I for
1277 aclocal cannot be given on the command line.
1279 2006-03-29 Paul Eggert <eggert@cs.ucla.edu>
1281 * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME.
1282 Give an example for AS_DIRNAME instead of referring to Posix..
1283 (File System Conventions): Put discussion of // versus / here, and
1285 (Limitations of Usual Tools): Add basename. Remove verbiage
1286 after dirname, since it got moved to the above sections.
1287 All this was inspired by a patch proposed earlier by Eric Blake.
1289 2006-03-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1291 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Quote
1292 `$0' to protect against spaces.
1293 * lib/autotest/general.m4 (AT_INIT): Likewise.
1294 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise, for
1297 2006-03-26 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1299 * bin/autoscan.in: The value of find_configure_ac should be
1300 checked for existence, so we don't barf over a nonexisting
1301 configure.ac. Reported by Laurence Darby <ldarby@tuffmail.com>.
1303 2006-03-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1305 * bin/autoupdate.in: Fix some typos.
1307 2006-03-21 Stepan Kasal <kasal@ucw.cz>
1309 * doc/autoconf.texi (Installation Directory Variables): Fix typo.
1311 * lib/autoscan/autoscan.list: Refreshed.
1313 2006-03-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1315 * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C
1316 and Erlang related variables.
1318 * lib/autoconf/c.m4 (AC_LANG(Objective C), AC_LANG_OBJC)
1319 (_AC_LANG_ABBREV(Objective C), _AC_LANG_PREFIX(Objective C))
1320 (AC_LANG_SOURCE(Objective C), AC_LANG_PROGRAM(Objective C))
1321 (AC_LANG_CALL(Objective C), AC_LANG_FUNC_LINK_TRY(Objective C))
1322 (AC_LANG_BOOL_COMPILE_TRY(Objective C))
1323 (AC_LANG_INT_SAVE(Objective C), AC_LANG_PREPROC(Objective C))
1324 (AC_PROG_OBJCPP, AC_LANG_COMPILER(Objective C), AC_PROG_OBJC)
1325 (_AC_PROG_OBJC_G): New macros.
1326 (_AC_ARG_VAR_CPPFLAGS): Adjusted.
1327 * doc/autoconf.texi (Objective C Compiler): New node.
1328 (Preset Output Variables): Document OBJCFLAGS.
1329 (Language Choice): Document `Objective C' language.
1330 (Fortran Compiler): Fix typo.
1332 Inspired by a patch from David M. Lloyd <dmlloyd@tds.net>.
1334 2006-03-20 Stepan Kasal <kasal@ucw.cz>
1336 * doc/autoconf.texi (Default Includes): Fix typo
1337 s/AC_HEADERS_STDC/AC_HEADER_STDC/
1338 (Limitations of Usual Tools): s/unwriteable/unwritable/
1339 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
1340 Fix typos in the comments.
1342 2006-03-17 Stepan Kasal <kasal@ucw.cz>
1344 * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
1345 Factor out the warning to...
1346 (_AC_TOOL_WARN): ... this new macro; use `cross_compiling'.
1347 * tests/local.at (AT_CHECK_MACRO_CROSS): Avoid this warning.
1348 * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
1350 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Do not special
1351 case `ac_delim' when writing the sed script.
1353 * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Removed BIN_SH=xpg4,
1354 moved DUALCASE=1 ...
1355 (AS_SHELL_SANITIZE): ... here.
1356 * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Do not say
1359 * lib/autoconf/programs.m4 (AC_CHECK_PROG): Quote the parameter of
1361 (_AC_PATH_PROG): Store the result to VARIABLE.
1362 (AC_PATH_PROG): No need to set VARIABLE again.
1364 * tests/local.at (AT_CHECK_MACRO_CROSS): New macro, creates two tests:
1365 the first one is usual AT_CHECK_MACRO test, the second one checks
1366 that the same works when cross-compiling.
1367 * tests/semantics.at (AC_CHECK_ALIGNOF, AC_CHECK_ALIGNOF struct):
1368 (AC_CHECK_SIZEOF, AC_CHECK_SIZEOF struct): Use it.
1370 2006-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1372 * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Prepend
1373 the directory `/usr/bin/posix' in the shell search, to prefer
1374 the Posix shell not only in subsequent spawns as with `$BIN_SH'
1377 * doc/autoconf.texi (contents): To fix texi2html output, hide
1378 `@setcontentsaftertitlepage' for HTML.
1379 (Writing Autoconf Macros): Likewise, insert space after `@c'.
1380 (Leviticus, Numbers, Deuteronomy): Likewise, change `@,c' to
1383 2006-03-16 Stepan Kasal <kasal@ucw.cz>
1385 * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Move the IFS setup and CDPATH
1387 (AS_SHELL_SANITIZE): ...here; mention _AS_PATH_WALK needs IFS set.
1388 * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Add an explanation
1389 why IFS is restored so late; thank you, Ralf, for reminding us.
1391 2006-03-15 Stepan Kasal <kasal@ucw.cz>
1393 * doc/autoconf.texi (Pretty Help Strings): No need to use cached
1394 variables in the examples.
1396 2006-03-14 Romain Lenglet <rlenglet@users.forge.objectweb.org>
1398 * doc/autoconf.texi (several sections): Cleaned up documentation for
1399 macros in erlang.m4.
1401 2006-03-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1403 * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine
1404 failure condition for `$(cmd)' style command substitutions.
1405 (Parenthetical command substition, Multiline parenthetical
1406 command substition): Use it.
1408 * doc/autoconf.texi (Special Shell Variables): Missing word.
1409 Reported by Keith Marshall <keith.marshall@total.com>.
1411 * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not forget to reset
1412 IFS even in case of empty `$PATH'.
1414 2006-03-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1416 * lib/autotest/general.m4 (AT_INIT) <at_optarg>: Optimize
1417 `expr' away if there is nothing to do.
1418 < --keywords >: Simplify and robustify argument handling.
1419 Revert erroneous comment from 2005-08-23. Extend to allow
1420 keyword negation with `!'.
1421 Update help message. Remove broken code to prevent running
1422 tests multiple times.
1423 * doc/autoconf.texi (testsuite Invocation) < --keywords >:
1424 Update and fix the documentation accordingly.
1425 * tests/autotest.at (Keywords): Renamed to..
1426 (Keywords and ranges): .. this. Extended to make sure negated
1427 keywords, keywords taken from AT_SETUP arguments, and numeric
1428 test ranges work, and that matching is case-insensitive.
1430 2006-03-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1432 * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Use a typedef to
1433 allow to pass unnamed structs even in C++.
1434 (AC_CHECK_SIZEOF): Likewise.
1435 Also fix quoting error in `AC_MSG_FAILURE' arguments.
1436 * tests/semantics.at (AC_CHECK_ALIGNOF struct, AC_CHECK_SIZEOF
1437 struct): New tests for unnamed structs, each both native and
1440 * lib/autoconf/c.m4 (AC_C_TYPEOF): Use typedef to avoid defining
1441 a structure inside a cast, for C++ conformance.
1442 * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Likewise.
1443 Also fix quoting error in `AC_MSG_FAILURE' arguments.
1445 * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If we cannot enable C99
1446 nor C89 mode, set `$ac_cv_prog_cc_stdc' to `no' instead of
1447 trying to execute the command `no'.
1449 * lib/autoconf/lang.m4 (AC_LANG_CONFTEST): AC_DEFUN this, not
1450 m4_define, so that the requirements of `AC_INCLUDES_DEFAULT' are
1453 * doc/autoconf.texi (autoconf Invocation): Fix typos in trace
1454 example. Do not emphasize `$%', it is hardly new and special.
1455 Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
1457 * doc/autoconf.texi (Limitations of Usual Tools): Document
1458 OpenBSD and traditional `grep' failure to handle multiple
1459 patterns separated by newlines.
1461 2006-03-10 Romain Lenglet <rlenglet@users.forge.objectweb.org>
1463 * doc/autoconf.texi (several sections): Add documentation for macros
1466 2006-03-10 Eric Blake <ebb9@byu.net>
1468 * doc/autoconf.texi (Obsolete Macros): Fix wording of
1471 2006-03-10 Paul Eggert <eggert@cs.ucla.edu>
1473 * doc/autoconf.texi: Use @acronym more consistently for acronyms
1474 like BSD, GPL, LGPL. Fix minor English typos.
1475 (AC_STDC_HEADERS, AC_PROG_GCC_TRADITIONAL):
1476 Mention that these macros are becoming obsolete.
1477 (AC_STDC_HEADERS, AC_PROG_CC, AC_C_CONST, AC_C_VOLATILE):
1478 Use more modern terminology for which standard is what.
1479 (AC_PROG_CC): Mention gcc first, and remove obsolete references to egcs
1481 (AC_PROG_CXX): Likewise.
1482 (AC_C_PROTOTYPES, Test Functions, AC_LIBOBJ vs LIBOBJS):
1483 Remove obsolete discussion about how to port to K&R.
1484 (Guidelines for Test Programs): Suggest AC_HEADER_STDBOOL rather than
1485 the obsolescent AC_HEADER_STDC.
1486 (AC_FOO_IFELSE vs AC_TRY_FOO): Don't use #error; test programs
1489 2006-03-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1491 * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
1492 Remove stdin redirection from /dev/null to allow pipe to work.
1494 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
1496 * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
1497 Require that /lib/cpp include stdio.h correctly. Solaris 10's
1498 doesn't. Problem reported by D'Arcy A MacIsaac and diagnosed by
1501 2006-03-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1503 * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): The limit for
1504 HP-UX sed is 99 commands, not 100.
1505 (_AC_OUTPUT_FILES_PREPARE): Do not count the `}' of an
1506 _AC_SUBST_FILES fragment. Separate `{' and `r' commands by
1507 newline for portability.
1508 * tests/torture.at (Torturing config.status): Also test 100
1509 AC_SUBST_FILE invocations. Fix test to actually verify the
1510 AC_CONFIG_FILES output.
1511 * doc/autoconf.texi (Limitations of Usual Tools): Document HP-UX
1512 command, label, and read-file `r' limits. Unify HP-UX spelling.
1514 * tests/Makefile.am (edit, $(wrappers)): Do not use `$<' in
1516 ($(TESTSUITE_GENERATED_AT)): Use `$(srcdir)` for the benefit of
1518 (autoconfdir, $(AUTOCONF_FILES)): Likewise.
1519 * tests/mktests.sh: Small shell portability fixes.
1521 2006-03-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1523 * doc/autoconf.texi (Caching Results): Fix the examples to use a
1524 recommended quoting style and discard unwanted output.
1526 2006-03-05 Paul Eggert <eggert@cs.ucla.edu>
1528 * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
1529 (AT_INIT): Use it, to remove arbitrary limit of 999,999 test
1530 cases, and to work around Tru64 expr bug.
1532 2006-03-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1534 * doc/autoconf.texi (Limitations of Usual Tools): Mention Tru64
1535 expr bug that turns the result of a regex match into a number if
1538 2006-03-04 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1540 * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Work around
1541 HPUX compiler bug, similarly to AC_CHECK_SIZEOF, as documented
1542 in section `Specific Compiler Characteristics'.
1544 2006-03-04 Eric Blake <ebb9@byu.net>
1546 * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R): Avoid unused
1549 2006-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1551 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Force correct
1552 order of variable initialization, so even the Solaris 2.6 shell
1553 can create a config header correctly. Fixes lots of test suite
1556 2006-02-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1558 * doc/autoconf.texi (Text processing Macros): New node to
1559 document the m4sugar macros m4_re_escape, m4_tolower,
1560 m4_toupper, m4_split, m4_normalize, m4_append, m4_append_uniq.
1562 2006-02-22 Paul Eggert <eggert@cs.ucla.edu>
1564 * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Fix typo:
1565 XrmInitialize (0) -> XrmInitialize ().
1566 Reported by Toshio Kuratomi.
1568 2006-02-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1570 * lib/m4sugar/m4sh.m4 (AS_IF): Extend to allow more than one
1571 test, as in `if tests; then cmd1; elif ...; else ...; fi'.
1572 * doc/autoconf.texi (Programming in M4sh): Adjusted.
1573 * tests/m4sh.at (AS_IF and AS_CASE): Test this. Also make sure
1574 both macros are defun'ed so that required macros are evaluated
1577 * doc/autoconf.texi (Prerequisite Macros): State more precisely
1578 where a required macro will be expanded.
1579 (Coding Style): Another reason not to use `m4_define'.
1581 2006-02-21 Eric Blake <ebb9@byu.net>
1583 * lib/autoconf/general.m4 (_AC_LIBOBJ): Minor optimization.
1585 2006-02-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1587 * doc/autoconf.texi (Looping constructs): New node, to
1588 document m4_for, m4_foreach, m4_foreach_w, and mention
1589 obsolete AC_FOREACH.
1590 (Obsolete Macros): Document AC_FOREACH.
1591 * lib/m4sugar/m4sugar.m4 (_m4_for): Fix declaration comment.
1592 (m4_for): Fix to never loop (almost) endlessly, work correctly
1593 with arithmetic expressions in arguments, a step of zero or
1594 non-integer multiple of the interval, and avoid integer
1596 * tests/m4sugar.at: New test for m4_for, m4_foreach, and
1599 2006-02-20 Romain Lenglet <rlenglet@users.forge.objectweb.org>
1601 Add basic support for Erlang, both for configuring Erlang/OTP
1602 tools, and Erlang as a conf test language.
1603 * lib/autoconf/erlang.m4: New file.
1604 * lib/autoconf/autoconf.m4: Add erlang.m4.
1605 * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Likewise.
1606 * lib/freeze.mk (autoconf_m4f_dependencies): Likewise.
1607 * NEWS: Add short description of new macros.
1608 * THANKS: Add Romain Lenglet.
1610 2006-02-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1612 * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
1613 native /bin/sh may not set KSH_VERSION (seen on OpenBSD).
1615 2006-02-15 Eric Blake <ebb9@byu.net>
1617 * lib/autoconf/general.m4 (AC_CHECK_DECL): Avoid unused variable
1620 2006-02-15 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1622 * lib/m4sugar/m4sh.m4 (AS_CASE): New macro.
1623 (_AS_CASE): Private helper macro.
1624 * tests/m4sh.at: Basic tests for AS_IF and AS_CASE.
1625 * doc/autoconf.texi (Programming in M4sh): Document AS_CASE.
1626 Fix syntax of AS_IF description
1627 (Prerequisite Macros): Mention AS_IF and AS_CASE as workarounds
1628 for the AC_REQUIRE mess.
1629 * NEWS: Mention AS_CASE, AS_BOURNE_COMPATIBLE, and
1632 2006-02-14 Paul Eggert <eggert@cs.ucla.edu>
1634 * doc/autoconf.texi: Minor style cleanup.
1635 Be consistent about spaces after commas.
1636 Insert [] where empty args look a bit funny.
1637 Fix some "i.e." and "e.g." usages.
1638 Try to avoid "X/Y" usages.
1639 Don't be pedantic about "ISO C99"; just say C99.
1640 Prefer GNU style for spaces in front of parens.
1641 (Function Portability): Comment about C89 versus C99
1642 signed integer division.
1643 (Particular Headers): Use current gnulib style for dirent
1646 2006-02-14 Stepan Kasal <kasal@ucw.cz>
1647 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1649 * bin/autoupdate.in (handle_autoconf_macros): Fix updating of
1650 macros without parameters.
1651 * lib/autoconf/autoupdate.m4 (AU_ALIAS): Likewise.
1652 * doc/autoconf.texi (Obsoleting Macros): Document AU_ALIAS.
1653 * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS
1655 (autoupdate): Updated to match AU_ALIAS fix.
1657 2006-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1658 and Paul Eggert <eggert@cs.ucla.edu>
1660 * doc/autoconf.texi (Programming in M4sh): Document
1661 AS_BOURNE_COMPATIBLE and AS_SHELL_SANITIZE.
1663 2006-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1665 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Renamed to..
1666 (AS_BOURNE_COMPATIBLE): ..this.
1667 (_AS_RUN, AS_SHELL_SANITIZE): Adjusted all callers.
1669 2006-02-12 Paul Eggert <eggert@cs.ucla.edu>
1671 * doc/install.texi (Defining Variables): Tighten up the
1672 CONFIG_SHELL wording.
1674 2006-02-12 Paul Eggert <eggert@cs.ucla.edu>
1675 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1677 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Look at the output
1678 of (set -o) rather than testing whether (set -o posix) succeeds,
1679 to work around a bug in the AIX 5.3 shell. Problem originally
1680 reportd by Howard Chu for libtool.
1682 2006-02-10 J.T. Conklin <jtc@acorntoolworks.com>
1684 * doc/autoconf.texi (Running the Compiler, Running the Linker):
1685 Changes the macro arguments in summaries to match the
1688 2006-02-04 Stepan Kasal <kasal@ucw.cz>
1690 * doc/install.texi (Defining Variables): Classify the `CONFIG_SHELL'
1691 hint as ``a workaround for a bug.''
1693 2006-01-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1695 * bin/autoreconf.in: New option `--no-recursive'.
1696 Improve wording for subpackages a bit.
1697 * doc/autoconf.texi (autoreconf Invocation): Updated.
1700 * doc/install.texi (Defining Variables): Put `CONFIG_SHELL'
1701 in environment of `configure', not the command line.
1702 Reported by Howard Chu <hyc@highlandsun.com>.
1704 2006-01-25 Paul Eggert <eggert@cs.ucla.edu>
1706 * doc/autoconf.texi (Limitations of Builtins): Document the
1707 problem with "trap -".
1709 2006-01-23 Steven G. Johnson <stevenj@fftw.org>
1711 * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN):
1712 (_AC_FC_MAIN, __AC_FC_NAME_MANGLING): Use _AC_LANG in check
1713 messages to differentiate Fortran and Fortran 77 tests.
1714 (AC_FC_SRCEXT, AC_FC_FREEFORM): Use AC_LANG_PUSH/POP instead of
1715 AC_LANG_ASSERT, to allow use in mixed-language projects.
1717 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
1719 * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Prefer "defined
1720 FOO" to "defined (FOO)".
1721 * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Likewise.
1722 * lib/autoconf/headers.m4 (AC_HEADER_STAT): Likewise.
1723 * lib/autoconf/specific.m4 (AC_XENIX_DIR): Likewise.
1724 * tests/tools.at (ifnames): Likewise.
1726 2006-01-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1728 * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Do not pass `-q' to mktemp.
1729 * lib/Autom4te/General.pm (mktmpdir): Likewise.
1730 (END): Improve error message a bit.
1731 Reported by Bruce Korb <bkorb@gnu.org>.
1733 2006-01-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1735 * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
1736 `-LIST:' and `-LNO:', for PathScale 2.3 compilers.
1738 2006-01-11 Stepan Kasal <kasal@ucw.cz>
1740 * doc/autoconf.texi (Header Portability): On Solaris 8, sys/ptem.h
1741 requires sys/stream.h. Reported by Oliver Kiddle.
1743 2006-01-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1744 Stepan Kasal <kasal@ucw.cz>
1746 * lib/autotest/general.m4 (AT_INIT): When ensuring writability
1747 before the removals of test dirs, use `find' to avoid modification
1748 of symlinked directories.
1750 2006-01-11 Steven G. Johnson <stevenj@alum.mit.edu>
1752 * lib/autoconf/fortran.m4 (AC_F77_DUMMY_MAIN, AC_FC_DUMMY_MAIN):
1753 Don't ignore the macro arguments.
1755 2006-01-11 David Thompson <dthompsn@vizsolutions.com>
1757 * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Add `exit'
1758 declaration that works for MSVC.
1760 2006-01-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1762 * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT):
1763 Add `*.map' and `.inf' for Green Hills compiler.
1764 Reported by Stefan Seefeld <stefan@codesourcery.com>.
1766 * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Handle quadrigraphs
1767 correctly: pad with spaces after FIRST_PREFIX if necessary,
1768 and compute string lenghts with `m4_qlen' instead of `m4_len'.
1769 * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Comments updated.
1770 * tests/m4sh.at (AS_HELP_STRING): Test extended.
1772 Reported by numerous people, numerous times.
1774 2006-01-05 Paul Eggert <eggert@cs.ucla.edu>
1776 * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in
1777 * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in:
1778 * lib/autoconf/general.m4, lib/autoconf/status.m4:
1779 * lib/autotest/general.m4, tests/local.at:
1780 Update copyright year to 2006.
1782 * Makefile.maint (sc_root_tests): Use the recommended style s/a/b/ for
1784 * doc/autoconf.texi (Installation Directory Variables): Use s|a|b|
1785 for file names, again. Reported by Noah Misch.
1786 (Coding Style): Explain that s|a|b| is preferred for file names.
1787 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer s/a/b/.
1788 (AC_OUTPUT_MAKE_DEFS): Likewise.
1789 * lib/autotest/general.m4 (AT_INIT): Likewise.
1790 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise.
1791 * tests/local.at (AT_CHECK_AUTOM4TE): Likewise.
1793 Fix Posix-conformance bugs re use of { command in sed scripts,
1794 and improve the sed-related documentation a bit.
1795 * doc/autoconf.texi (Installation Directory Variables): Use
1796 our own style advice re 's,a,b,' versus 's|a|b|'. Use "Sed"
1797 rather than "sed" when talking about Sed in general.
1798 (Particular Programs): Likewise.
1799 (Coding Style): y is like s with respect to / and ,.
1800 (Limitations of Usual Tools): Document the weird restrictions
1801 that Posix has about { }. Use better quoting.
1802 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_HEADER):
1803 Rewrite to conform to Posix rules about { } in sed scripts.
1804 * lib/m4sugar/m4sh.m4 (AS_DIRNAME_SED, AS_BASENAME_SED): Likewise.
1805 * tests/foreign.at (Libtool): Likewise.
1806 * tests/semantics.at (AC_CHECK_PROG & AC_CHECK_PROGS):
1807 Use our own style advice re 's,a,b,' versus 's|a|b|'.
1809 2006-01-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1811 * lib/autoconf/status.m4: Fix typo.
1813 * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
1814 singly- or doubly-quoted arguments to `-cmdline', `-ignore',
1815 `-def', for the benefit of Portland `pgf90 -Mipa'.
1816 Reported by Christopher Hulbert <cchgroupmail@gmail.com>.
1818 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
1820 * doc/autoconf.texi: Update copyright (and other) dates to 2006.
1821 * doc/autoconf.texi (Shellology): Mac OS X 10.2 changed the default
1822 shell from zsh to bash.
1824 2005-12-31 Stepan Kasal <kasal@ucw.cz>
1826 * lib/autoconf/programs.m4 (_AC_PROG_GREP): Use $PATH_SEPARATOR;
1827 ":" caused problems on OS/2-EMX. Suggested by Andrew Belov.
1829 2005-12-29 Paul Eggert <eggert@cs.ucla.edu>
1831 * doc/autoconf.texi (Shell Substitutions): Warn about unbalanced
1832 parentheses in $(...). Problem reported by Eric Blake.
1834 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
1836 * doc/autoconf.texi (Limitations of Usual Tools):
1837 Mention which characters can be escaped with \ in portable regular
1838 expressions used in grep, sed, expr. Mention the leading ^ problem
1839 with expr. Clean up some confusing wording. Mention which
1840 grep options are portable.
1842 2005-12-09 Stepan Kasal <kasal@ucw.cz>
1844 * tests/local.at (AT_CHECK_AUTOM4TE): Fix typo in the comment.
1846 2005-12-02 Paul Eggert <eggert@cs.ucla.edu>
1848 * doc/autoconf.texi (Limitations of Builtins): Fix typos in previous
1849 patch, noted by Ralf Wildenhues.
1851 2005-12-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1853 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
1854 posix' unconditionally, for pdksh in `native sh' emulation.
1856 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
1858 * doc/autoconf.texi (Shellology): Document eval $? problem
1860 (Limitations of Builtins): Likewise.
1862 2005-11-10 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1864 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Pass
1865 CONFIG_SHELL in the environment of the configure rerun.
1866 * doc/autoconf.texi (Here-Documents, config.status Invocation):
1867 Suggest passing CONFIG_SHELL absolute, and in the environment
1868 rather than as option.
1870 2005-11-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1872 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
1873 Fix quoting of output line (triggered for many AC_SUBST_FILEs).
1874 Fix macro quoting. Fix output for n * 98 substituted variables.
1876 2005-11-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1878 * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Initialize
1879 `tmp' to avoid file removal race.
1881 2005-11-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1883 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
1884 ac_clean_files and LIBOBJS.
1886 2005-11-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1888 * lib/autoconf/programs.m4 (AC_CHECK_PROG, AC_PATH_PROG):
1889 Factor functionality to..
1890 (_AC_CHECK_PROG, _AC_PATH_PROG): these new macros, but only
1891 `AC_SUBST($1)' in the public version.
1892 (AC_CHECK_TOOL, AC_PATH_TOOL, AC_PATH_TARGET_TOOL)
1893 (AC_CHECK_TARGET_TOOL): Use internal versions for ac_ct_* and
1896 2005-11-01 Stepan Kasal <kasal@ucw.cz>
1898 * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove the comment about 8+3
1901 2005-11-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1903 * NEWS: Move AH_HEADER mention to right place.
1905 2005-10-27 Stepan Kasal <kasal@ucw.cz>
1907 * lib/autoconf/c.m4 (AC_PROG_CC_C_O): "conftst2" -> "conftest2"
1908 * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1910 2005-10-25 Stepan Kasal <kasal@ucw.cz>
1912 * lib/autoconf/c.m4 (AC_PROG_CC_C_O): rm -f conftst2.*, not only
1913 conftst2.$ac_objext.
1914 * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1916 2005-10-24 Stepan Kasal <kasal@ucw.cz>
1918 * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Use conftst2.o instead of
1919 conftest.o, to see whether the compiler really obeys; rm the object
1920 file before and after the test and register it with ac_clean_files.
1921 * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1923 2005-10-21 Stepan Kasal <kasal@ucw.cz>
1925 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When determining,
1926 the delimiter CEOF$ac_eof: fix quoting of CEOF[0-9]* and modify the
1927 code so that the most common case requires less forks.
1929 2005-10-20 Stepan Kasal <kasal@ucw.cz>
1931 * doc/autoconf.texi (Shell Substitutions}: Document that ${10} is
1932 not portable; thanks to Paul Eggert and Alexandre.
1934 * NEWS: Fix an old typo.
1936 2005-10-20 Jim Meyering <jim@meyering.net>
1938 * doc/autoconf.texi: Typo: s/feature/features/ in ``the features of
1939 the latter'', in two places.
1941 2005-10-19 Paul Eggert <eggert@cs.ucla.edu>
1943 * doc/autoconf.texi (Generating Sources): AC_LANG_PROGRAMS ->
1944 AC_LANG_PROGRAM, fixing a typo. Don't give details about
1945 the inner workings of AC_LANG_FUNC_LINK_TRY.
1946 * lib/autoconf/c.m4 (AC_LANG_CALL(C)): Reformat to match
1947 AC_LANG_FUNC_LINK_TRY. This involves returning the value returned
1948 by the function rather than ignoring it.
1949 (AC_LANG_FUNC_LINK_TRY(C)): Call the function rather than simply
1950 comparing its address. Intel's interprocedural optimization was
1951 outsmarting the old heuristic. Problem reported by
1954 2005-10-19 Stepan Kasal <kasal@ucw.cz>
1956 * lib/autoconf/general.m4 (AC_SUBST): Remove an obsolete comment.
1958 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
1960 * lib/m4sugar/m4sugar.m4 (_m4_map): New macro.
1961 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
1963 2005-10-04 Stepan Kasal <kasal@ucw.cz>
1965 * lib/autotest/general.m4 (AT_INIT): Really make the subtree writable
1966 before removing it (chmod -R u+rwx); there are three instances of this.
1968 2005-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1969 Stepan Kasal <kasal@ucw.cz>
1971 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Balance parentheses.
1972 * lib/autotest/general.m4 (AT_INIT): If the test dir already exists,
1973 make its content writable before removing it. Remove an errorneous
1974 comment from the end, where the logs of the failed tests are copied
1975 to the main log file.
1977 2005-09-27 Stepan Kasal <kasal@ucw.cz>
1979 * tests/semantics.at (AC_C_BIGENDIAN): Pass --force to autoheader,
1980 in case the computer is too quick. Double quote the configure.ac
1983 * tests/local.at (AT_CHECK_AUTOCONF): Always pass --force to prevent
1984 problems if the testsuite were running too fast.
1986 2005-09-18 Paul Eggert <eggert@cs.ucla.edu>
1988 * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
1989 and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
1990 (which belong to Xt, not X itself). See Debian bug 327655.
1991 * NEWS: Mention this.
1993 2005-09-07 Stepan Kasal <kasal@ucw.cz>
1995 * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Remove an incorrect comment.
1997 2005-09-06 Paul Eggert <eggert@cs.ucla.edu>
1999 * config/move-if-change: Don't output "$2 is unchanged";
2000 suggested by Ben Elliston. Handle weird characters correctly.
2002 2005-09-06 Stepan Kasal <kasal@ucw.cz>
2004 * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Merge the two AC_LINK_IFELSE
2005 calls, so that the final expansion of this macro is shorter.
2006 Create the conftest.$ac_ext outside the `for' loop, to speed the run.
2007 Do not use `break' in the argument to AC_LINK_IFELSE, it would skip
2008 the cleanup there. Use AS_VAR_* macros, to be more general.
2009 * tests/semantics.at (AC_SEARCH_LIBS): Check for the cleanup.
2011 * lib/autoconf/general.m4: Use AS_IF where appropriate.
2013 * lib/m4sugar/m4sh.m4 (AS_IF): Use m4_default.
2015 2005-09-01 Stepan Kasal <kasal@ucw.cz>
2017 * doc/autoconf.texi (Configuration Headers): Add an index entry
2020 2005-08-26 Pavel Roskin <proski@gnu.org>
2022 * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use shell variable
2023 XMKMF to locate xmkmf. Make XMKMF precious. Export CC when
2026 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
2028 * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
2029 The previous patch didn't work, so try a better one.
2031 2005-08-26 Stepan Kasal <kasal@ucw.cz>
2033 * doc/autoconf.texi (Programming in M4sh) <AS_TR_CPP>: Fix m4 quoting
2034 in the example. Reported by Bruno Haible.
2035 <AS_TR_SH>: Likewise. Also modify the example to be more convincing:
2036 "if $undefined_var;" succeeds with my shell.
2038 * lib/autoconf/general.m4 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST,
2039 AC_CANONICAL_TARGET): Define by AC_DEFUN, no need to use AC_DEFUN_ONCE;
2040 but change the m4_divert_text to m4_divert_once.
2042 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
2044 * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
2045 Work around bug in Solaris /usr/xpg4/bin/awk.
2046 The bug is present in at least Solaris 8 through 10.
2048 2005-08-24 Stepan Kasal <kasal@ucw.cz>
2050 * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Simplify; rejecting
2051 some evil values and relying on the fact that $* concatenates the
2052 parameters by the first character from IFS.
2054 2005-08-23 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>,
2055 Stepan Kasal <kasal@ucw.cz>
2057 * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER_DEST): When the
2058 first header appears, define AH_HEADER.
2059 * doc/autoconf.texi (Configuration Headers): Document AH_HEADER.
2060 Update limitations about when to call AC_CONFIG_HEADERS.
2061 (Configuration Commands): Document that AC_CONFIG_COMMANDS_PRE
2062 parameter can call AC_SUBST, AC_DEFINE, or AC_CONFIG_FOOS; explain
2063 that AC_CONFIG_COMMANDS_PRE and AC_CONFIG_COMMANDS_POST are not
2064 ``Configuration Actions''; fix their index entries.
2066 * lib/autotest/general.m4 (AT_INIT): Process multiple keywords
2067 options correctly. Process N-M as M-N if M is smaller than N.
2068 Process ranges correctly so that N-N will run only N.
2069 Sort and uniquify the tests that will be run. If there is more
2070 than one test, reinsert the banners for the tests.
2071 * tests/autotest.at (Keywords): Unmark XFAIL.
2073 2005-08-23 Stepan Kasal <kasal@ucw.cz>
2075 * lib/autoconf/general.m4 (_AC_DEFINE_Q): Strip the parameter list
2076 before passing the macro name to AH_TEMPLATE.
2078 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): config.status
2079 now opens log after option processing; in particular, --version
2080 and --help do not touch config.log.
2082 * Makefile.maint: Revert the change from 2005-08-12.
2084 2005-08-22 Stepan Kasal <kasal@ucw.cz>
2086 * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Factor out
2088 (_AC_ENABLE_IF, _AC_ENABLE_IF_ACTION): ... these new macros.
2090 2005-08-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2092 * doc/autoconf.texi (Using Autotest, testsuite Scripts)
2093 (Autotest Logs, Writing testsuite.at, testsuite Invocation):
2096 * doc/autoconf.texi (Defining Symbols, Changed Results):
2097 Prepend to LIBS, not append, in examples.
2099 2005-08-16 Stepan Kasal <kasal@ucw.cz>
2101 When building in place, set srcdir="."; suggested by Tim Van Holder.
2103 * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Do this; to recognize
2104 build in place, we need ac_pwd, and thus have to AC_REQUIRE ...
2105 (_AC_INIT_DIRCHECK): ... this macro and AC_DEFUN both of them.
2106 * lib/autoconf/status.m4 (_AC_SRCDIRS): Fix a comment: srcdir="."
2107 does not mean "no --srcdir option".
2109 2005-08-15 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2111 * tests/autoscan.at (autoscan): New file.
2112 * tests/suite.at: Use it.
2113 * tests/Makefile.am (TESTSUITE_HAND_AT): Add it.
2114 Reported against Libtool by Gideon Go <gideon.go@gmail.com>.
2116 * tests/autotest.at (Keywords): Test keywords combinations.
2118 2005-08-12 Stepan Kasal <kasal@ucw.cz>
2120 * Makefile.maint (GZIP_ENV): When checking the help text of gzip,
2121 add "2>&1"; gzip 1.2.4 prints help on stderr.
2123 2005-07-27 Stepan Kasal <kasal@ucw.cz>
2125 * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): The symbol at_reason
2126 was pushdef'ed twice while popped only once. Push it only once.
2127 (_AT_CHECK): Cosmetic changes to the "case $at_status" command.
2129 2005-07-26 Stepan Kasal <kasal@ucw.cz>
2131 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
2132 prefixed by mere "===", not "configure: === ".
2134 2005-07-25 Paul Eggert <eggert@cs.ucla.edu>
2136 * Makefile.maint: Update from Bison.
2138 * lib/m4sugar/m4sugar.m4 (m4_strip): Comment fix---change tab to
2139 "<tab>" in comment, so that the point is understandable.
2141 2005-07-25 Stepan Kasal <kasal@ucw.cz>
2143 Rewrite substantial part of lib/autoconf/status.m4.
2144 The main change is that CONFIG_FILES, CONFIG_HEADERS, CONFIG_LINKS,
2145 and CONFIG_COMMANDS are not processed in four separate loops.
2146 Instead, there is one main loop. This alows that the common code
2147 is expanded only once, thus config.status (and configure) is smaller.
2149 The registration mechnism in AC_CONFIG_FILES and cousins also changed;
2150 the AC_LIST_FILES and cousins macros are no longer used.
2152 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS,
2153 _AC_OUTPUT_LINKS, _AC_OUTPUT_COMMANDS): Renamed to ...
2154 (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER, _AC_OUTPUT_LINK,
2155 _AC_OUTPUT_COMMAND): ..., respectively. These macros no longer
2156 contain the initialization, nor the for loop, nor the associated
2157 commands; all these go to ...
2158 (_AC_OUTPUT_MAIN_LOOP): ... this new macro, called from
2159 _AC_OUTPUT_CONFIG_STATUS.
2160 (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST, _AC_CONFIG_SPLIT_FILE_IN):
2161 Nuked; the code was merged into _AC_OUTPUT_MAIN_LOOP.
2162 (_AC_OUTPUT_FILE): The creation of the sed script ...
2163 (AC_OUTPUT): ... and the setup of ac_vpsub goes to ...
2164 (_AC_OUTPUT_FILES_PREPARE): ... a new macro, also called from
2165 _AC_OUTPUT_MAIN_LOOP.
2166 (_AC_CONFIG_FILES, _AC_CONFIG_HEADERS, _AC_CONFIG_LINKS,
2167 _AC_CONFIG_COMMANDS): Use ...
2168 (_AC_CONFIG_FOOS): ... this new macro, which uses these ...
2169 (_AC_CONFIG_REGISTER, _AC_CONFIG_REGISTER_DEST): ... new macros.
2170 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER, _AC_CONFIG_LINK,
2171 _AC_CONFIG_COMMAND, _AC_CONFIG_DEPENDENCIES): No longer needed.
2172 (_AC_CONFIG_DEPENDENCY): Update, it uses these ...
2173 (_AC_CONFIG_DEPENDENCY_DEFAULT, _AC_FILE_DEPENDENCY_TRACE_COLON):
2175 (_AC_CONFIG_UNIQUE): Update.
2176 (AC_LIST_FILES, AC_LIST_HEADERS, AC_LIST_LINKS, AC_LIST_COMMANDS):
2177 Replaced by this ...
2178 (_AC_LIST_TAGS): ... new common macro.
2179 (AC_LIST_FILE_COMMANDS, AC_LIST_HEADER_COMMANDS, AC_LIST_LINK_COMMANDS,
2180 AC_LIST_COMMAND_COMMANDS): Replaced by this ...
2181 (_AC_LIST_TAG_COMMANDS): ... new common macro.
2182 (_AC_CONFIG_COMMANDS_INIT): Moved top to the `registration' section;
2183 this didn't belong to the `config commands' section.
2184 (_AC_OUTPUT_COMMANDS_INIT): Don't initialize, m4_ifdef is our friend.
2185 (AC_CONFIG_COMMANDS_PRE, AC_OUTPUT_COMMANDS_PRE,
2186 AC_CONFIG_COMMANDS_POST): Moved to a new section, these didn't belong
2187 to the `config commands' section either.
2188 (AC_CONFIG_SUBDIRS): Don't touch diversion DEFAULTS.
2189 (_AC_LIST_SUBDIRS): Don't initialize, m4_ifdef is our friend.
2191 ... and many changes to the comments nearby.
2193 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): At the end of the day,
2194 set ac_subdirs_all='_AC_LIST_SUBDIRS'.
2195 * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
2196 AC_CONFIG_COMMANDS(command:input,...) is no longer allowed.
2197 (#define header templates): The comment at the top of the generated
2198 header now includes the name(s) of the source file(s).
2200 Several unrelated small changes:
2202 * lib/autoconf/general.m4 (AC_CACHE_VAL): Be didactic, quote the first
2203 parameter to AC_DIAGNOSE.
2204 * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
2205 (_AC_LINK_FILES_CNT): Don't AU_DEFUN this; it causes confusing messages
2206 with autoupdate; use m4_define_default inside AU_DEFUNed AC_LINK_FILES.
2207 (AC_OUTPUT): In the compatibility code, use m4_ifvaln, to be consistent
2209 (AU::AC_OUTPUT): Don't double-quote $2 and $3, the compatibility code
2210 in AC_OUTPUT doesn't double-quote it either.
2211 * tests/tools.at (autoupdate): AU::AC_OUTPUT no longer double-quotes the
2214 2005-07-10 Stepan Kasal <kasal@ucw.cz>
2216 * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Document which
2217 versions of Portland Group compiler produce single- and double-quoted
2218 -cmdline argument. Reported by Steven G. Johnson <stevenj@fftw.org>
2219 and Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
2221 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
2223 * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
2224 This is a corrected version of yesterday's patch.
2226 2005-07-07 Stepan Kasal <kasal@ucw.cz>
2228 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
2229 path, too; insert a "===" to emphasize the line.
2231 * lib/autoconf/general.m4 (AC_CANONICAL_BUILD): Rename
2232 ac_cv_build_alias to ac_build_alias.
2233 (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Simplify.
2235 On 2005-02-24, an unintentional AC_SUBST([CC]) was introduced; this
2236 change eliminates it. Problem reported by Alexandre Duret-Lutz.
2237 * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Move the AC_SUBST ...
2238 (AC_ARG_VAR): ... here.
2239 (_AC_INIT_PREPARE): Call AC_SUBST for build_alias, host_alias and
2242 Keep a list of all precious variables and process them with one simple
2243 for loop, instead of expanding all commands, or, OTOH, complicated
2244 processing of output of "set".
2245 * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Acumulate the
2246 variable names in new macro...
2247 (_AC_PRECIOUS_VARS): ... which will be assigned to ac_precious_vars.
2248 (_AC_ARG_VAR_STORE): New macro which writes to diversion PARSE_ARGS
2249 a loop to assign all ac_env_* and ac_cv_env_* variables.
2250 (_AC_ARG_VAR_VALIDATE): Use shell variable ac_precious_vars, divert
2252 (_AC_INIT_DEFAULTS): At the end, if _AC_PRECIOUS_VARS is set, assign
2253 its value to shell variable ac_precious_vars and call
2254 _AC_ARG_VAR_STORE and _AC_ARG_VAR_VALIDATE.
2255 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't call
2256 _AC_ARG_VAR_VALIDATE.
2258 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Move AC_LANG_PUSH(C)
2259 and the AC_SUBSTs ...
2260 (AC_INIT): ... here.
2262 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Changed the title of
2263 the ac_subst_files section in config.log.
2265 * tests/local.at (AT_CONFIG_CMP): Revert Paul's previous change.
2267 2005-07-06 Paul Eggert <eggert@cs.ucla.edu>
2269 * NEWS: New macro AC_C_TYPEOF.
2270 * doc/autoconf.texi (C Compiler): Document AC_C_TYPEOF.
2271 * lib/autoconf/c.m4 (AC_C_TYPEOF): New macro.
2272 * tests/c.at (C keywords): Test AC_C_TYPEOF.
2274 Fix problems reported by Nicolas Joly.
2275 * tests/base.at (Input/Output): Ignore 'loading site script' chatter.
2276 * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
2277 They are generated by the Tru64 v5.1B shell.
2279 2005-07-05 Stepan Kasal <kasal@ucw.cz>
2281 Fix my changes from 2005-07-01; reported by Noah Misch.
2282 * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES): Fix the
2283 description, the macro now accepts only a single tag.
2284 (_AC_CONFIG_UNIQUE): Likewise; s/AC_File/[$1]/
2286 Fix cases when the varsions of Autoconf and Autotest don't match.
2287 Reported by Noah Misch.
2288 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Set also
2289 at_top_builddir, for compatibility with older autotest.
2290 * lib/autotest/general.m4 (AT_INIT): If at_top_build_prefix
2291 is not set, use at_top_builddir, for compatibility with older
2292 versions of autoconf.
2294 2005-07-04 Paul Eggert <eggert@cs.ucla.edu>
2296 * bin/autom4te.in ($m4): Catch usages like --nesting-limit=2048.
2297 Problem reported by Patrick Welche.
2299 2005-07-03 Paul Eggert <eggert@cs.ucla.edu>
2301 * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use &, not |, in
2302 sed substitution command, so that we allow | in program prefixes
2303 and program suffixes. (& is a problem anyway; we're not fixing
2305 * lib/autoconf/status.m4 (AC_CONFIG_FILES): Likewise, for
2306 configure_input, top_builddir, srcdir, etc.
2307 * lib/autotest/general.m4 (AT_INIT): Likewise, for
2308 PATH_SEPARATOR in AUTOTEST_PATH.
2310 2005-07-02 Alexandre Duret-Lutz <adl@gnu.org>
2312 * lib/autoconf/general.m4 (AC_SITE_LOAD): Rewrite the
2313 for loop over config.site files using `set', to allow
2314 directory names containing IFS characters.
2316 2005-07-01 Paul Eggert <eggert@cs.ucla.edu>
2318 * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Remove the tests for
2319 directories with weird names. Apparently some people like living
2320 on the edge. However, improve the test that "pwd" actually does
2321 report a name for the working directory.
2322 * NEWS: Remove the claim that we test for funny chars in dir names.
2324 2005-07-01 Stepan Kasal <kasal@ucw.cz>
2326 * lib/autoconf/general.m4 (AC_FOREACH): Make obsolete; it's
2328 * lib/m4sugar/m4sugar.m4 (m4_foreach_w): ... by this new macro.
2329 * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES, _AC_CONFIG_UNIQUE):
2330 Now accept a single tag, not whitespace separated list.
2331 (AC_CONFIG_SUBDIRS): Call _AC_CONFIG_UNIQUE in a m4_foreach_w loop.
2333 2005-06-30 Stepan Kasal <kasal@ucw.cz>
2335 * doc/autoconf.texi (Configuration Headers): Change the explanation
2336 about #include <config.h>.
2337 (Generic Functions): Mention the Gnulib project.
2338 (Limitations of Usual Tools) <sed>: Another minor rephrasing.
2340 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use a here
2341 document to output the default config_* lists to config.status.
2342 Don't recognize option --file, if the functionality is not there.
2343 Likewise for --header; moreover, recognize --he and --h as shortcuts
2344 for --help in that case.
2346 * lib/autoconf/status.m4: Fix the order of the "sections", so that it
2347 matches the order of execution. No code changed.
2349 2005-06-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2351 * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Fix also for
2352 single-quoted -cmdline argument in Portland Group compiler.
2353 Reported against LAM by Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
2355 2005-06-30 Alexandre Duret-Lutz <adl@gnu.org>
2357 * lib/autom4te.in (Automake-preselections): Preselect AC_SUBST_TRACE.
2359 2005-06-29 Stepan Kasal <kasal@ucw.cz>
2361 * doc/autoconf.texi (File Descriptors): ksh doesn't pass open file
2362 descriptors to child processes; reported by Norman Gray.
2364 2005-06-29 Stepan Kasal <kasal@ucw.cz>
2366 * lib/autoconf/general.m4 (AC_ARG_VAR): Move next to _AC_ARG_PRECIOUS.
2368 * lib/autoconf/general.m4 (AC_SUBST_TRACE): New macro, to be traced
2369 instead of AC_SUBST; proposed by Alexandre Duret-Lutz.
2370 (AC_SUBST): Call it.
2371 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Call AC_SUBST_TRACE for
2372 the directory specific variables; but don't call it for configure_input.
2374 2005-06-28 Derek Price <derek@ximbiot.com>
2376 * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Reword recent
2379 2005-06-23 Paul Eggert <eggert@cs.ucla.edu>
2381 * NEWS: Don't worry about spaces in bindir etc. Only srcdir and working
2382 directory have inherent problems with special characters like spaces,
2383 due to limitations in Make syntax. Problem reported by Alexandre
2385 * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Implement the above.
2386 Also, fix Tru64 porting problem with shell patterns,
2387 reported by Ralf Wildenhues.
2389 2005-06-23 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2391 * doc/autoconf.texi (Subdirectories): Fix markup typos.
2393 2005-06-23 Paul Eggert <eggert@cs.ucla.edu>
2395 * tests/local.at (AT_CHECK_ENV): Simplify regexp slightly.
2397 Fix some more shell quoting problems. Prompted by a bug report
2398 from Justace Clutter.
2399 * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Put name of invalid
2400 variable into diagnostic. Make the diagnostic an error, not a warning,
2401 because we really don't support spaces and suchlike in dir names.
2402 (_AC_INIT_SRCDIR): Allow special characters in $ac_unique_file.
2403 Don't worry about backslashes in srcdir; it can't happen now.
2404 (_AC_INIT_PARSE_ARGS): Allow weird characters in ac_optarg.
2405 Simplify ac_optarg handling.
2406 (_AC_ARG_VAR_VALIDATE): Remove unnecessary and inconsistent quotes.
2408 2005-06-22 Stepan Kasal <kasal@ucw.cz>
2410 Fix AT_CONFIG_CMP for Solaris hosts; idea from Ralf Menzel.
2411 * configure.ac: Call AC_PROG_EGREP and AC_PROG_SED.
2412 * tests/atlocal.in: Propagate $EGREP and $SED.
2413 * tests/local.at (AT_CHECK_ENV): Use $EGREP, not $GREP -E.
2414 (AT_CONFIG_CMP): Use sed instead of grep plumbing.
2416 * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
2417 that '\|' is not allowed in BREs; recommend using newline separated
2418 list of patterns instead of multiple -e options.
2420 * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Remove an old comment.
2422 * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Use AC_SUBST/2.
2424 2005-06-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2426 * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Fix typo.
2428 2005-06-21 Stepan Kasal <kasal@ucw.cz>
2430 * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Document that
2431 b, t, r, w commands require single space, while : cannot have any.
2432 (Special Shell Variables): Fix sed code this in the example.
2433 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Likewise; and fix a typo.
2434 * lib/autotest/general.m4 (AT_ARG_OPTION): Fix typo in the description.
2436 * lib/m4sugar/m4sugar.m4 (m4_split): If the parameter is empty,
2437 expand to the empty list. Don't use two pairs of m4_changequote,
2440 2005-06-20 Derek Price <derek@ximbiot.com>
2442 * lib/m4/programs.m4 (AC_PROG_YACC): Declare YACC & YFLAGS precious.
2444 2005-06-17 Paul Eggert <eggert@cs.ucla.edu>
2446 * lib/m4sugar/m4sh.m4 (as_awk_strverscmp): Port to Solaris /bin/awk.
2447 * doc/autoconf.texi:
2448 Don't mention Solaris versions so much, if a
2449 problem is common to all extant versions of Solaris. Say "SunOS
2450 4" instead of "SunOS" for SunOS 4.
2451 (awk): Mention more of the limitations of traditional Awk.
2452 (cat): Don't talk about cat -v.
2454 2005-06-16 Paul Eggert <eggert@cs.ucla.edu>
2456 * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE): New macro.
2457 (AS_VERSION_COMPARE): New macro. The API is taken from CVS,
2458 but the implementation is entirely different and is designed
2459 to be compatible with glibc strverscmp.
2460 * tests/m4sh.at (AS_VERSION_COMPARE): New test.
2462 * doc/autoconf.texi (Limitations of Usual Tools): Mention expr bug
2463 on Mac OS X 10.4 reported by Peter O'Gorman in:
2464 http://lists.gnu.org/archive/html/autoconf-patches/2005-06/msg00041.html
2465 * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT):
2466 Use shell builtins rather than 'expr', to work around expr bug.
2468 2005-06-10 Paul Eggert <eggert@cs.ucla.edu>
2470 * doc/autoconf.texi: "filesystem" -> "file system".
2471 "behaviour" -> "behavior".
2472 Warn about \(...\)* in Solaris sed (written by Ralf Menzel).
2473 * lib/autoconf/general.m4: Omit blank after ":" sed command,
2475 * lib/m4sugar/m4sh.m4: Likewise.
2476 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Work around problem
2477 with Solaris sed. Fix by Ralf Menzel and Stepan Kasal.
2479 * man/Makefile.am (MOSTLYCLEANFILES): Add $(srcdir)/*.t.
2480 (.x.1): Ignore the time stamp in the .TH line when deciding whether
2481 to update the man page. That way, we don't have to check in new
2482 man pages every month.
2484 * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Work even if $1 contains
2485 quotes and backslashes. Patch from Derek Price.
2487 2005-06-10 Derek Price <derek@ximbiot.com>
2489 * doc/autoconf.texi (Programming in M4sh): Document AS_TR_CPP &
2492 2005-06-08 Paul Eggert <eggert@cs.ucla.edu>
2494 * lib/autotest/general.m4 (AT_INIT): Don't accept Solaris 9's diff
2495 -u, since it outputs chatter if the input files are the same.
2496 Problem reported by Ralf Menzel.
2498 2005-06-08 Derek Price <derek@ximbiot.com>
2500 * lib/m4sugar/m4sugar.m4: Undefine include & sinclude rather than
2501 renaming them since they are about to be redefined anyhow.
2503 2005-06-08 Derek Price <derek@ximbiot.com>
2505 * doc/autoconf.texi (Redefined M4 Macros): Add index entries for most
2506 redefined M4 macros to this node. Document m4_include & m4_sinclude.
2507 Move m4_undefine to alphabetical order.
2509 2005-06-07 Paul Eggert <eggert@cs.ucla.edu>
2511 * README: Recommend GNU M4 1.4.3 or later.
2512 * doc/autoconf.texi (Introduction): Likewise.
2513 Reword to avoid some formatting glitches.
2514 Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days.
2515 Clarify explanation of HP compiler bug.
2516 Redo example output tp match current CVS snapshot.
2517 Use @example.org in email addresses when the examples
2518 might get inadvertently cut-and-pasted into user code.
2519 Remove example of autom4te usage that doesn't seem to work now.
2520 Use modern AC_INIT (except when the example is meant to be
2521 shown with Autoconf 2.13).
2522 Update ksh info for Solaris 9 and later.
2524 Modernize description of Automake versions a bit.
2525 Don't claim a future version of Autoconf is near.
2526 * doc/install.texi: Reword to avoid some formatting glitches.
2528 2005-06-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2530 * doc/autoconf.texi: Add [] to examples, so that the manual
2531 follows its own advice about quoting better.
2532 Reword to avoid some formatting glitches.
2533 * doc/installt.exi: Reword to avoid some formatting glitches.
2535 * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
2536 Tru64 ksh pattern matching bug. Reported against Libtool by
2537 Albert Chin <libtool@mlists.thewrittenword.com> and
2538 Nicolas Joly <njoly@pasteur.fr>.
2540 2005-06-06 Stepan Kasal <kasal@ucw.cz>
2542 m4_cdr of one-member list was [[]] (one-member list containing an
2543 empty string) instead of [] (an empty list. Callers were skewed to
2544 match this misbehaviour. As a consequence of this:
2545 - m4_foreach([x], [], [foo]) expanded to `foo', while
2546 - the expansion of m4_foreach([x], [[]], [foo]) was empty.
2547 This bug has been fixed:
2549 * lib/m4sugar/m4sugar.m4 (m4_cdr): If only one argument is given,
2550 expand to an empty string; print error msg if called without
2552 (m4_foreach, m4_map, m4_map_sep): Don't expect the previous
2553 misbehaviour; handle [] and [[]] correctly.
2555 2005-06-06 Stepan Kasal <kasal@ucw.cz>
2557 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Nuke ac_max_here_lines.
2558 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Simplify the sed
2559 scripts created and the loop applying them, use _AC_SED_CMD_LIMIT.
2561 2005-06-06 Ralf Menzel <menzel@ls6.cs.uni-dortmund.de> (trivial change)
2563 * doc/autoconf.texi (Limitations of Usual Tools): Solaris' awk cannot
2564 swallow records with more than 99 fields.
2565 * lib/autotest/general.m4 (AT_INIT): Use the awk builtin `split' to
2566 parse the long line.
2568 2005-06-04 Stepan Kasal <kasal@ucw.cz>
2570 * doc/autoconf.texi (Limitations of Usual Tools): AIX awk cannot
2571 swallow literals longer than 399. Reported by Ralf Wildenhues.
2572 * lib/autotest/general.m4 (AT_INIT): Pass $at_groups though stdin,
2573 to workaround this limitation.
2575 2005-06-03 Steven G. Johnson <stevenj@alum.mit.edu>
2577 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Find g95 in addition
2578 to gfortran, and make these the first two compiler names
2579 checked (following the general autoconf preference for gcc).
2581 2005-06-03 Stepan Kasal <kasal@ucw.cz>
2583 * tests/Makefile.am (check_SCRIPTS): Set to $(wrappers).
2584 (DISTCLEANFILES): Remove $(check_SCRIPTS).
2585 (testsuite): Make sure autotest.m4f is up-to-date before using it.
2587 2005-06-02 Paul Eggert <eggert@cs.ucla.edu>
2589 * lib/autotest/general.m4 (AT_INIT): Don't create a regular
2590 expression of unbounded size when processing the --list
2591 option. This runs afoul of a limit of 399 bytes per regular
2592 expression on AIX. Problem reported by Ralf Wildenhues.
2594 2005-06-01 Paul Eggert <eggert@cs.ucla.edu>
2596 * NEWS: Note yesterday's changes to AC_SUBST and AC_SUBST_FILE.
2597 * doc/autoconf.texi (Particular Headers): Reword example
2598 for multiline stdbool replacement.
2599 (Setting Output Variables): Reword text a bit. Don't
2600 give all the details about |#_!!_#|.
2601 Reword description of line replacement.
2603 2005-05-31 Dan Manthey <dan_manthey@partech.com>
2605 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Output variables may
2606 now contain newlines, and substituted files must be referenced on
2607 a line alone; the sed scripts to substitute them are now very
2609 (_AC_SED_CMD_LIMIT): Added; single place to store limit on how many
2610 commands can be put in a sed script portably.
2611 * doc/autoconf.texi (Setting Output Variables): Document above
2612 changes. (Particular Header Checks) <AC_HEADER_STDBOOL>: Give exaple
2613 use of multiline substitution.
2614 * tests/torture.at: No longer expect substitution of newline to fail.
2616 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
2618 * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
2619 From Ralf Menzel (trivial change).
2621 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
2623 * tests/local.at: Don't attempt to check for negated character
2624 classes in shell scripts. The test was too brittle.
2626 2005-05-25 Stepan Kasal <kasal@ucw.cz>
2628 * bin/autoconf.as: Don't use "shift 2"; it's not portable enough.
2629 * doc/autoconf.texi (Limitations of Builtins): Document this
2632 2005-05-24 Stepan Kasal <kasal@ucw.cz>
2634 * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): New macro to factor out
2635 common code; used in many places in the tree.
2636 (AS_ESCAPE): Make the pattern a bit simpler; use \& insetad of \1.
2637 (_AS_ECHO_UNQUOTED): Move the macro lower; no code change.
2639 * lib/m4sugar/m4sugar.m4 (m4_ifset): Use m4_ifval.
2641 * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Merge the two error
2642 messages when ac_unique_file is not found.
2643 (AC_CONFIG_MACRO_DIR): Simplify the `if' at the end.
2644 (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo
2645 commands, for consistency with AC_MSG_ERROR and such.
2647 * bin/autoconf.as: Make more use of "shift 2" in option processing.
2649 * bin/Makefile.am: Merge the two rules for creating scripts.
2651 2005-05-23 Stepan Kasal <kasal@ucw.cz>
2653 * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED): Make
2654 obsolete; it was never documented.
2655 (AC_CACHE_CHECK): Use AC_MSG_RESULT instead.
2657 2005-05-20 Stepan Kasal <kasal@ucw.cz>
2659 * NEWS: @top_builddir@ is now a dirname, ac_top_builddir will follow.
2660 * lib/autoconf/status.m4 (_AC_SRCDIRS): Rename ...
2661 (ac_top_builddir): ... this ...
2662 (ac_top_build_prefix): ... to this; the old name is also kept, for
2663 backward compatibility.
2664 (ac_top_builddir_sub): New variable, without the trailing slash,
2666 (_AC_OUTPUT_FILES): s/@top_builddir@/$ac_top_builddir_sub/
2667 * doc/autoconf.texi (Configuration Actions): Rename
2668 ac_top_builddir to ac_top_build_prefix.
2669 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Rename
2670 at_top_builddir to at_top_build_prefix.
2671 * lib/autotest/general.m4 (AT_INIT): Likewise.
2673 2005-05-20 Stepan Kasal <kasal@ucw.cz>
2675 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Simplify the init
2678 2005-05-17 Stepan Kasal <kasal@ucw.cz>
2680 * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't m4_quote the second
2681 argument to m4_foreach. I guess it was necessary in the past,
2682 but I think it's a no-op now.
2684 2005-05-17 Stepan Kasal <kasal@ucw.cz>
2686 * lib/autoconf/general.m4 (_AC_INIT_HELP): Merge two consecutive
2687 ``cat <<_ACEOF'' commands to one.
2688 (_AC_CANONICAL_SPLIT): Use expr, not ``echo|sed.''
2689 * lib/autoconf/status.m4: On various places, use expr instead of
2691 (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST):
2692 (_AC_CONFIG_SPLIT_FILE_IN): New macros, to factor out common code.
2693 * lib/autotest/general.m4 (AT_INIT): Use expr to get the numbers from
2695 * tests/local.at (AT_CHECK_SHELL_SYNTAX): Use awk to search for
2696 the wrong patterns between ``case'' and ``esac.'' The previous
2697 code had false positives.
2699 2005-05-14 Alexandre Duret-Lutz <adl@gnu.org>
2701 * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Prepend ${LIBOBJDIR},
2703 * doc/autoconf.texi (Particular Functions) <AC_FUNC_ALLOCA>:
2706 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
2708 * AUTHORS, BUGS, COPYING, ChangeLog, ChangeLog.0, ChangeLog.1,
2709 ChangeLog.2, GNUmakefile, HACKING, Makefile.am, Makefile.cfg,
2710 Makefile.maint, NEWS, README, README-alpha, TODO, configure.ac,
2711 bin/Makefile.am, bin/autoconf.as, bin/autoheader.in,
2712 bin/autom4te.in, bin/autoreconf.in, bin/autoscan.in,
2713 bin/autoupdate.in, bin/ifnames.in, config/Makefile.am,
2714 config/config.guess, config/config.sub, config/elisp-comp,
2715 config/m4.m4, config/mdate-sh, config/missing, config/texinfo.tex,
2716 doc/Makefile.am, doc/fdl.texi, lib/Makefile.am, lib/autom4te.in,
2717 lib/freeze.mk, lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
2718 lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
2719 lib/Autom4te/FileUtils.pm, lib/Autom4te/General.pm,
2720 lib/Autom4te/Request.pm, lib/Autom4te/Struct.pm,
2721 lib/Autom4te/XFile.pm, lib/autoconf/Makefile.am,
2722 lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
2723 lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
2724 lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
2725 lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
2726 lib/autoconf/general.m4, lib/autoconf/headers.m4,
2727 lib/autoconf/lang.m4, lib/autoconf/libs.m4,
2728 lib/autoconf/oldnames.m4, lib/autoconf/programs.m4,
2729 lib/autoconf/specific.m4, lib/autoconf/status.m4,
2730 lib/autoconf/types.m4, lib/autoscan/Makefile.am,
2731 lib/autoscan/autoscan.list, lib/autoscan/autoscan.pre,
2732 lib/autotest/Makefile.am, lib/autotest/autotest.m4,
2733 lib/autotest/general.m4, lib/emacs/Makefile.am,
2734 lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
2735 lib/m4sugar/Makefile.am, lib/m4sugar/m4sh.m4,
2736 lib/m4sugar/m4sugar.m4, man/Makefile.am, tests/Makefile.am,
2737 tests/atlocal.in, tests/autotest.at, tests/base.at, tests/c.at,
2738 tests/compile.at, tests/foreign.at, tests/fortran.at,
2739 tests/local.at, tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
2740 tests/semantics.at, tests/suite.at, tests/tools.at,
2741 tests/torture.at, tests/wrapper.as:
2742 Update FSF postal mail address.
2744 2005-05-13 Stepan Kasal <kasal@ucw.cz>
2746 * lib/autoconf/general.m4 (AC_CONFIG_LIBOBJ_DIR): Remove the broken
2748 * lib/m4sugar/m4sugar.m4 (m4_bmatch): Halt with error if we don't get
2749 enough arguments, similarly as in m4_bpatsubsts.
2751 2005-05-12 Stepan Kasal <kasal@ucw.cz>
2753 * lib/autoconf/status.m4 (_AC_SRCDIRS): Simplify the computation
2756 2005-05-11 Stepan Kasal <kasal@ucw.cz>
2758 * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Make the check
2759 for absolute directory names in one loop.
2760 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle
2761 abbreviations of --version and --debug.
2763 2005-05-10 Paul Eggert <eggert@cs.ucla.edu>
2765 * doc/autoconf.texi (Autoconf Language): Be more precise about
2766 quoting rules. Problems noted by Stepan Kasal.
2767 Also, throughout this document, be more careful about white space.
2768 "blank", "white space", and "space" all have different meanings
2769 and we should be careful to say what we mean.
2771 2005-05-05 Paul Eggert <eggert@cs.ucla.edu>
2773 Fix C++ related problems reported by Werner Lemberg.
2774 * doc/autoconf.texi (C++ Compiler): Mention .cpp extension.
2775 * lib/autoconf/c.m4 (AC_LANG(C++)): Set ac_ext to .cpp, not .cc.
2776 * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Simplify test, to
2777 avoid problems with C++ and throw.
2778 * tests/compile.at: .cpp, not .cc.
2780 * tests/semantics.at: Prepend LIBOBJDIR, as per 2005-05-02 change.
2782 2005-05-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2784 * doc/autoconf.texi (Generic Functions): Typos.
2786 2005-05-02 Gary V. Vaughan <gary@gnu.org>
2788 * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Prepend each
2789 object named in LIBOBJS and LTLIBOBJS with the ${LIBOBJDIR}, as
2790 set by latest automake.
2792 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
2794 * doc/autoconf.texi (Limitations of Usual Tools): "expr '' \| ''"
2795 outputs 0 on GNU/Linux these days.
2797 2005-04-29 Paul Eggert <eggert@cs.ucla.edu>
2799 * doc/autoconf.texi (Autoconf Language): Add more description
2800 about quoting heuristics.
2801 (Limitations of Builtins): Describe "set -" problems.
2803 2005-04-29 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2805 * lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
2808 * doc/autoconf.texi (External Software): Replace AC_DEFINE_UNQUOTED
2809 by AC_DEFINE; it was a mistake.
2810 From bug reported against libtool by Dalibor Topic <robilad@kaffe.org>.
2812 2005-04-25 Stepan Kasal <kasal@ucw.cz>
2814 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): A tiny optimization.
2816 2005-04-22 Stepan Kasal <kasal@ucw.cz>
2818 * doc/autoconf.texi (External Software): Quadrigraphs are not
2819 processed correctly in AS_HELP_STRING; avoid this in the examples.
2820 * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Add a FIXME about quadrigraphs.
2821 * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Likewise; and rephrase the
2822 comment and reduce m4_default([foo], []) to [foo].
2823 (m4_strip): Update the explanation.
2825 2005-04-19 Paul Eggert <eggert@cs.ucla.edu>
2827 * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
2828 Remove core.conftest.* too; it's generated by Tru64 5.1.
2829 Problem reported by Jennis Pruett.
2830 * lib/autoconf/functions.m4
2831 (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
2832 Don't bother to remove core files; AC_RUN_IFELSE should do that
2835 2005-04-19 Stepan Kasal <kasal@ucw.cz>
2837 * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Add the b- to comment, too.
2839 2005-04-19 Alexandre Duret-Lutz <adl@gnu.org>
2841 * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle --docdir.
2842 Report from Horst Wente.
2844 2005-04-15 Stepan Kasal <kasal@ucw.cz>
2846 * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Fixed a typo in
2849 2005-04-14 Gregorio Guidi <greg_g@gentoo.org>
2851 * doc/autoconf.texi (External Software, Package Options): Add
2852 examples showing how to implement --with-* and --enable-* options.
2854 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
2856 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
2857 as well as configure.in. Problem reported by Gregorio Guidi.
2859 2005-04-10 Paul Eggert <eggert@cs.ucla.edu>
2861 * doc/autoconf.texi (Particular Functions): Use gnulib's current
2862 pattern for alloca snippet.
2864 2005-04-04 Stepan Kasal <kasal@ucw.cz>
2866 * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix a typo.
2868 2005-04-01 Stepan Kasal <kasal@ucw.cz>
2870 * doc/autoconf.texi (Generic Programs): Fix a typo.
2872 2005-04-01 Paul Eggert <eggert@cs.ucla.edu>
2874 * lib/autotest/general.m4 (AT_INIT): Don't assume that "date +%s"
2875 fails if %s isn't supported. Problem reported by Ralf Wildenhues.
2877 2005-03-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2879 * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS):
2880 Merge `-z option' as well for the benefit of Solaris link flags. Pass
2881 whole-archive (-zallextract, -zdefaultextract) options in the hope of
2882 unique libraries, for the Sun Fortran 95 8.0 compiler. Bug reported
2883 against Libtool by Yury Puhalsky <pooh@cryptopro.ru>.
2885 2005-03-22 Paul Eggert <eggert@cs.ucla.edu>
2887 * NEWS: The configure command now warns you if you attempt to use
2888 a directory whose name contains a special character like space,
2890 * doc/autoconf.texi (Installation Directory Variables): Allow
2891 "," in file names. Do not use \@; it's not a portable regexp.
2892 * bin/Makefile.am (edit): Likewise.
2893 * lib/Makefile.am (edit): Likewise.
2894 * tests/Makefile.am (edit): Likewise.
2895 * tests/semantics.at: Likewise.
2896 * tests/torture.at: Likewise.
2897 * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Likewise.
2898 * lib/autoconf/status.m4 (_AC_SRCDIRS): Likewise.
2899 * doc/autoconf.texi (File System Conventions): Warn about
2900 unportable file names.
2901 * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): New macro.
2903 (_AC_INIT_SRCDIR): Use ac_pwd rather than invoking pwd.
2904 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Propagate
2905 ac_pwd, and quote srcdir.
2906 * lib/autotest/general.m4 (AT_INIT): Quote file name args.
2908 * doc/autoconf.texi: Fix some systematic formatting problems.
2909 ".)" needs a following @: if not at the end of a sentence, and
2910 similarly for "!)". "etc." should be preceded by a comma.
2911 "n-th" -> "@var{n}th". pdksh is still buggy, so update its date.
2913 2005-03-22 Bruno Haible <bruno@clisp.org>
2915 * doc/autoconf.texi (Input): Mention that AC_CONFIG_AUX_DIR's
2916 argument is often called 'build-aux'.
2918 2005-03-07 Stepan Kasal <kasal@ucw.cz>
2920 * doc/autoconf.texi (Quotation Rule Of Thumb): Mention that the
2921 macro AC_TRY_LINK is obsolete.
2922 (Installation Directory Variables): Change `AC_OUTPUT_FILES' to
2925 2005-02-24 Stepan Kasal <kasal@ucw.cz>
2927 * lib/autoconf/c.m4 (AC_PROG_CC): Be more careful to skip
2928 `/usr/ucb/cc'; use `cl.exe' to distinguish the MS compiler
2929 from a Common Lisp's `cl'.
2930 (AC_PROG_CXX): Behave according to the documentation: don't
2931 search for $ac_tool_prefix$CCC and $CCC, just set CXX=$CCC;
2932 make the variable CCC precious; use `cl.exe', not `cl'.
2934 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
2935 Alexandre Duret-Lutz <adl@gnu.org>
2937 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin from
2938 /dev/null, as "configure" shouldn't read stdin, and this insulates
2939 us from problems (e.g., when testing for "cl"). Also, do this
2940 redirection before invoking "hostname" or "uname", and keep the
2941 original input stream available via...
2942 (AS_ORIGINAL_STDIN_FD): ... this new macro.
2943 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't
2944 bother with "</dev/null" since it's now done at the top of
2946 * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Likewise.
2947 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2948 * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
2949 * doc/autoconf.texi (File Descriptor Macros): New section.
2950 (Printing Messages): Mention it.
2951 * tests/base.at (Input/Output): New test.
2953 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
2955 * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Don't set ECHO_C to
2956 newline if neither \c nor -n work, as that would output two
2957 newlines. Prefer -n to \c. Reported by Stepan Kasal.
2959 2005-02-12 Stepan Kasal <kasal@ucw.cz>
2961 * lib/m4sugar/m4sh.m4 (AS_IF): Define by m4_defun, not m4_define.
2962 This causes that any required macros inside will get before the if.
2963 * doc/autoconf.texi (autom4te.cache): A typo.
2965 2005-02-12 Paul Eggert <eggert@cs.ucla.edu>
2967 Undo previous change, except keep the change to
2968 lib/autoconf/programs.m4 that replaced grep with shell
2969 pattern-matching. This is because net-snmp configure reads stdin.
2970 Reported by Noah Misch.
2972 2005-02-11 Paul Eggert <eggert@cs.ucla.edu>
2974 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin
2975 from /dev/null, as "configure" shouldn't read stdin, and this
2976 insulates us from problems (e.g., when testing for "cl").
2977 Suggested by Alexandre Duret-Lutz. Also, do this redirection
2978 before invoking "hostname" or "uname".
2979 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
2980 _AC_LINK_IFELSE): Undo previous change, as it's no longer needed.
2981 * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Don't bother with
2982 "</dev/null" since it's now done at the top of 'configure'.
2983 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2984 * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
2985 Also, replace grep with shell pattern-matching, to save a process.
2987 2005-02-10 Paul Eggert <eggert@cs.ucla.edu>
2989 * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
2990 _AC_LINK_IFELSE): Redirect stdin to /dev/null, in an attempt to
2991 avoid thinking that Allegro Common Lisp's "cl" command is a C++
2994 2005-02-09 Paul Eggert <eggert@cs.ucla.edu>
2996 * doc/autoconf.texi (Limitations of Usual Tools): Document that
2997 grep -q isn't portable. Improve grep -s explanation.
2998 Problem reported by Dan Manthey.
3000 2005-02-08 Paul Eggert <eggert@cs.ucla.edu>
3002 * doc/autoconf.texi (Special Shell Variables): Clarify
3003 PATH_SEPARATOR wording; fix typo in IFS. Reported by Gary V. Vaughan.
3005 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
3007 * doc/autoconf.texi: Use @acronym for DJGPP.
3008 Fix some @code's that should have been @env's, and vice versa.
3009 Sort environment variable names.
3010 Mention that shells no longer inherit IFS.
3011 Don't recommend PATH_SEPARATOR=';' so strongly.
3012 Mention that $RANDOM might expand to the empty string.
3013 "symlink" and "soft link" -> "symbolic link".
3014 Improve mktemp description (reported by Bruno Haible).
3016 2005-02-05 Paul Eggert <eggert@cs.ucla.edu>
3018 * tests/foreign.at (Libtool): Don't overquote AT_SETUP arg.
3019 * tests/m4sh.at (AS_DIRNAME, AS_BASENAME, AS_MKDIR_P, AS_HELP_STRING):
3021 * tests/semantics.at (AC_C_BIGENDIAN, AC_PATH_PROG & AC_PATH_PROGS):
3024 2005-02-04 Paul Eggert <eggert@cs.ucla.edu>
3026 * NEWS: Mention AT_COPYRIGHT.
3028 * tests/local.at (AT_CMP): Use diff directly on input files rather
3031 * lib/autoconf/programs.m4 (AC_PROG_SED): Don't look in
3032 /usr/xpg4/bin since that sed dumps core (at least on Solaris 8).
3034 2005-02-04 Noah Misch <noah@cs.caltech.edu>
3035 and Paul Eggert <eggert@cs.ucla.edu>
3037 * tests/autotest.at (Empty test suite): New test.
3038 * tests/torture.at (Substitute and define special characters)
3039 (Substitute a 2000-byte string, Define to a 2000-byte string)
3040 (Substitute a newline, Define a newline): New tests.
3042 2005-02-04 Noah Misch <noah@cs.caltech.edu>
3044 * lib/m4sugar/m4sugar.m4 (m4_re_string, m4_re_word): Revert 2002-03-04.
3045 * tests/local.at (AT_CHECK_M4SUGAR): Add `m4sugar' to keywords.
3046 (AT_CHECK_ENV): Ignore LTLIBOBJS, FC variables, EGREP, FGREP, and SED.
3047 * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, AT_CHECK_M4RE): New macros.
3048 (Standard regular expressions): New test.
3049 (m4_warn, m4_require: circular dependencies, m4_text_wrap): Strip
3050 excess test name quoting.
3051 * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADERS_NEW): Pass
3052 CPPFLAGS to `configure' instead of setting it in `configure'.
3054 * lib/m4sugar/m4sh.m4 (AS_UNAME): Try only /usr/bin/hostinfo, not
3055 any `hostinfo' in $PATH, since hostinfo.exe is a popular file name
3058 * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_FC_SRCEXT):
3059 s/FC_SRCEXT/ac_fc_srcext/; s/FCFLAGS_SRCEXT/ac_fcflags_srcext/.
3061 * tests/local.at (AT_CMP): New macro.
3062 (AT_DATA_AUTOCONF): Do not call AC_PROG_GREP.
3063 (AC_SAVE_STATE): Move environment grep...
3064 (AT_CHECK_ENV): to here. Filter out `'$''. Use AT_CMP.
3065 (AT_CONFIG_CMP): New macro.
3066 (AT_CHECK_MACRO): Run `configure' twice with cache and compare results.
3067 * tests/c.at (Extensions): Do not exit early.
3068 * tests/atlocal.in: Inherit $GREP.
3070 * lib/autoconf/c.m4 (_AC_C_STD_TRY): New macro.
3071 (_AC_PROG_CC_C89, _AC_PROG_CC_C99): Use it.
3073 * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Update for 2005.
3074 (AC_COPYRIGHT): Factor header comment portion out and move into...
3075 * lib/m4sugar/m4sh.m4 (AS_COPYRIGHT): This.
3076 * lib/autotest/general.at (AT_COPYRIGHT): New macro.
3077 (AT_INIT): Add Autotest copyright notice. Display copyright notices in
3079 * tests/local.at: Add Autoconf test suite copyright notice.
3080 * doc/autoconf.texi (Writing testsuite.at): Document AT_COPYRIGHT.
3082 2005-02-04 Bruno Haible <bruno@clisp.org>
3083 and Paul Eggert <eggert@cs.ucla.edu>
3085 * doc/autoconf.texi (Limitations of Usual Tools): New mkstemp entry.
3087 2005-02-03 Paul Eggert <eggert@cs.ucla.edu>
3089 * lib/m4sugar/m4sugar.m4 (m4_re_escape): Escape ?, ^, \, $ too;
3090 this fixes a bug tickled by the AT_CAPTURE_FILE change noted below.
3092 Try not to generated lines of unlimited length, as POSIX places a
3093 2047-byte limit on line length of portable text files.
3094 * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILE):
3095 Use newline as a separator, not space.
3096 * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Likewise.
3097 (AT_CAPTURE_FILE): Use space-backslash-newline as a separator, not
3100 2005-02-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3102 * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Move func_* to
3103 as_func_*. Add test to check whether positional parameters
3104 are restored after function return.
3106 2005-02-02 Paul Eggert <eggert@cs.ucla.edu>
3108 * doc/autoconf.texi (Special Shell Variables): Mention _,
3109 BIN_SH, DUALCASE. Say that variables other than "status" are safe
3110 if they contain a lower-case letter. The DUALCASE problem was
3111 reported by Ralf Wildenhues.
3113 * bin/autoconf.as: Don't exit with status 0 after write failure
3114 with --help or --version.
3115 * lib/autoconf/general.m4 (_AC_INIT_HELP, _AC_INIT_VERSION): Likewise.
3116 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
3118 2005-02-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3120 * doc/autoconf.texi (Limitations of Usual Tools):
3121 Unicos 9 sed limitations.
3122 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Try cf77 before fort77
3123 to get the option-enhanced interface on older Crays. Try ftn for
3124 Fortran 95 (newer Crays).
3126 2005-02-01 Paul Eggert <eggert@cs.ucla.edu>
3128 * man/Makefile.am (.x.1): Go back to the simple solution, but take
3129 care to echo the commands, so the user knows what's going on.
3130 Modified from a suggestion by Stepan Kasal.
3132 * doc/autoconf.texi (autoreconf Invocation): Mention autopoint,
3133 with a cross reference. Derived from a suggestion by Bruce Korb.
3135 2005-01-31 Paul Eggert <eggert@cs.ucla.edu>
3137 * doc/autoconf.texi (config.status Invocation): Warn about
3138 discrepancy between CONFIG_SHELL and shell used to invoke 'configure'.
3139 * doc/install.texi (Defining Variables): Likewise.
3140 Based on a proposed patch by Ralf Wildenhues.
3142 * man/Makefile.am (.x.1): Make sure the required generated files
3143 are up to date. Problem and original solution proposed by Stepan Kasal.
3144 $(dist_man_MANS:.1=-bin-prereq), $(dist_man_MANS:.1=-tests-prereq),
3145 implicit-man-prerequisites): New rules, used by the above.
3147 * doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
3148 * config/config.guess, config/config.sub, config/install-sh: Likewise.
3149 * config/missing, config/texinfo.tex: Likewise.
3151 2005-01-29 Stepan Kasal <kasal@ucw.cz>
3153 Simplify the implementation of m4_require (a.k.a. AC_REQUIRE).
3154 Update the long comment explaining it.
3156 m4_require no longer writes an ``is required by'' line to the
3157 execution stack. It contains only one bit of non-redundant
3158 information: that the macro was required, not called. And even
3159 this bit is useless in most situations: have you ever met a macro
3160 which both calls and requires the same macro?
3162 * lib/m4sugar/m4sugar.m4 (_m4_defun_pro): Don't push a diversion...
3163 (_m4_defun_pro_outer): ... only via this macro, for the outermost
3165 (_m4_defun_epi, _m4_defun_epi_outer): Complementarily.
3166 (m4_expansion_stack_pop): Remove the misplaced comment.
3167 (m4_require): Don't put the ``is required by'' line to the
3168 execution stack; slightly improve the out-of-a-defun error message.
3169 (_m4_divert_grow): New macro, counter for the temporary diversions.
3170 (_m4_require_call): Use it.
3171 * tests/m4sugar.at (m4_require): Expect output without the
3172 ``is required by'' messages.
3174 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
3176 * doc/autoconf.texi (Limitations of Usual Tools): Recommend X
3177 rather than x for expr.
3179 * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT): Avoid subshells when
3181 * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): Likewise.
3182 * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
3183 * lib/autotest/general.m4 (AT_INIT): Likewise.
3184 * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Likewise.
3185 * tests/mktests.sh: Likewise.
3187 2005-01-27 Akim Demaille <akim@epita.fr>
3189 Have autoheader honor --force.
3191 * doc/make-stds.texi, doc/standards.texi: Update from masters.
3192 * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm
3193 * lib/Autom4te/FileUtils.pm, lib/Autom4te/XFile.pm: Update
3194 from masters, so that FileUtils.pm's update_file provide --force
3196 * bin/autoheader.in: Pass $force to update_file so that
3197 config.h.in is always recreated when --force.
3199 2005-01-24 Stepan Kasal <kasal@ucw.cz>
3201 * doc/autoconf.texi (Introduction): Update Peter Simons' address.
3203 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
3205 * doc/autoconf.texi (Limitations of Builtins): Clarify that
3206 "if test ! -d foo; ..." is portable. Suggested by Stepan Kasal.
3208 2005-01-20 Paul Eggert <eggert@cs.ucla.edu>
3210 * doc/autoconf.texi (Shell Substitutions): Fix typo in case statement.
3211 Warn about newline stripping in `` and $(). Update Solaris
3213 (Limitations of Builtins): Use expr "X...", not expr "x...", as
3214 X insulates us from future changes to Posix.
3215 (Limitations of Usual Tools): For AS_DIRNAME, warn about newline
3218 2005-01-19 Stepan Kasal <kasal@ucw.cz>
3220 * doc/autoconf.texi (Defining Symbols): Delete the false comment that
3221 you cannot use AC_DEFINE to define macros containing `[' or `]'.
3223 2005-01-13 Paul Eggert <eggert@cs.ucla.edu>
3225 * doc/autoconf.texi (Limitations of Usual Tools): Document bug
3226 in Solaris 8 join. Problem reported by Tomohiro Suzuki on
3227 bug-tar mailing list.
3229 2005-01-05 Stepan Kasal <kasal@ucw.cz>
3231 * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
3233 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
3235 * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
3236 ulongval to be static, to avoid unwanted GCC warning. Problem
3237 reported by Michael Jennings via Daniel Reed; see
3238 <https://bugzilla.redhat.com/beta/show_bug.cgi?id=143852>.
3240 2005-01-05 Alexandre Duret-Lutz <adl@gnu.org>
3242 * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Define datarootdir,
3243 docdir, htmldir, dvidir, pdfdir, psdir, and localdir. Update
3244 datadir, infodir, and mandir. Adjust argument parsing code.
3245 (_AC_INIT_HELP): Update help text.
3246 * doc/autoconf.texi (Installation Directory Variables): Document
3249 2005-01-04 Noah Misch <noah@cs.caltech.edu>
3251 * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): If the Make program does
3252 not seem to work, assume it does set $(MAKE).
3253 * doc/autoconf.texi (AC_PROG_MAKE_SET): Update.
3255 2005-01-03 Stepan Kasal <kasal@ucw.cz>
3257 * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Add a comment about nesting.
3259 2005-01-03 Stepan Kasal <kasal@ucw.cz>
3261 A cleanup of the diversion support in m4sugar.
3263 * lib/m4sugar/m4sugar.m4 (_m4_divert): A typo in description.
3264 (_m4_divert_n_stack): New macro; the expansion is
3265 <newline>m4_divert_stack, if m4_divert_stack is defined, and void
3267 (m4_divert, m4_divert_push, m4_divert_pop, m4_init): Use it.
3268 (m4_divert_push, m4_divert_pop, _m4_defun_epi): Don't expand the word
3269 stored in _m4_divert_diversion or _m4_divert_dump.
3270 (m4_divert_pop): When the parameter is given, compare the symbolic
3271 name with the last diversion pushed on the stack. Previously, the
3272 current diversion was compared with the numeric value of the
3273 diversion given as the parameter.
3274 (m4_require): If the macro hasn't been expanded yet, call ...
3275 (_m4_require_call): this new macro.
3277 2005-01-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3279 * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_ARG_VAR_VALIDATE):
3280 Workarounds for documented `case' limitations.
3282 2005-01-03 Paul Eggert <eggert@cs.ucla.edu>
3284 * doc/autoconf.texi (Limitations of Usual Tools): Warn about
3285 sed 'command1;command2'. Problem reported by Ralf Wildenhues.
3287 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
3289 * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
3290 bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
3291 bin/ifnames.in, tests/mktests.sh: Update copyright date to 2005.
3293 Patch from Roger Leigh (with some minor changes) as follows:
3294 * NEWS: New macros AC_PROG_CC_C89, AC_PROG_CC_C99.
3295 Resurrect AC_PROG_CC_STDC.
3296 * doc/autoconf.texi (C Compiler): Add AC_PROG_CC_STDC,
3297 AC_PROG_CC_C89, AC_PROG_CC_C99.
3298 (Obsolete Macros): Remove AC_PROG_CC_STDC; it's no longer obsolete.
3299 * lib/autoconf/c.m4 (_AC_PROG_CC_C89, _AC_PROG_CC_C99, AC_PROG_CC_C89,
3300 AC_PROG_CC_C99): New macros.
3301 (AC_PROG_CC_STDC): Use them.
3302 (_AC_PROG_CC_STDC): Remove.
3303 (AC_C_PROTOTYPES): Use ac_cv_prog_cc_c89, not ac_cv_prog_cc_stdc.
3304 * THANKS: Add Roger Leigh.
3306 2004-12-30 Noah Misch <noah@cs.caltech.edu>
3308 * bin/autoreconf.in (autoreconf_current_directory): AM_INIT_AUTOMAKE
3309 signals that the package uses Automake; a `Makefile.am' is typical but
3310 not essential. Reported by Magnus Therning.
3311 * tests/torture.at (autoreconf.): New banner.
3312 (autoreconf and non-AC configure): Rename to `Non-Autoconf
3314 (autoreconf an empty directory): Rename to `Empty directory'.
3315 (Unusual Automake input files): New test.
3317 2004-12-30 Noah Misch <noah@cs.caltech.edu>
3319 * lib/autotest/general.m4 (AT_CAPTURE_FILE): New macro.
3320 (AT_SETUP): Clear AT_capture_files.
3321 (_AT_CHECK): On failure, log each of AT_capture_files. Fix comment.
3322 (AT_KEYWORDS): Fix comment typo.
3323 * tests/autotest.at (AT_CHECK_AT): Use AT_CAPTURE_FILE.
3324 * tests/local.at (AT_CHECK_CONFIGURE): Use AT_CAPTURE_FILE.
3325 * doc/autoconf.texi (Writing testsuite.at): Document AT_CAPTURE_FILE.
3327 2004-12-29 Albert Chin-A-Young <china@thewrittenword.com>
3329 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
3330 If the variable to set is already set, set ac_cv_path_$1
3331 to the preset value so caller can assume ac_cv_path_$1
3332 is available. (trivial change)
3334 2004-12-27 Noah Misch <noah@cs.caltech.edu>
3336 * BUGS (Minor Problems): Warn about makefile limitations.
3337 * Makefile.am: Find and update `INSTALL' in $(srcdir).
3338 * man/Makefile.am: Find and update manual pages in $(srcdir).
3340 2004-12-24 Eric Blake <ebb9@byu.net>
3342 * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Test candidate
3343 shells in subshell, to avoid noise from ash. (trivial change)
3345 2004-12-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3347 * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
3348 problems with SunOS ksh and backslash escaping, Bourne shells and
3349 closing brackets (both within character classes). Bug reported
3350 against Libtool by Alexander Kurz <alexander.kurz@qsc.de>.
3351 <read>: New entry. Mention non-availability of -r.
3353 2004-12-21 Akim Demaille <akim@epita.fr>
3355 * lib/autotest/general.m4 (AT_LINE): Don't add srcdir here, to
3356 avoid cluttering displayed messages. Rather, prepend srcdir where
3357 AT_LINE is used for log files.
3359 2004-12-21 Stepan Kasal <kasal@ucw.cz>
3361 * lib/autoconf/status.m4: Quote ``$tmp'' in many places.
3362 * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Fix the comment, as traps are
3363 no longer part of the macro, quote the occurrence of ``$tmp''.
3364 * doc/autoconf.texi (Forbidden Patterns): Typo.
3366 2004-12-21 Akim Demaille <akim@epita.fr>
3368 * lib/autotest/general.m4 (AT_INIT): Make sure the "ok" etc. are
3369 separated from the test title by forcing a white space.
3371 2004-12-21 Akim Demaille <akim@epita.fr>
3373 Enable Emacs navigation within testsuite.log files.
3375 * lib/autotest/general.m4 (AT_CLEANUP): Add an hint for Emacs to
3376 use the compilation mode.
3377 (AT_LINE): Point to the srcdir.
3379 2004-12-19 Noah Misch <noah@cs.caltech.edu>
3381 * tests/Makefile.am (installcheck-local): Use $(bindir).
3382 (check-local, installcheck-local): Pass TESTSUITEFLAGS.
3383 * doc/autoconf.texi (Making testsuite Scripts): Recommend the same
3384 Makefile.am scheme Autoconf now uses.
3386 2004-12-18 Noah Misch <noah@cs.caltech.edu>
3388 * lib/m4sugar/m4sugar.m4 (m4_qlen, m4_qdelta): New macros.
3389 * lib/autotest/general.m4 (AT_SETUP): Use m4_qdelta.
3391 2004-12-18 Noah Misch <noah@cs.caltech.edu>
3393 * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): New macro.
3394 (_AT_CHECK): Use it.
3395 * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): Remove.
3396 (AS_ESCAPE): Fix comment.
3397 * tests/autotest.at: Adjust section banner comments.
3398 (AT_CHECK_AT): Accept STATUS and STDERR.
3399 (AT_CHECK_AT_TEST): Likewise.
3400 (Invalid brace-enclosed parameter expansion)
3401 (Multiline command from M4 expansion)
3402 (Double-M4-quoted command): New tests.
3404 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
3406 * doc/autoconf.texi: Update GNU FDL version from 1.1 to 1.2.
3408 2004-12-17 Akim Demaille <akim@epita.fr>
3410 * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILES): Pass $1 to
3412 Suggested by Alexandre Duret-Lutz.
3413 * doc/autoconf.texi (Setting Output Variables): Catch up.
3415 2004-12-17 Stepan Kasal <kasal@ucw.cz>
3417 * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix comment.
3419 2004-12-17 Stepan Kasal <kasal@ucw.cz>
3421 * lib/autoconf/general.m4 (_AC_LIBOBJ): We can use AC_SUBST/2,
3422 remove the comment which said we cannot.
3424 2004-12-17 Stepan Kasal <kasal@ucw.cz>
3426 Add a specialized check for resolv.h. Thanks to Gerrit P. Haase,
3427 Reini Urban and Paul Eggert for reporting the dependencies.
3429 * lib/autoconf/headers.m4 (AC_HEADER_RESOLV): New macro.
3430 * doc/autoconf.texi (AC_HEADER_RESOLV): Document it.
3431 (AC_HEADER_STAT): @cvindex{STAT_MACROS_BROKEN}, not @acindex.
3433 2004-12-17 Stepan Kasal <kasal@ucw.cz>
3435 * bin/autoscan.in: Open autoscan.log only after ``parse_args'';
3436 so that eg. ``autoscan --help'' doesn't truncate it.
3438 2004-12-15 Nicolas Joly <njoly@pasteur.fr>
3440 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
3441 generated conftest files.
3443 2004-12-13 Noah Misch <noah@cs.caltech.edu>
3445 * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Do not enable shell
3446 tracing on commands with possibly-escaped newlines.
3447 * doc/autoconf.texi (Writing testsuite.at): Delete documentation of the
3448 discontinued behavior and its implications.
3449 * tests/autotest.at (BS-newline in command, ^BS-newline in command)
3450 (BSx641-newline in command, BS-BS-newline in command)
3451 (BSx640-newline in command, Newline-CODE-BS-newline in command)
3452 (Single-quote-BS-newline in command)
3453 (Single-quote-newline-BS-newline in command): New tests.
3455 2004-12-13 Stepan Kasal <kasal@ucw.cz>
3457 * lib/m4sugar/m4sh.m4 (AS_EXECUTABLE_P): Use test -f && test -x
3458 on platforms where it works.
3459 (_AS_TEST_PREPARE): Test for ``test -x''.
3460 (_AS_BROKEN_TEST_PREPARE): Nuke.
3462 2004-12-13 Stepan Kasal <kasal@ucw.cz>
3464 * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Move the trap commands ...
3465 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): ... here;
3466 give only 4-letter prefix to AS_TMPDIR, comment fixed.
3467 * lib/autoconf/programs.m4 (_AC_PATH_PROG_FEATURE_CHECK): Don't
3468 create the temporary directory.
3469 (_AC_FEATURE_CHECK_LENGTH): Work in current directory.
3471 2004-12-12 Kelley Cook <kcook@gcc.gnu.org>
3473 * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found.
3476 2004-12-12 Alexandre Duret-Lutz <adl@gnu.org>
3478 * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>: Typo.
3480 2004-12-11 Noah Misch <noah@cs.caltech.edu>
3482 * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Rework a shell pattern
3483 to avoid using a negated character class. Reported by Nicolas Joly.
3484 * tests/local.at (AT_CHECK_SHELL_SYNTAX): Check for similar constructs.
3486 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
3488 * man/Makefile.am (autoconf.1, autoheader.1, autom4te.1, autoreconf.1,
3489 autoscan.1, autoupdate.1, ifnames.1, config.guess.1, config.sub.1):
3490 Don't depend on .x file explicitly, since "make" does that for us.
3491 Suggested by Stepan Kasal.
3493 * bin/Makefile.am (MOSTLYCLEANFILES): Renamed from CLEANFILES.
3495 (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate,
3496 ifnames): Factor common code. And they said it couldn't be done!
3498 2004-12-09 Paul Eggert <eggert@cs.ucla.edu>
3500 * bin/.cvsignore: Add autoconf.in.
3501 * tests/.cvsignore: Add wrapper.in.
3502 * lib/autotest/general.m4: Escape '$' in case pattern.
3504 2004-12-09 Noah Misch <noah@cs.caltech.edu>
3506 * man/Makefile.am (autoconf.1): Regenerate when `autoconf.as' changes.
3508 * lib/autotest/general.m4 [--trace] (AT_INIT): Do not `set -v'.
3510 * tests/autotest.at: New file.
3511 * tests/suite.at: Include it.
3512 * tests/Makefile.am: Distribute it.
3514 * lib/autotest/general.m4 [--trace] (_AT_CHECK): Do not enable
3515 shell tracing on a command that could contain multiple lines.
3516 * doc/autoconf.text: Document that fact and its implications.
3517 * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): New macro.
3518 * tests/autotest.at (Multiline backquote command substitution,
3519 Multiline parameter expansion, Literal multiline command,
3520 Multiline parenthetical command substitution): Remove XFAIL.
3522 2004-12-09 Paul Eggert <eggert@cs.ucla.edu>
3524 * doc/autoconf.texi (Libraries): Clarify problems with AC_CHECK_LIB
3525 and suggest AC_SEARCH_LIBS. Suggested by Noah Misch and Stepan Kasal.
3527 2004-12-08 Noah Misch <noah@cs.caltech.edu>
3529 * configure.ac (test suite): Cease to generate wrapper scripts.
3530 * configure: Regenerate.
3531 * lib/freeze.mk (MY_AUTOM4TE): Wrap the uninstalled autom4te directly.
3532 (m4f_dependencies): Adjust accordingly.
3533 * tests/Makefile.am (Wrappers): Generate wrapper scripts.
3534 (wrapper.in): Generate it in the build directory.
3535 (MAINTAINERCLEANFILES): Delete wrapper.in.
3536 (CLEANFILES): Add wrapper.in.
3537 * tests/wrapper.as: Move AS_INIT to very top, preserving copyright in
3538 the output. Replace each $as_me with a @wrap_program@.
3539 * tests/wrapper.in: Delete it; we always build it.
3541 * bin/Makefile.am (autoconf.in): Generate it in the build directory.
3542 (EXTRA_DIST): Remove autoconf.in.
3543 (CLEANFILES): Add autoconf.in.
3544 (autoconf): Find autoconf.in in the build directory.
3545 * bin/autoconf.in: Delete it; we always build it.
3547 2004-12-08 Noah Misch <noah@cs.caltech.edu>
3549 * lib/autotest/general.m4 (AT_INIT): Replace a `tr' with a `sed'. Join
3550 PATH members so as to not prepend an empty element. Move a comment.
3551 * Makefile.am (SUBDIRS): Build in `tests' last.
3552 * tests/Makefile.am (installcheck-local): Add check-local dependencies.
3554 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
3556 * lib/mdate-sh: Don't use "set - x`$ls_command /`", as zsh mishandles
3557 the spaces inside $ls_command. Problem reported by Loulou Pouchet in
3558 <http://lists.gnu.org/archive/html/autoconf/2004-12/msg00074.html>.
3559 Don't use "set - x"; plain "set x" is enough, and simplifies debugging.
3561 2004-12-07 Stepan Kasal <kasal@ucw.cz>
3563 * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Fix typo in previous
3566 2004-12-06 Paul Eggert <eggert@cs.ucla.edu>
3568 * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Check libc before
3569 looking elsewhere for getmntent. Problem reported by Mark D. Baushke.
3570 * doc/autoconf.texi (Particular Functions): Mention new behavior.
3572 2004-12-03 Stepan Kasal <kasal@ucw.cz>
3574 * lib/autoconf/general.m4 (AC_DEFINE, AC_DEFINE_UNQUOTED): Factor
3575 out the common code to ...
3576 (_AC_DEFINE_Q): ... a new macro; simplify the condition about the
3577 value of the #define--default to 1, iff the macro was called
3578 with exactly one parameter.
3580 2004-12-02 Paul Eggert <eggert@cs.ucla.edu>
3582 * lib/autoconf/functions.m4 (AC_FUNC_MEMCMP): Use
3583 "char c = '\200';" rather than "char c = 0x80;" as the
3584 latter doesn't conform to the strict C standard due to
3585 overflow on signed char hosts.
3587 * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Prefer -qlanglvl=extc89
3588 to -qlanglvl=ansi. We don't want to disable extensions.
3590 2004-11-29 Paul Eggert <eggert@cs.ucla.edu>
3592 * doc/autoconf.texi (Particular Programs): @code{$PATH} -> @env{PATH}.
3593 (Using Autotest, testsuite Scripts, Writing testsuite.at):
3594 Reword slightly to avoid some English-language problems noted
3595 by Ralf Wildenhues in:
3596 http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00027.html
3598 2004-11-29 Stepan Kasal <kasal@ucw.cz>
3600 * NEWS: Add ^L above each release.
3602 2004-11-28 Paul Eggert <eggert@cs.ucla.edu>
3604 Fix documentation problems reported by Russ Boylan in
3605 <http://lists.gnu.org/archive/html/bug-autoconf/2004-11/msg00056.html>,
3606 along with some nearby cruft.
3607 * doc/autoconf.texi (Libtool): Libtool can be used without
3608 Automake (not without Autoconf).
3609 (Introduction): Mention lists.gnu.org.
3610 * BUGS: Don't mention bugs.gnu.org.
3611 Remove mention of ancient libtool compatibility problem.
3612 * NEWS: Mention that bugs.gnu.org is kaput.
3613 * README: Likewise. Mention where mailing list archives can be found.
3615 2004-11-28 Stepan Kasal <kasal@ucw.cz>
3617 * HACKING: Refer to "coreutils", not "File, Shell or Text utils".
3618 * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): A typo in the comment.
3620 2004-11-26 Paul Eggert <eggert@cs.ucla.edu>
3622 * doc/autoconf.texi (Pretty Help Strings): Go back to
3623 single-quoting assignments to cache variables.
3625 2004-11-23 Stepan Kasal <kasal@ucw.cz>
3627 * doc/autoconf.texi (Pretty Help Strings): Fix quoting issues
3628 with the examples; fix the bug in MY_ARG_WITH example reported
3629 by Alexandre Duret-Lutz.
3630 * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_ENABLE): Enable
3631 expansion of $1 in the comment emitted to configure.
3633 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
3635 * doc/autoconf.texi (Pretty Help Strings): Fix typo
3636 in my editing of the previous patch. Problem reported
3637 by Alexandre Duret-Lutz.
3639 2004-11-22 Stepan Kasal <kasal@ucw.cz>
3641 * doc/autoconf.texi (Autoconf Language): Explain that
3642 ``descriptions'' may not be double quotes.
3643 (Quotation Rule Of Thumb): Likewise.
3644 (Pretty Help Strings): Likewise; remove the wrong comment;
3645 simplify the examples and improve their quoting.
3647 2004-11-13 Stepan Kasal <kasal@ucw.cz>
3649 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't check
3650 the $1_found variable, don't test whether the file is executable;
3651 Both things are checked ...
3652 (_AC_PATH_PROG_FEATURE_CHECK): ... here; AS_EXECUTABLE_P replaces
3653 the former ``test -f''.
3654 * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix a typo.
3656 2004-11-10 Paul Eggert <eggert@cs.ucla.edu>
3658 * doc/autoconf.texi (Limitations of Usual Tools): Avoid cp -r;
3661 2004-11-10 Derek R. Price <derek@ximbiot.com>
3663 * doc/autoconf.texi (Limitations of Usual Tools): Note `cp -r'
3664 limitations. Reorder paragraphs for clarity.
3666 2004-10-11 Paul Eggert <eggert@cs.ucla.edu>
3668 * doc/autoconf.texi: Standardize spelling of "Posix" (as opposed
3669 to "POSIX" or "@acronym{POSIX}"), and similarly for "DOS
3670 variants", "Unix", and some related minor wording fixups.
3672 (Shellology, Special Shell Variables): Document that the Zsh
3673 problem with NULLCMD was fixed in zsh 3.1.6-dev-18. Thanks
3674 to Alexandre Duret-Lutz for this info.
3676 2004-10-10 Alexandre Duret-Lutz <adl@gnu.org>
3678 * doc/autoconf.texi (One-Shot Macros): New node.
3680 2004-09-28 Paul Eggert <eggert@cs.ucla.edu>
3682 * doc/autoconf.texi (Function Portability): Fix misdescription
3683 of putenv. Problem reported by Michael Wardle.
3685 2004-09-22 Paul Eggert <eggert@cs.ucla.edu>
3687 * doc/autoconf.texi (auindex): New macro.
3688 (AU_DEFUN): Use it to fix the bug when the index contained AC_AU_DEFUN.
3689 Problem reported by Stepan Kasal.
3691 2004-09-05 Paul Eggert <eggert@cs.ucla.edu>
3693 Fix problems reported by Andreas Buening in:
3694 http://lists.gnu.org/archive/html/autoconf-patches/2004-04/msg00004.html
3695 * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Set SHELL=/bin/sh
3697 * lib/autotest/general.m4 (AT_INIT): Don't assume /dev/null is
3698 readable; it's not true in OS/2-emx.
3700 2004-09-04 Paul Eggert <eggert@cs.ucla.edu>
3702 * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): If xmkmf returns
3703 "/usr/include", clear ac_x_includes instead of leaving it as "no"
3704 (trivial change). Problem and patch reported by Andrew Church in:
3705 http://lists.gnu.org/archive/html/bug-autoconf/2004-04/msg00016.html
3707 2004-09-03 Paul Eggert <eggert@cs.ucla.edu>
3709 * doc/autoconf.texi: Give AC_DEFINE and AC_DEFINE_UNQUOTED
3710 three args in examples. Problem reported by Frederik Fouvry in:
3711 http://lists.gnu.org/archive/html/bug-autoconf/2004-09/msg00017.html
3712 Also, fix some minor spacing and punctuation bugs.
3714 2004-09-02 Akim Demaille <akim@epita.fr>
3716 * doc/autoconf.texi (Limitations of Builtins): Swap "cd" and
3717 "case" to restore ordering.
3718 Reported by Stepan Kasal.
3720 2004-08-26 Akim Demaille <akim@epita.fr>
3722 * doc/autoconf.texi: Minor typos and stylos.
3724 2004-08-20 Paul Eggert <eggert@cs.ucla.edu>
3726 * configure.ac (AC_INIT): Bump to 2.59c.
3728 2004-08-20 Paul Eggert <eggert@cs.ucla.edu>
3732 * README: Add advice about m4 1.4.2.
3734 * Makefile.cfg (wget_files): Remove config.guess, config.sub,
3735 texinfo.tex for now (done by hand now).
3736 * Makefile.maint (wget_files, cvs_files):
3737 Remove ansi2knr.c; nobody uses it.
3738 (ansi2knr.c-url_prefix): Remove.
3739 (cvs-update): Fix test for failure. I don't know why it ever
3742 * doc/autoconf.texi: Update URLs, some of which went stale.
3743 Use @uref rather than @href.
3745 * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Have configure
3746 handle "--" as per POSIX. Suggested by Paul Pogonyshev.
3748 * config/config.guess, config/config.sub, config/elisp-comp,
3749 config/install-sh, config/mkinstalldirs, config/texinfo.tex,
3750 doc/fdl.texi, doc/standards.texi: Sync with master copy.
3752 * NEWS, TODO, configure.ac, bin/autoscan.in,
3753 bin/autoupdate.in, bin/ifnames.in, doc/autoconf.texi,
3754 doc/install.texi, lib/Autom4te/Configure_ac.pm,
3755 lib/Autom4te/FileUtils.pm, lib/autoconf/general.m4,
3756 lib/autoconf/programs.m4, lib/autoconf/status.m4,
3757 lib/autotest/general.m4, lib/m4sugar/m4sh.m4,
3758 lib/m4sugar/m4sugar.m4, tests/local.at, tests/m4sh.at,
3759 tests/tools.at, tests/torture.at:
3760 Use "file name" rather than "filename" or "path",
3761 to be consistent with the terminology of the GNU coding standards.
3763 2004-08-19 Paul Eggert <eggert@cs.ucla.edu>
3765 * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C),
3766 AC_C_LONG_DOUBLE): Undo 2004-06-04 change, as it didn't work with
3767 HP-UX 11.23 cc/aCC or Tru64 4.0 cc. Problem reported by Noah Misch in
3768 <http://lists.gnu.org/archive/html/autoconf/2004-07/msg00004.html>.
3770 More fixes to support spaces in the name of the build directory.
3771 This isn't a complete fix but it's an improvement.
3773 * bin/autoconf.as (autom4te_options): New var.
3774 Use it instead of appending to AUTOM4TE, so that we can allow
3775 spaces in the build directory's absolute name.
3776 * bin/autoheader.in ($autoconf): Allow spaces in file names.
3777 * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP, _AT_CHECK,
3778 AT_CHECK_NOESCAPE): Likewise.
3779 * tests/wrapper.as (testdir, AUTOM4TE_CFG, autom4te_perllibdir,
3780 main program): Likewise.
3782 2004-08-18 Paul Eggert <eggert@cs.ucla.edu>
3784 * lib/autoconf/general.m4 (_AC_INIT_HELP): Quote $ac_popdir uses.
3785 From Ralf Corsepius in:
3786 http://lists.gnu.org/archive/html/autoconf-patches/2004-08/msg00014.html
3788 2004-08-12 Paul Eggert <eggert@cs.ucla.edu>
3790 * doc/autoconf.texi (Function Portability): Document isinf and
3791 and isnan. From a suggestion by Kevin Ryde.
3793 * lib/Autom4te/General.pm (END): Return correct exit status even
3794 if unlink succeeds and sets $?. Needed with Solaris 8's perl 5.00503.
3796 2004-08-09 Paul Eggert <eggert@cs.ucla.edu>
3798 * tests/torture.at (Deep Package): Use configure.in, not configure.ac,
3799 for compatibility with Automake 1.4. Reported by J C Fitzgerald in
3800 <http://lists.gnu.org/archive/html/bug-autoconf/2003-08/msg00051.html>.
3802 2004-08-04 Alexandre Duret-Lutz <adl@gnu.org>
3804 * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE): New empty macro.
3805 (AC_CANONICAL_BUILD): Call it to require config.sub and config.guess.
3806 * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Likewise for install-sh.
3807 * doc/autoconf.texi (Input): Document AC_REQUIRE_AUX_FILE.
3808 * lib/autom4te.in (Automake-preselections): Preselect
3809 AC_REQUIRE_AUX_FILE. Automake 1.10 will trace it.
3811 2004-08-02 Alexandre Duret-Lutz <adl@gnu.org>
3813 * lib/autom4te.in (Automake-preselections): Preselect
3814 AC_CANONICAL_BUILD and AC_CANONICAL_TARGET. Automake 1.9.1 will
3817 2004-07-29 Paul Eggert <eggert@cs.ucla.edu>
3819 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Set BIN_SH, for
3821 * doc/autoconf.texi (Shellology): Mention BIN_SH.
3822 Document problem with "`""`" in pdksh POSIX mode.
3824 2004-07-27 Paul Eggert <eggert@cs.ucla.edu>
3826 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Use "set -o posix"
3827 with pdksh, too. Problem reported by Patrick Welche via
3829 * doc/autoconf.texi (Shellology): Note that set -o posix is
3830 useful for pkdsh, too.
3832 2004-06-24 Paul Eggert <eggert@cs.ucla.edu>
3834 * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Require
3835 _AS_UNSET_PREPARE, so that we can use $as_unset directly.
3836 Don't fail if ENV or BASH_ENV is readonly.
3837 (AS_SHELL_SANITIZE): Don't fail if ENV, MAIL, MAILPATH, LC_ALL,
3838 etc. are read only. Problem reported by Ludovic Courtes.
3840 2004-06-23 Noah Misch <noah@cs.caltech.edu>
3842 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
3843 zsh, disable GLOB_SUBST to avoid backslash handling problems.
3846 2004-06-04 Paul Eggert <eggert@cs.ucla.edu>
3848 * doc/autoconf.texi (File System Conventions): Warn about
3849 names like "aux". Problem reported by Eric Blake.
3851 * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY (C)): Use division
3852 by zero instead of array size, so that we can use any arithmetic
3853 constant expression (instead of requiring an integer constant
3854 expression). This allows us to test expressions like DBL_MAX <
3855 LDBL_MAX, which didn't conform to the C standard using the old
3857 (AC_C_LONG_DOUBLE): Put back in the tests for LDBL_MAX and LDBL_EPSILON,
3858 now that we can do floating-point tests at compile time.
3860 2004-06-02 Paul Eggert <eggert@cs.ucla.edu>
3862 * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Don't check LDBL_MAX
3863 and LDBL_EPSILON, as the resulting expression isn't an
3864 integer constant expression and violates the C standard.
3865 Problem reported by Nelson H. F. Beebe. Also, check
3866 for "L" suffix, and check that long double doesn't have
3867 worse range or precision than double, that mixed-mode
3868 arithmetic doesn't generate a diagnostic, that double
3869 constants fit in long double.
3871 2004-06-03 Kevin Ryde <user42@zip.com.au>
3873 * doc/autoconf.texi (Function Portability): Add notes on free(NULL),
3874 malloc(0) and realloc(NULL,size).
3876 * doc/autoconf.texi (Shell Substitutions): Spelling error reported by
3879 2004-05-31 Paul Eggert <eggert@cs.ucla.edu>
3881 * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Detect _Bool bug
3882 in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003]. Problem reported
3885 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
3887 * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
3888 can be rewritten using if-then-else. Suggested by Bruno Haible.
3890 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
3892 * doc/autoconf.texi (testsuite Scripts): Fix typo.
3893 Problem reported by Stepan Kasal.
3895 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
3897 * tests/Makefile.am (autoconfdir): Fix to match comment (trivial
3898 change). Patch reported by Ralf Wildenhues in
3899 <http://mail.gnu.org/archive/html/bug-autoconf/2004-05/msg00092.html>.
3901 * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): Don't assume that a
3902 function F exists if the compiler and linker let you compile an
3903 expression like (F != 0). Recent versions of GCC optimize away
3904 the reference to F in that case, since every function address must
3905 be nonzero, so the link succeeds even if F does not exist.
3906 Problem reported by Manu in
3907 <http://mail.gnu.org/archive/html/bug-gnu-utils/2004-05/msg00060.html>.
3909 * doc/autoconf.texi (Systemology): Standardize on the spelling of
3910 "Unix". Many uses changed.
3911 (Limitations of Builtins): Explain better why the ! command isn't
3914 2004-05-22 Alexandre Duret-Lutz <adl@gnu.org>
3916 * lib/autom4te.in (Automake-preselections): Preselect
3917 LT_SUPPORTED_TAG in lieu of AC_LIBTOOL_TAGS.
3919 2004-05-19 Kevin Ryde <user42@zip.com.au>
3921 * doc/autoconf.texi (Function Portability): Add strerror_r, cross
3922 referencing AC_FUNC_STRERROR_R.
3924 * doc/autoconf.texi (Particular Functions): In AC_FUNC_CLOSEDIR_VOID,
3925 note pessimistic assumption when cross compiling.
3927 2004-05-16 Paul Eggert <eggert@cs.ucla.edu>
3929 * doc/autoconf.texi (Limitations of Make): Note that BSD make
3930 (until 2004) invoked subcommands with sh -e, contra POSIX.
3931 Reported by Kevin Ryde.
3933 2004-05-10 Eric Sunshine <sunshine@sunshineco.com>
3935 * programs.m4 (_AC_PROG_GREP): Fixed bug where PATH argument handed to
3936 _AC_PATH_PROG_FEATURE_CHECK contained leading whitespace (i.e.
3937 " $PATH:/usr/xpg4/bin"). This resulted in bogus tests, such as
3938 `test -f " /usr/bin/grep"', which _always_ failed.
3939 (AC_PROG_SED): Ditto bogus PATH fix.
3940 * autoconf.texi (AC_PROG_GREP): Properly document that this macro
3941 requires that grep correctly supports _multiple_ `-e' options, rather
3942 than stating only that grep should accept `-e'.
3944 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
3946 Port to C99, which requires that 'exit' be declared.
3948 * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Use AC_INCLUDES_DEFAULT
3949 to ensure that stdlib.h is included.
3950 * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_SETPGRP,
3951 AC_FUNC_STRTOD, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_FORK, _AC_FUNC_FORK,
3952 _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
3953 * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
3954 * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
3955 * lib/autoconf/headers.m4 (AC_HEADER_STDC): Include <stdlib.h>
3956 when using 'exit' in a test; C99 requires that 'exit' be declared.
3958 2004-05-02 Paul Eggert <eggert@cs.ucla.edu>
3960 * doc/autoconf.texi (Particular Programs): AC_PROG_GREP
3961 now prefers 'grep' implementations that accept -e.
3962 (Limitations of Usual Tools): Describe problems of traditional
3963 egrep and fgrep with long input lines, and of traditional grep
3965 * lib/autoconf/programs.m4 (AC_PROG_GREP): Check for -e, too.
3966 (_AC_PROG_GREP): Assume 3rd arg is properly quoted for the shell.
3967 All callers changed. Append /usr/xpg4/bin to the PATH, for
3969 (_AC_FEATURE_CHECK_LENGTH): Discard stderr, so we don't bother
3970 the user with complaints about multiple -e options.
3971 * tests/local.at (AC_STATE_SAVE): Use $GREP, not grep.
3972 Define it with AC_PROG_GREP.
3973 * configure.ac (AC_PROG_GREP): Add.
3974 * lib/freeze.mk (GREP): New macro.
3976 2004-05-02 Eric Sunshine <sunshine@sunshineco.com>
3978 * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Consult $SHELL as
3979 a possible candidate only after all others fail, rather than
3980 consulting it first. This improves backward compatibility by
3981 better reflecting the way shell selection occurred in previous
3982 versions of Autoconf, and should help to avoid triggering latent
3983 problems in other packages, such as the one in Automake where zsh
3984 is not handled robustly:
3985 http://mail.gnu.org/archive/html/automake/2004-04/msg00095.html
3986 Although it is not Autoconf's responsibility to work around
3987 problems in Automake, it nevertheless makes sense to avoid
3988 introducing unnecessary incompatibilites.
3990 2004-04-22 Albert Chin-A-Young <china@thewrittenword.com>,
3991 Gary V. Vaughan <gary@gnu.org>
3993 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't guess
3994 how deeply nested we are when a suitable tool is found, set the
3995 ac_path_TOOL_found flag.
3996 (_AC_PATH_PROG_FEATURE_CHECK): Encapsulate knowledge of how deeply
3997 nested we are in this macro. Break out of all 3 nested loops if
3998 ac_path_TOOL_found is set.
4000 2004-04-21 Gary V. Vaughan <gary@gnu.org>
4002 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Break out
4003 of the _AS_PATH_WALK loop too if GNU flavor is found.
4005 2004-04-21 Alexandre Duret-Lutz <adl@gnu.org>
4007 * doc/autoconf.texi (Limitations of Make): Update documentation
4008 for `$<'. New entry `Long lines', based on a report from Simon
4009 Josefsson. Augment the documentation for SHELL = @SHELL@ with a
4010 paragraph about DJGPP, based on a mail from Richard Dawe.
4012 2004-04-20 Paul Eggert <eggert@twinsun.com>
4014 * tests/c.at (C keywords): Don't assume that GCC supports
4015 "restrict" and "inline", as sufficiently-old GCC versions do not
4016 (also, GCC configured to be in pedantic C89 mode does not).
4017 Problem reported by Sumit Pandya in:
4018 http://mail.gnu.org/archive/html/autoconf/2004-04/msg00092.html
4020 * lib/autoconf/c.m4 (_AC_PROG_CC_G, _AC_PROG_CXX_G): Don't
4021 consider -g to work if it generates warnings when plain compiles
4022 don't. Problem reported by Braden McDaniel in:
4023 http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00014.html
4025 * doc/autoconf.texi (Slashes): New section, to document a problem
4026 reported by Jim Meyering in:
4027 http://mail.gnu.org/archive/html/bug-coreutils/2004-02/msg00060.html
4029 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Remove potential
4030 linker output files before linking, to work around IRIX 6 linker bug.
4031 Problem reported by Rainer Orth in:
4032 http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00007.html
4034 2004-04-20 Gary V. Vaughan <gary@gnu.org>
4036 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Make the
4037 best tool so far counter rely on the tool path variable name to
4038 avoid checks for one tool being affected by the results of running
4039 the length check on a previous tool.
4041 * lib/autoconf/programs.m4 (_AC_PROG_GREP): Take an additional
4042 match expression argument, as different greps have different
4043 regular expression flavours.
4044 (AC_PROG_FGREP): Pass 'FGREP'. fgrep treats all match chars as
4046 (AC_PROG_EGREP): Pass 'EGREP$'.
4047 (AC_PROG_GREP): Pass 'GREP$'.
4049 2004-04-20 Albert Chin-A-Young <china@thewrittenword.com>
4051 * lib/autoconf/programs.m4 (AC_PROG_GREP): Cache variable
4052 is `ac_cv_path_GREP', not `oc_cv_path_GREP'.
4054 2004-03-29 Paul Eggert <eggert@twinsun.com>
4056 * doc/autoconf.texi (Particular Headers, Particular Types, Generic
4057 Types, Specific Compiler Characteristics, System Services,
4058 Obsolete Macros): Use 'long int', 'short int', 'unsigned int'
4059 etc. consistently instead of 'long', 'short', 'unsigned' etc.
4060 * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN): Likewise.
4061 * lib/autoconf/functions.m4 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES):
4063 * lib/autoconf/headers.m4 (AC_HEADER_SYS_WAIT): Likewise.
4064 * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS, AC_TYPE_SIZE_T,
4065 AC_TYPE_OFF_T): Likewise.
4066 * tests/semantics.at (AC_CHECK_TYPES: backward compatibility):
4069 * tests/foreign.at (Libtool): Create an empty aclocal.m4, to
4070 pacify libtool 1.5.2. Fix quoting problems in sed command.
4072 2004-03-28 Paul Eggert <eggert@twinsun.com>
4074 * doc/autoconf.texi (Particular Structures): AC_STRUCT_TIMEZONE
4075 now defines HAVE_DECL_TZNAME if it is declared, when
4076 HAVE_STRUCT_TM_TM_ZONE is not defined.
4077 * lib/autoconf/types.m4 (AC_STRUCT_TIMEZONE): Implement this.
4078 Do not assume atoi. Rely on HAVE_DECL_TZNAME when testing
4081 2004-03-28 Steven G. Johnson <stevenj@fftw.org>
4083 * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Corrected
4084 superfluous backslashing of quotes (") in sed expressions;
4085 thanks to Paul Eggert.
4087 2004-03-26 Steven G. Johnson <stevenj@alum.mit.edu>
4089 * lib/autoconf/fortran.m4 (_AC_PROG_FC): new name of Intel
4090 Fortran compiler is ifort, also added pghpf; thanks to Nelson
4091 H. F. Beebe for the bug report.
4093 2004-03-26 Steven G. Johnson <stevenj@fftw.org>
4095 * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): fix for
4096 quoted -cmdline argument in Portland Group compiler (bug
4097 reported by Jeffrey J. Barteet).
4099 2004-03-25 Kevin Ryde <user42@zip.com.au>
4101 * doc/autoconf.texi (Specifying Names): Move cross_compiling ovindex to
4102 (Run Time): ... here, where it's now mentioned.
4104 2004-03-19 Alexandre Duret-Lutz <adl@gnu.org>
4106 * doc/autoconf.texi (autom4te Invocation): Language Autoconf
4107 inherits from language Autoconf-without-aclocal-m4.
4108 (Customizing autom4te): Adjust example; the cache must now be
4109 disabled for language Autoconf-without-aclocal-m4.
4111 2004-03-16 Paolo Bonzini <bonzini@gnu.org>
4112 Nathanael Nerode <neroden@twcny.rr.com>
4114 * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL,
4115 AC_CHECK_TOOLS): Warn if a cross-tool is found without
4117 (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
4118 AC_CHECK_TARGET_TOOLS): New macros.
4119 * doc/autoconf.texi (Generic Programs): Document
4120 (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
4121 AC_CHECK_TARGET_TOOLS, and warn for future changes
4122 in the behavior of AC_PATH_TOOL, AC_CHECK_TOOL and
4124 (Specifying Names): Document the reason for these future
4126 * tests/mktests.sh: Do not generate tests for the
4128 * NEWS: Document these changes.
4130 * doc/autoconf.texi: Avoid macros with unbraced arguments,
4131 they make TeX hang up.
4133 2004-03-15 Paul Eggert <eggert@bogus.example.com>
4135 * NEWS: New macro AC_CHECK_ALIGNOF.
4136 * doc/autoconf.texi (Generic Compiler Characteristics): Document it.
4137 * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use long int rather than
4138 int; avoid "a `$1'" since this isn't grammatical if $1 begins with a
4140 (AC_CHECK_ALIGNOF): New macro.
4141 * tests/mktests.sh (ac_exclude_list): Exclude AC_CHECK_ALIGNOF.
4142 * tests/semantics.at (AC_CHECK_ALIGNOF): Add tests similar to
4145 2004-03-03 Paul Eggert <eggert@twinsun.com>
4147 * bin/Makefile.am (edit): Don't use $< in a context where
4148 POSIX doesn't require support for it. Use $@.in instead.
4149 Problem reported by Anthony N. Frasso in
4150 <http://mail.gnu.org/archive/html/autoconf/2004-03/msg00008.html>.
4151 * bin/autoscan.in, bin/autoupdate.in: Add @configure_input@ comment.
4153 2004-02-23 Gary V. Vaughan <gary@gnu.org>
4155 * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT
4156 from the next generation of Libtool.
4157 * lib/autom4te.in (Autoreconf-preselections): Ditto.
4159 2004-02-20 Alexandre Duret-Lutz <adl@gnu.org>
4161 * doc/autoconf.texi (Limitations of Usual Tools) <mkdir>: `mkdir -p'
4162 is not always thread-safe. Report from Nathanael Nerode.
4164 2004-02-18 Paul Eggert <eggert@twinsun.com>
4166 Fix a dependencies problem, stemming from a Autoconf 2.59 build
4167 problem on QNX reported by Stephen Rasku in
4168 <http://mail.gnu.org/archive/html/bug-autoconf/2004-02/msg00066.html>.
4170 * bin/Makefile.am ($(srcdir)/autoconf.in): Depend on
4171 $(m4sh_m4f_dependencies); this removes a FIXME.
4172 * tests/Makefile.am ($(srcdir)/wrapper.in): Likewise.
4173 (MAINTAINERCLEANFILES): Split into pieces,
4174 one per related section. Add $(srcdir)/wrapper.in.
4176 2004-02-09 Paul Eggert <eggert@twinsun.com>
4178 * doc/autoconf.texi (Setting Output Variables): Emphasize that
4179 AC_SUBST provides no portable way to escape literal newlines.
4181 * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore all
4182 flags of the form -lcrt*.o, not just -lcrt[01].o and -lcrtbegin.o.
4183 Darwin uses -lcrt2.o and there's little point to cataloging all
4184 the system variants. Partial fix reported by Andreas Waechter in:
4185 http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00006.html
4186 for bug reported by Nelson H. F. Beebe in:
4187 http://mail.gnu.org/archive/html/bug-autoconf/2003-12/msg00090.html
4189 2004-02-04 Paolo Bonzini <bonzini@gnu.org>
4191 * doc/autoconf.texi (AU_DEFUN): Fix English,
4192 suggested by Paul Eggert.
4193 * lib/autoconf/autoupdate.m4: Correct reference to
4194 acobsolete.m4, suggested by Alexandre Duret-Lutz.
4196 2004-02-02 Paolo Bonzini <bonzini@gnu.org>
4198 * bin/autoupdate.in: Define __file__ so that warnings
4199 refer to the correct file.
4200 * doc/autoconf.texi (AU_DEFUN): Describe more correctly
4201 the behavior of the third argument.
4202 * lib/autoconf/autoupdate.m4 (AU_DEFUN): Describe more
4203 correctly the behavior of the third argument. Document
4204 what the three macros that AU_DEFUN defines do. Fix
4205 warning message when the third argument includes $0
4206 (reported by Alexandre Duret-Lutz).
4208 2004-01-30 Paolo Bonzini <bonzini@gnu.org>
4209 Eric Sunshine <sunshine@sunshineco.com>
4210 Paul Eggert <eggert@twinsun.com>
4212 * lib/m4sugar/m4sh.m4 (M4SH-SANITIZE): New diversion.
4213 (AS_INIT): Output shell initialization there. Removed optional
4214 parameter. Expand _AS_SHELL_FN_SPY.
4215 (AS_INIT_WITH_SHELL_FN): Removed.
4216 (_AS_SHELL_FN_SPY): New macro.
4217 (AS_DETECT_REQUIRED, AS_DETECT_SUGGESTED): New
4219 (AS_SHELL_SANITIZE): Remove loop to find better shell
4220 and documentation for the parameter.
4221 (_AS_DETECT_BETTER_SHELL): Move it here.
4222 (_AS_SHELL_FN_WORK): Remove shell invocation, reformat.
4223 (_AS_RUN): Move it here, support testing with eval.
4224 (AS_REQUIRE_SHELL_FN): Require shell functions when
4226 (_AS_LINENO_WORKS): Put around braces, we do not
4227 trigger the bash bug anymore.
4228 * lib/autotest/general.m4: Document M4SH-SANITIZE, do not
4229 use AS_INIT_WITH_SHELL_FN.
4230 * bin/autoconf.in, tests/wrapper.in: Regenerated.
4232 2004-01-30 Paolo Bonzini <bonzini@gnu.org>
4234 * bin/autoupdate.in: Trace AU_DEFINE instead of AU_DEFUN.
4235 * doc/autoconf.texi: Don't say that the third parameter
4237 * lib/autoconf/autoupdate.m4 (AU_DEFINE): New dummy macro.
4238 (AU_DEFUN): Honor the third parameter, create autoupdate
4239 macros with AU_DEFINE.
4240 * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H,
4241 AC_DIR_HEADER): Use AU_DEFUN's third parameter.
4242 * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
4243 * lib/autoconf/programs.m4 (AC_RSH): Likewise.
4244 * lib/autoconf/specific.m4 (AC_HAVE_POUNDBANG,
4245 AC_ARG_ARRAY, AC_CYGWIN, AC_EMXOS2, AC_MINGW32,
4246 AC_XENIX_DIR): Likewise.
4247 * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS,
4248 AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_RDEV): Likewise.
4249 * lib/autoconf/status.m4: Remove FIXME.
4250 * tests/local.at (AT_CHECK_AU_MACRO): Ignore stderr, check
4251 that the macro is not present anymore in the updated
4253 * tests/tools.at (autoupdate AC_LINK_FILES): Ignore stderr
4256 2004-01-28 Paul Eggert <eggert@twinsun.com>
4258 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add 2004 to
4260 * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Add 1992 thorugh
4261 2003 (except 1997) to the list of copyright years. This undoes
4262 the 2003-05-22 change, which removed the older years from the list.
4263 * lib/autoconf/status.m4 (AC_OUTPUT): Update copyright date to 2004.
4265 2004-01-27 Gary V. Vaughan <gary@gnu.org>
4266 Albert Chin-A-Young <china@thewrittenword.com>
4268 * lib/autoconf/programs.m4 (AC_PROG_GREP): New macro to test for a
4269 grep or ggrep program in PATH that accepts as long lines as
4271 * lib/autoconf/programs.m4 (_AC_PROG_GREP): Factor out the core of
4273 (AC_PROG_EGREP, AC_PROG_FGREP): Use it to find best available
4274 egrep and fgrep respectively if $GREP -E/-F don't work.
4275 (_AC_PATH_PROG_FEATURE_CHECK): Factor out the common core of
4276 _AC_PROG_GREP, and AC_PROG_SED.
4277 (_AC_FEATURE_CHECK_LENGTH): New helper macro for finding the
4278 longest input length accepted by a command.
4279 (AC_PROG_SED): Use it.
4280 * doc/autoconf.texi (Particular Programs): Document the changes.
4283 2004-01-27 Paul Eggert <eggert@twinsun.com>
4285 * bin/autoconf.as ($version): Update copyright from 2003 to 2004.
4286 * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
4287 bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in: Likewise.
4288 * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
4290 * Makefile.in, aclocal.m4, configure, bin/Makefile.in,
4291 bin/autoconf.in, config/Makefile.in, config/config.guess,
4292 config/config.sub, config/install-sh, config/mdate-sh,
4293 config/mkinstalldirs, config/texinfo.tex, doc/Makefile.in,
4294 lib/Makefile.in, lib/Autom4te/Makefile.in,
4295 lib/autoconf/Makefile.in, lib/autoscan/Makefile.in,
4296 lib/autotest/Makefile.in, lib/emacs/Makefile.in,
4297 lib/m4sugar/Makefile.in, man/Makefile.in, man/autoconf.1,
4298 man/autoheader.1, man/autom4te.1, man/autoreconf.1,
4299 man/autoscan.1, man/autoupdate.1, man/config.guess.1,
4300 man/config.sub.1, man/ifnames.1, tests/Makefile.in,
4301 tests/acc.at, tests/acfortran.at, tests/acfunctions.at,
4302 tests/acgeneral.at, tests/acheaders.at, tests/aclang.at,
4303 tests/aclibs.at, tests/acspecific.at, tests/acstatus.at,
4304 tests/actypes.at: Regenerate and/or sync with original
4307 2004-01-26 Paul Eggert <eggert@twinsun.com>
4309 * doc/autoconf.texi (Default Includes): Include <stdint.h> even if
4310 HAVE_INTTYPES_H is defined. This is needed on Tru64 5.1b with
4311 Compac C V6.5-207 (dtk), which defines uintmax_t in <stdint.h> but
4312 not <inttypes.h>. Problem reported by Tim Mooney in
4313 <http://mail.gnu.org/archive/html/bug-coreutils/2004-01/msg00147.html>.
4314 * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
4317 * lib/autoconf/programs.m4 (AC_PROG_SED): Use diff, not sed;
4318 otherwise "make check" fails because it forbids cmp (I guess
4319 because cmp treats files as binary on DOS-like systems).
4321 * tests/mktests.sh: Update copyright date to 2004, since some tests
4322 have changed in 2004.
4324 2004-01-23 Gary V. Vaughan <gary@gnu.org>
4326 * lib/autoconf/programs.m4 (AC_PROG_SED): New macro to test for a
4327 non-truncating sed or gsed program in PATH.
4328 * tests/acprograms.at: Add it.
4329 * doc/autoconf.texi (Particular Programs): Document it.
4332 2004-01-15 Paul Eggert <eggert@twinsun.com>
4334 * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Try -std, not -std1, since
4335 -std1 disables some useful extensions on Tru64. Problem reported
4337 <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00100.html>.
4339 2004-01-14 Paul Eggert <eggert@twinsun.com>
4341 * doc/autoconf.texi (Programming in M4sh): Document that
4342 AS_MKDIR_P succeeds if the destination is a symbolic link
4343 to an existing directory.
4344 (Limitations of Usual Tools): Note that mkdir -p might not
4345 succeed on symlinks to directories.
4347 2004-01-13 Paul Hilfinger <hilfinger@CS.Berkeley.EDU>
4349 * lib/autoconf/autoupdate.m4 (AU_DEFUN): Grammar fix in comment.
4350 * bin/autoheader.in: Grammar fix in message.
4351 * lib/m4sugar/m4sh.m4 (AS_MKDIR_P):
4352 Test for dir before calling mkdir -p. (trivial changes)
4354 2004-01-13 Eric Blake <ebb9@byu.net>
4356 * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
4357 AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/. (trivial change)
4359 2004-01-10 Jim Meyering <jim@meyering.net>
4361 * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
4363 2004-01-09 Paul Eggert <eggert@twinsun.com>
4365 * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
4366 with `autoconf -Wall,error'. Bug reported by Eric Blake in:
4367 http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
4368 (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
4369 AC_COMPILE_IFELSE, since we now assume our caller invokes
4370 AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
4371 (_AC_COMPUTE_INT_RUN): Likewise, for _AC_RUN_IFELSE instead
4372 of AC_RUN_IFELSE; this avoids the warning mentioned above.
4373 (_AC_COMPUTE_INT): Invoke AC_LANG_COMPILER_REQUIRE.
4375 2004-01-07 Paul Eggert <eggert@twinsun.com>
4377 * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Avoid \$ inside
4378 `"'...'"`, as it's confusing (and I suspect it may not work on
4379 some platforms). The code was incorrect anyway, as it assumed
4380 that \$ evaluated to itself in that context. Reported by
4381 Alexandre Duret-Lutz.
4383 2004-01-07 Alexandre Duret-Lutz <adl@gnu.org>
4385 * lib/autom4te.in (Automake-preselections): Preselect AC_LIBTOOL_TAGS
4386 and _LT_AC_TAGCONFIG.
4388 2004-01-06 Paul Eggert <eggert@twinsun.com>
4390 * doc/autoconf.texi (One Macro Call): Fix an incorrect
4391 example, and add more examples. Reported by Eric Sunshine.
4393 2004-01-05 Paul Eggert <eggert@twinsun.com>
4395 * doc/autoconf.texi (Limitations of Usual Tools):
4396 Remove warning against "rm -fr" introduced yesterday; it
4399 * bin/Makefile.am (autoconf, autoheader, autom4te, autoreconf,
4400 autoscan, autoupdate, ifnames): Don't use chmod -w.
4401 * lib/Makefile.am (autom4te.cfg): Likewise.
4402 * doc/autoconf.texi (Limitations of Usual Tools): Warn against
4405 2004-01-04 Paul Eggert <eggert@twinsun.com>
4406 Paolo Bonzini <bonzini@gnu.org>
4408 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Speed up sed scripts
4409 by doing lineno substitution only on lines containing "$LINENO".
4411 2004-01-04 Paul Eggert <eggert@twinsun.com>
4413 * lib/autoconf/general.m4 (AC_ARG_PROGRAM):
4414 Use "rm -f" to remove conftest.sed, not plain "rm".
4415 Bug reported by David Relson in
4416 <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00011.html>.
4418 * Makefile.am (autom4te-update):
4419 Replace "rm -rf" and "rm -fr" with "rm -f -r", as POSIX requires.
4420 * Makefile.maint (my-distcheck, do-po-update): Likewise.
4421 * doc/autoconf.texi (Guidelines): Likewise.
4422 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Likewise.
4423 * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
4424 * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
4425 * lib/autotest/general.m4 (AT_INIT): Likewise.
4426 * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
4427 * tests/Makefile.am (clean-local): Likewise.
4428 * tests/tortue.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS,
4430 * doc/autoconf.texi (Limitations of Usual Tools):
4431 Warn against "rm -fr".
4433 2004-01-03 Paul Eggert <eggert@twinsun.com>
4435 * doc/autoconf.texi (Limitations of Usual Tools): Mention that cc
4436 -c -o might not work. From a suggestion by Kevin Ryde.
4437 (C Compiler, Generating Sources, Limitations
4438 of Usual Tools, Limitations of Make, Making testsuite Scripts):
4439 Don't put '-o' after non-options, as POSIX doesn't allow this.
4440 Mention that cc's name might be gcc or c89 or whatever.
4442 2004-01-04 Kevin Ryde <user42@zip.com.au>
4444 * doc/autoconf.texi: Add various further index entries.
4446 2003-12-29 Paul Eggert <eggert@twinsun.com>
4448 * bin/autoreconf.in (autoreconf_current_directory):
4449 Fix typo: mkdir without umask arg.
4451 2003-12-27 Alexandre Duret-Lutz <adl@gnu.org>
4453 * doc/autoconf.texi (Limitations of Make) <Automatic rule rewriting>:
4454 Documents OSF1/Tru64 make behavior. Replace `VPATH = ../src' by
4455 `VPATH = ../pkg/src' in examples to make the OSF1/Tru64 make
4456 explanation clearer.
4458 2003-12-24 Andreas Schwab <schwab@suse.de>
4460 * doc/autoconf.texi (Default Includes): Fix misspelling of
4461 AC_INCLUDES_DEFAULT.
4463 2003-12-03 Paolo Bonzini <bonzini@gnu.org>
4465 * configure.ac: Test if sh -n works.
4466 * configure: Regenerate.
4467 * tests/atlocal.in: Store the result here.
4468 * tests/local.at (AT_CHECK_SHELL_SYNTAX): Extracted from
4469 tools.at, looking in atlocal's ac_cv_sh_n_works instead
4470 of explicitly testing.
4471 (AT_CHECK_PERL_SYNTAX): Moved from tools.at.
4472 (AT_CHECK_AUTOCONF): Test for the configure script syntax.
4473 * tests/tools.at (Syntax of the shell scripts): Simplify
4474 using AT_CHECK_SHELL_SYNTAX.
4475 (Syntax of the Perl scripts): Remove definition of
4476 AT_CHECK_PERL_SYNTAX.
4478 2003-12-03 Paolo Bonzini <bonzini@gnu.org>
4480 * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Redirect
4481 stderr to /dev/null.
4482 * bin/autoconf.in: Regenerate.
4483 * bin/wrapper.in: Regenerate.
4485 2003-11-26 Paolo Bonzini <bonzini@gnu.org>
4487 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE):
4488 Extracted from AS_SHELL_SANITIZE.
4489 (_AS_SHELL_FN_WORK, AS_INIT_WITH_SHELL_FN): New
4491 (AS_SHELL_SANITIZE): Move reinvocation code from
4492 _AS_LINENO_WORKS, use it to find out if shell
4494 (_AS_LINENO_WORKS): Don't find another shell if $LINENO
4496 (AS_INIT): Pass parameter down to AS_SHELL_SANITIZE.
4497 (AS_REQUIRE_SHELL_FN): Test that AS_INIT_WITH_SHELL_FN
4499 * lib/autotest/general.m4: Use AS_INIT_WITH_SHELL_FN.
4500 * bin/autoconf.in: Regenerate.
4501 * tests/wrapper.in: Regenerate.
4502 * tests/tools.at: Test the syntax of tests/autoconf
4503 and tests/testsuite.
4505 2003-11-24 Akim Demaille <akim@epita.fr>
4507 * config/announce-gen (&print_locations, &print_signatures)
4510 No longer rely on Gnus to inline the list of signatures: compute
4513 2003-11-24 Akim Demaille <akim@epita.fr>
4515 * doc/autoconf.texi (Particular Programs): AC_PROG_LEX can
4516 override some files.
4517 (Input): AC_CONFIG_AUX_DIR(aux) is a bad idea on DOS.
4518 From Debian Autoconf 2.58.
4520 2003-11-24 Akim Demaille <akim@epita.fr>
4522 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote $ac_popdir
4524 From Debian Autoconf 2.58.
4526 2003-11-24 Paolo Bonzini <bonzini@gnu.org>
4528 * TODO: Remove already done things. Update the part about finding
4529 tools for the target.
4531 2003-11-24 Paolo Bonzini <bonzini@gnu.org>
4533 * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H, AC_DIR_HEADER):
4534 Make wording more consistent.
4535 * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
4536 Explain the transition better.
4537 * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS): Explain
4538 the transition better.
4540 2003-11-24 Paolo Bonzini <bonzini@gnu.org>
4542 * doc/autoconf.texi (Obsoleting Macros): Don't document the third
4543 parameter of AU_DEFUN.
4544 * lib/autoconf/autoupdate.m4 (AU_DEFINE): Remove.
4545 (AU_DEFUN): Remove the third parameter, it was not used.
4546 Use AC_DEFUN directly, not AU_DEFINE.
4547 * lib/autoconf/status.m4 (AC_LINK_FILES): Move the message into
4548 the expanded body, consistently with other macros such as AC_USG.
4550 2003-11-17 Paul Eggert <eggert@twinsun.com>
4552 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put at least 14 bytes
4553 into the initial confdefs.h, to work around a bug in NextStep 3.3
4554 patch 3 reported by Eric Sunshine.
4556 2003-11-15 Kevin Ryde <user42@zip.com.au>
4558 * doc/autoconf.texi (Using System Type): Revise, showing $host rather
4559 than $target since the latter is not usual, add guidelines on when to
4560 use or not use the system type.
4562 2003-11-12 Derek Price <derek@ximbiot.com>
4564 * doc/autoconf.texi (Limitations of Usual Tools): Fix what looks like a
4565 typo misrepaired by an auto-spellcheck.
4567 2003-11-12 Akim Demaille <akim@epita.fr>
4569 * bin/autoreconf.in (&parse_args): Don't call automake with
4570 --force-missing unless it actually supports it.
4571 From Debian #219336.
4573 2003-11-12 Akim Demaille <akim@epita.fr>
4575 * configure.ac: Bump to 2.59a.
4578 2003-11-06 Akim Demaille <akim@epita.fr>
4582 2003-11-05 Alexandre Duret-Lutz <adl@gnu.org>
4584 * lib/autoconf/status.m4 (_AC_SRCPATHS): Fix use of AS_SET_CATFILE
4585 so that ac_abs_builddir, ac_abs_top_builddir, ac_abs_srcdir,
4586 and ac_abs_top_srcdir are absolute paths.
4587 * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Remove misleading comment.
4589 2003-11-05 Akim Demaille <akim@epita.fr>
4591 * configure.ac: Bump to 2.58a.
4593 2003-11-05 Kevin Ryde <user42@zip.com.au>
4595 * doc/autoconf.texi (Using Autotest): Avoid @strong{Note: ...}, since
4596 it provokes a warning from makeinfo about looking like a cross
4597 reference in info output.
4599 * doc/autoconf.texi (Function Portability): Add notes on signal
4600 handler return type, as per AC_TYPE_SIGNAL.
4602 2003-11-04 Akim Demaille <akim@epita.fr>
4605 * doc/standards.texi: Update from master.
4607 * tests/mktests.sh (ac_exclude_list): Add AC_FC_FREEFORM.
4609 2003-11-04 Akim Demaille <akim@epita.fr>
4611 AC_CONFIG_FILE([d1/foo:d2/foo]) triggers error messages when
4612 computing the absolute path to d1 in the source hierarchy: it may
4613 not exist at all. So don't cd into it.
4614 From Alexandre Duret-Lutz.
4615 http://mail.gnu.org/archive/html/bug-autoconf/2003-10/msg00205.html
4617 * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): New.
4618 From Paul Eggert, but named after Perl's IO::Spec->catfile.
4619 * doc/autoconf.texi (Programming in M4sh): Document.
4620 * lib/autoconf/status.m4 (_AC_SRCPATHS): Use it.
4622 2003-11-03 Pavel Roskin <proski@gnu.org>
4624 * doc/autoconf.texi (Generic Structure Checks): Describe
4625 action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
4627 2003-10-31 Akim Demaille <akim@epita.fr>
4629 * tests/fortran.at (GNU Fortran 77): Don't run FC macros.
4631 * doc/autoconf.texi (Language Choice): Document.
4632 * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Assert
4633 the current language is Fortran.
4635 2003-10-31 Akim Demaille <akim@epita.fr>
4637 * bin/autom4te.in (&freeze): Use a less likely warning separator
4638 than `\n\n', so that `\n\n\n' is valid in warnings.
4639 Reported by Steve Huston.
4641 2003-10-28 Akim Demaille <akim@epita.fr>
4643 * Makefile.cfg (local_updates, executable-update): Tweak to be
4644 robust to parallel makes.
4645 Suggested by Alexandre Duret-Lutz.
4647 2003-10-27 Akim Demaille <akim@epita.fr>
4649 * Makefile.cfg (executable-update): New.
4650 (local_updates): Call it.
4652 2003-10-27 Akim Demaille <akim@epita.fr>
4654 * lib/autoconf/general.m4 (_AC_RUN_IFELSE, _AC_INIT_PREPARE):
4655 Don't remove core.* as it may remove valid user files.
4656 * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED)
4657 (AC_FUNC_UTIME_NULL): Likewise.
4659 2003-10-23 Akim Demaille <akim@epita.fr>
4662 * config/config.guess, config/config.sub: Upgrade from masters.
4664 2003-10-23 Akim Demaille <akim@epita.fr>
4666 * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Functions using
4667 AC_COMPILE_IFELSE that use break skip the clean up. So do it by
4670 2003-10-23 Akim Demaille <akim@epita.fr>
4672 * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_COMPILE_IFELSE):
4673 Don't forget to remove conftest.err.
4675 2003-10-23 Akim Demaille <akim@epita.fr>
4677 * lib/autoconf/general.m4 (_AC_LIBOBJ): Don't insert twice the
4678 same object file in $LIBOBJS.
4679 Reported by Alexandre Duret-Lutz & Derek Robert Price.
4680 * doc/autoconf.texi (Generic Functions): Adjust.
4682 2003-10-20 Paul Eggert <eggert@twinsun.com>
4684 * lib/m4sugar/m4sh.m4 (_AS_TR_SH_PREPARE, _AS_TR_CPP_PREPARE):
4685 Use 'eval', so that the resulting configure scripts work even if
4686 the current directory has a weird file name like 'y%s+%pp%;s%@%_%g'.
4688 2003-10-20 Daniel Jacobowitz <drow@mvista.com>
4690 * lib/autoconf/lang.m4 (AC_LANG_WERROR): New macro.
4691 * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_PREPROC_IFELSE)
4692 (_AC_LINK_IFELSE): Check the werror flag.
4693 * doc/autoconf.texi (Generic Compiler Characteristics): Document
4697 2003-10-20 Daniel Jacobowitz <drow@mvista.com>
4699 * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Override
4700 _AC_COMPILER_EXEEXT to attempt a link. If linking fails,
4701 override AC_LINK_IFELSE.
4703 2003-10-15 Paul Eggert <eggert@twinsun.com>
4705 * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug in
4706 pdksh 5.2.14. Bug reported by Ralf Corsepius.
4707 * doc/autoconf.texi (Shellology): Mention the Korn shell and pdksh.
4708 Mention /usr/dt/bin/dtksh on Solaris.
4709 (Shell Substitutions): Warn about $((...)).
4710 (Parentheses): New section.
4712 2003-10-15 Kevin Ryde <user42@zip.com.au>
4714 * doc/autoconf.texi (Function Portability): Add @prindex for exit.
4715 Add putenv and unsetenv. Add sysconf _SC_PAGE_SIZE.
4717 2003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
4719 * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork
4722 2003-10-11 Steven G. Johnson <stevenj@alum.mit.edu>
4724 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official
4725 name for the GNU Fortran 95+ compiler, 'gfortran', not 'g95'.
4727 2003-10-10 Andreas Schwab <schwab@suse.de>
4729 * bin/autoheader.in: Avoid empty first line in --version and
4731 * bin/ifnames.in: Likewise.
4733 2003-10-09 Paul Eggert <eggert@twinsun.com>
4735 * lib/Autom4te/XFile.pm: Don't assume -j is solo.
4736 Issue a more-informative diagnostic.
4737 Problems reported by Eric Sunshine.
4739 2003-10-08 Steven G. Johnson <stevenj@alum.mit.edu>
4741 * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Omit quoted
4742 -mGLOB_options_string stuff for Intel ifc, which can cause
4743 _AC_FC_LIBRARY_LDFLAGS to fail. Use (faster) case for
4744 pattern-matching instead of grep.
4746 2003-10-08 Steven G. Johnson <stevenj@alum.mit.edu>
4748 * doc/autoconf.texi: Document new FC Fortran macros.
4750 2003-10-08 Gary V. Vaughan <gary@gnu.org>
4752 * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Stub out a macro
4753 that future autopoint/aclocal/automake/autoreconf will be able
4754 to trace to find where to install local m4 macros.
4755 * doc/autoconf.texi (Input): Document it.
4758 2003-10-06 Gary V. Vaughan <gary@gnu.org>
4760 * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add
4761 -lcrtbegin.o to list of ignored flags and fix underquoting of
4764 2003-10-04 Steven G. Johnson <stevenj@ab-initio.mit.edu>
4766 * lib/autoconf/fortran.m4 (_AC_PROG_FC_G): Use language-specific
4767 cache variable instead of $G77 to decide whether to include -O2,
4768 since $G77 is specific to Fortran 77.
4770 2003-10-03 Steven G. Johnson <stevenj@alum.mit.edu>
4772 * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Support Absoft "-f
4773 free" flag. Re-order flags tested into rough order of popularity.
4775 2003-10-03 Steven G. Johnson <stevenj@alum.mit.edu>
4777 * lib/autoconf/fortran.m4 (AC_PROG_FC): Reverse the order of the
4778 arguments so that it can be used with syntax identical to
4779 AC_PROG_F77, and so that we can more easily decide to
4780 remove/deprecate the DIALECT optional argument in the future if it
4782 (AC_FC_FREEFORM): Exit 77 upon failure to fix test suite for
4783 non-freeform-supporting compilers. Document freeform flags.
4785 2003-10-03 Akim Demaille <akim@epita.fr>
4787 * configure.ac: Look for emacs, not macs.
4788 Reported by Eric Sunshine.
4790 2003-10-03 Akim Demaille <akim@epita.fr>
4792 * lib/autom4te.in (Autoreconf-preselections): Trace AC_CONFIG_AUX_DIR.
4793 * bin/autoreconf.in (autoreconf_current_directory): Create the
4794 AUX_DIR if needed, for sake of automake --add-missing etc.
4795 Suggested by Alexandre Duret-Lutz.
4797 2003-10-03 Akim Demaille <akim@epita.fr>
4799 * configure.ac: Quotation and formatting changes.
4800 (EMACS): Don't set it if it is not recent enough to support
4804 2003-10-02 Akim Demaille <akim@epita.fr>
4806 * bin/ifnames.in (&scan_file): Skip C++ comments.
4809 2003-10-01 Pavel Roskin <proski@gnu.org>
4811 * doc/autoconf.texi (Particular Structure Checks):
4812 Fix misspelling of HAVE_STRUCT_STAT_ST_BLOCKS.
4814 2003-10-01 Akim Demaille <akim@epita.fr>
4818 2003-09-30 Paul Eggert <eggert@twinsun.com>
4820 * lib/Autom4te/XFile.pm: Use Errno.
4821 (lock): Ignore ENOLCK errors. Problem reported Andreas Schwab in
4822 <http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.
4824 2003-09-30 Akim Demaille <akim@epita.fr>
4826 * config/announce-gen (&print_news_deltas): Extracted from...
4827 (&print_changelog_deltas): here.
4828 (&news_file): Rename as...
4831 2003-09-30 Nicolas Joly <njoly@pasteur.fr>
4833 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Remove files which might
4834 have been created when invoking the compiler.
4835 * tests/fortran.at (GNU Fortran 77): Quote $G77.
4837 2003-09-29 Akim Demaille <akim@epita.fr>
4841 * config/mkinstalldirs: Upgrade.
4843 2003-09-28 Paul Eggert <eggert@twinsun.com>
4845 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set DUALCASE=1, for MKS sh.
4846 Problem reported by Lars J. Aas in
4847 <http://mail.gnu.org/archive/html/autoconf/2003-07/msg00042.html>.
4848 (_AS_MKDIR_P_PREPARE): Change "rm -fr ./-p" to the more-conservative
4849 "test -d ./-p && rmdir ./-p". Suggested by Andreas Schwab in:
4850 http://mail.gnu.org/archive/html/autoconf-patches/2003-09/msg00039.html
4852 2003-09-26 Akim Demaille <akim@epita.fr>
4854 * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Make sure the
4855 directory for AC_CONFIG_COMMANDS' first argument exists.
4856 This makes valid the invocation of _AC_SRCPATH that follows.
4857 Reported by Eric Sunshine.
4858 * doc/autoconf.texi (Configuration Commands): Adjust.
4860 2003-09-26 Akim Demaille <akim@epita.fr>
4862 * bin/autoscan.in (Autom4te::FileUtils): Use it for find_file.
4863 Reported by Ralf Corsepius.
4865 2003-09-26 Akim Demaille <akim@epita.fr>
4867 * lib/autoconf/general.m4 (AC_HELP_STRING): Don't overquote the
4869 Actually, use AU_ALIAS.
4872 2003-09-26 Paul Eggert <eggert@twinsun.com>
4874 * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): If mkdir -p . fails,
4875 rm -fr ./-p to remove junk left behind on NextStep and OpenStep.
4876 Problem reported by Eric Sunshine in:
4877 http://mail.gnu.org/archive/html/autoconf-patches/2002-12/msg00014.html
4879 2003-09-26 Akim Demaille <akim@epita.fr>
4881 The test suite are sometimes assigning timings incorrectly.
4882 Reported by Henk Krus.
4883 Diagnosed by Nicolas Joly.
4885 * lib/autotest/general.m4 (AT_CLEANUP): Rename AT_help as
4887 Instead of making AT_help a sequence of assignments to grow
4888 $at_help_all, just make AT_help_all be the growing contents of
4889 $at_help_all, and make a single assignment in...
4891 (at_times_skip): Flip the meaning and rename as...
4893 (AT_INIT): When summarizing the test that ran, remove
4894 $at_times_file after use, and check it is present before trying to
4897 2003-09-25 Akim Demaille <akim@epita.fr>
4901 * bin/Makefile.am (edit): Handle '@configure_input@'.
4902 (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate)
4903 (ifnames): chmod -w.
4904 * tests/wrapper.as (AUTOCONF, AUTOM4TE, ): Point to tests/
4905 executables, not bin/ executables! Otherwise all the magic needed
4906 to find non installed files is turned off. This caused a failure
4907 of test 40 and 41 that ran aclocal 1.8 which in turn ran autom4te
4908 as found in its environment (sent by tests/autoreconf): pointing
4909 to bin/autom4te that could not find its files.
4910 * tests/mktests.sh: Force the replacement of generated files, for
4911 the sake of "mv" program that are interactive when overwriting a
4913 * config/install-sh: Upgrade from CVS Automake.
4915 2003-09-23 Paul Eggert <eggert@twinsun.com>
4917 * doc/autoconf.texi (Limitations of Builtins): Document test -h
4918 versus test -L issues.
4920 2003-09-23 Daniel Jacobowitz <drow@mvista.com> and
4921 Paul Eggert <eggert@twinsun.com>
4923 Trivial change to support GCC's configuration procedure.
4924 * lib/autoconf/c.m4 (AC_PROG_CPP_WERROR): New macro.
4925 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Don't warn
4926 about inconsistency if the preprocessor is set to give errors for
4928 * doc/autoconf.texi (C Compiler Characteristics): Document this.
4930 2003-09-13 Alexandre Duret-Lutz <adl@gnu.org>
4932 * Makefile.am (autom4te-update, autom4te_files): Fetch Struct.pm
4933 and XFile.pm from Automake.
4934 * lib/Autom4te/XFile.pm: Update from Automake.
4936 2003-09-12 Akim Demaille <akim@epita.fr>
4940 2003-09-12 Akim Demaille <akim@epita.fr>
4942 * config/config.guess, config/config.sub, config/missing,
4943 * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm: Update
4946 2003-09-12 Akim Demaille <akim@epita.fr>
4948 * doc/autoconf.texi (Header Portability): Promote linux/types.h,
4951 2003-09-11 Akim Demaille <akim@epita.fr>
4953 * doc/autoconf.texi (Header Portability): linux/random.h.
4954 From Peter Hendrickson.
4956 2003-09-10 Akim Demaille <akim@epita.fr>
4958 * tests/mktests.sh (au_exclude_egrep): Make it harder to be
4959 willing to edit the output files.
4961 2003-09-10 Akim Demaille <akim@epita.fr>
4963 * tests/fortran.at (GNU Fortran 77): Also exercise AC_FC_SRCEXT
4965 * tests/mktests.sh: Skip AC_FC_SRCEXT.
4966 * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Likewise.
4968 2003-09-09 Akim Demaille <akim@epita.fr>
4970 * lib/Autom4te/FileUtils.pm (&update_file): s/cannot not/cannot/g.
4971 Reported by Gary Vaughan.
4972 * bin/autom4te.in (handle_m4): Likewise.
4974 2003-09-09 Akim Demaille <akim@epita.fr>
4976 * lib/Autom4te/FileUtils.pm (&update_file): Be sure not to leave
4979 2003-09-07 Paul Eggert <eggert@twinsun.com>
4981 * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS):
4982 Improve the accuracy of the wording about obsolescence.
4983 From a suggestion by Ian Lance Taylor in
4984 <http://mail.gnu.org/archive/html/autoconf/2003-09/msg00044.html>.
4986 2003-09-05 Paul Eggert <eggert@twinsun.com>
4988 * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Try -ffree-form too,
4989 for the benefit of g77 3.2. Fix suggested by Steven G. Johnson.
4991 2003-09-04 Akim Demaille <akim@epita.fr>
4993 * tests/mktests.sh (ac_exclude_list): Fix the filtering of
4996 2003-09-04 Akim Demaille <akim@epita.fr>
4998 * bin/autom4te.in: Use &fatal where more appropriate than &error.
4999 (freeze): When exiting, use $exit_code.
5000 * lib/autoconf/fortran.m4: Comment changes.
5002 2003-09-04 Akim Demaille <akim@epita.fr>
5004 * tests/mktests.sh (ac_exclude_list): Add AC_FC_FUNC.
5006 2003-09-02 Steven G. Johnson <stevenj@alum.mit.edu>
5008 Add support for newer Fortran dialects. The F77 interface is
5009 unchanged, and continues to support Fortran 77. New FC macros
5010 correspond to all the old F77 macros, with output variables FC,
5011 FCFLAGS, and FCLIBS. AC_PROG_FC defaults to picking the newest
5012 available dialect, but older dialects can be specified. There are
5013 new macros AC_FC_SRCEXT to set the source extension, and
5014 AC_FC_FREEFORM to accept free-form source files.
5016 * lib/autoconf/c.m4 (_AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++)):
5018 (AC_LANG_PROGRAM(C)): Invoke _AC_LANG_PROGRAM_C_FC_HOOKS if defined.
5019 * lib/autoconf/fortran.m4 (AC_LANG(Fortran), _AC_FORTRAN_ASSERT,
5020 _AC_LANG_ABBREV(Fortran), _AC_LANG_PREFIX(Fortran 77),
5021 _AC_LANG_PREFIX(Fortran), _AC_FC, AC_LANG_SOURCE(Fortran),
5022 AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran),
5023 AC_LANG_PREPROC(Fortran), AC_LANG_COMPILER(Fortran),
5024 _AC_FC_DIALECT_YEAR, _AC_F95_FC, _AC_F90_FC, _AC_F77_FC,
5025 _AC_PROG_FC, AC_PROG_FC, _AC_PROG_FC_G, _AC_PROG_FC_C_O,
5026 AC_PROG_FC_C_O, _AC_PROG_FC_V_OUTPUT, _AC_PROG_FC_V,
5027 _AC_FC_LIBRARY_LDFLAGS, AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN,
5028 AC_FC_DUMMY_MAIN, _AC_FC_MAIN, AC_FC_MAIN, __AC_FC_NAME_MANGLING,
5029 _AC_FC_WRAPPERS, AC_FC_WRAPPERS, _AC_FC_FUNC, AC_FC_FUNC,
5030 AC_FC_SRCEXT, AC_FC_FREEFORM):
5032 (AC_PROG_F77, AC_PROG_F77_C_O, AC_F77_LIBRARY_LDFLAGS,
5033 AC_F77_DUMMY_MAIN, AC_F77_MAIN, _AC_F77_NAME_MANGLING,
5034 AC_F77_NAME_MANGLING, AC_F77_WRAPPERS, AC_F77_FUNC):
5035 Rewrite in terms of the above.
5036 (_AC_PROG_F77_G, _AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V): Remove.
5037 * lib/autoconf/lang.m4 (_AC_LANG_PREFIX): New macro.
5038 * tests/acfortran.at: Test AC_FC_FREEFORM, AC_FC_FUNC,
5039 AC_FC_MAIN, AC_FC_SRCEXT, AC_FC_WRAPPERS, AC_PROG_FC_C_O.
5041 2003-09-02 Paul Eggert <eggert@twinsun.com>
5043 * doc/autoconf.texi (Limitations of Usual Tools, Limitations of Make):
5044 Document problems with timestamp resolution that 'make', 'cp -p', and
5047 2003-08-27 Akim Demaille <akim@epita.fr>
5049 * tests/m4sugar.at (cross_warning): Make sure to enable the
5050 output, so that we can track spurious m4sugar output.
5051 * tests/local.at: Require 2.57.
5052 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't m4_default the arguments that
5053 are defaulted by AT_CHECK anyway.
5054 Use AT_CHECK_AUTOM4TE.
5055 * lib/m4sugar/m4sugar.m4: There should be no output at all: add a
5058 2003-08-27 Akim Demaille <akim@epita.fr>
5060 * bin/autoheader.in: Issue the "Using auxiliary..." message only
5061 when -Wobsolete is set.
5062 Set it on by default.
5063 Suggested by Klee Dienes.
5065 2003-08-27 Akim Demaille <akim@epita.fr>
5067 * doc/autoconf.texi (AC_FUNC_FSEEKO, AC_SYS_LARGEFILE): More
5071 2003-08-26 Akim Demaille <akim@epita.fr>
5073 * doc/autoconf.texi (Output): Make clear that one can run code
5076 2003-08-25 Akim Demaille <akim@epita.fr>
5078 * config/announce-gen, GNUmakefile, Makefile.maint: Update from
5081 2003-08-25 Alexandre Duret-Lutz <adl@gnu.org>
5083 * bin/autoreconf.in (parse_args): Do not pass --no-force to
5084 Automake versions prior to 1.8.
5086 2003-08-25 Akim Demaille <akim@epita.fr>
5088 * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
5091 2003-08-24 Akim Demaille <akim@epita.fr>
5093 * configure.ac: Bump to 2.57c.
5095 2003-08-22 Akim Demaille <akim@epita.fr>
5099 * Makefile.cfg (local-checks-to-skip): New.
5100 * Makefile.maint (local-check): Rename as...
5101 (local-checks-available): this.
5104 * Makefile.am (EXTRA_DIST): Add Makefile.cfg.
5105 * configure.ac: Require Automake 1.7.6.
5107 2003-08-22 Akim Demaille <akim@epita.fr>
5109 Output stack traces in warnings.
5111 * lib/m4sugar/m4sugar.m4 (_m4_warn): New.
5112 Replace the former...
5113 (m4_warn): Pass the call stack to _m4_warn.
5114 * bin/autom4te.in: Adjust to output the call stack.
5115 * tests/m4sugar.at (m4@&t@_warn): Adjust.
5117 2003-08-22 Akim Demaille <akim@epita.fr>
5119 * lib/Autom4te/Request.pm, lib/Autom4te/C4che.pm: New.
5120 * bin/autom4te.in: Adjust.
5122 2003-08-21 Akim Demaille <akim@epita.fr>
5124 * lib/Autom4te/General.pm (&file_name_is_absolute): Remove.
5126 (&getopt): Adjust the note and verb channels, depending upon
5128 * bin/autoheader.in, bin/autom4te.in, bin/autoscan.in,
5129 * bin/autoupdate.in: Adjust.
5130 Use &verb, not &verbose.
5132 2003-08-21 Akim Demaille <akim@epita.fr>
5134 * bin/autoheader.in (&parse_args): Use &parse_warnings and
5136 ($help): Use Autom4te::ChannelDefs::usage.
5137 * bin/autoscan.in: Use Autom4te::ChannelDefs.
5138 * lib/Autom4te/General.pm: Don't export error: you don't own it.
5140 2003-08-21 Akim Demaille <akim@epita.fr>
5142 First stab at preserving warnings between calls to autom4te,
5143 including when the cache is used.
5145 There are still several issues: (i) there are too many runs of m4
5146 (one for include, one for warnings, and some more), (ii) warnings
5147 spreading on several lines are not handled gracefully, (iii) the
5148 code meant to have the call stack display for errors does not work
5149 (its handling should move from m4 to autom4te).
5151 * bin/autom4te.in Autom4te::Channels, Autom4te::ChannelDefs):
5153 (@preselect): Add m4_warn.
5154 ($exit_status): Remove, use $exit_code.
5155 ($help): Use Autom4te::ChannelDefs::usage.
5156 (&handle_m4): No longer define the m4_warnings.
5157 At each run, extract and report the warnings.
5158 Always cache the result, including if the exit status is on
5159 failure, since if nothing changes, we should result in the same
5160 failure, hence we can use the cache.
5161 * lib/m4sugar/m4sugar.m4 (m4_warning_ifelse, _m4_warning_ifelse)
5162 (_m4_warning_error_ifelse, __m4_warning_error_ifelse, _m4_warn):
5164 (m4_warn): Redefine as a do-nothing: it is its invocation that
5165 matters, as warnings are now reported via traces.
5166 * lib/autoconf/general.m4 (AC_DIAGNOSE): Don't make it a copy of
5167 the contents of m4_warn: make it _call_ m4_warn, so that tracing
5168 the latter reveals calls to the former.
5172 * tests/m4sugar.at (m4@&t@_warn): Use existing warning categories.
5174 2003-08-21 Akim Demaille <akim@epita.fr>
5176 * bin/autoreconf.pm (Autom4te::Channels, Autom4te::ChannelDefs):
5179 2003-08-21 Akim Demaille <akim@epita.fr>
5181 * lib/Autom4te/FileUtils.pm (&find_file): Walk the @include in
5183 * lib/Autom4te/ChannelDefs.pm: Doc typos.
5184 (&parse_warnings): Accept a list of warning requests.
5185 (&usage): Return a string, not a side effect.
5186 (cross): New warning category.
5188 2003-08-21 Akim Demaille <akim@epita.fr>
5190 * lib/Autom4te/Configure_ac.pm (&find_configure_ac)
5191 (&require_configure_ac): Accept an optional directory argument.
5192 ($configure_ac): Remove.
5193 * lib/Autom4te/General.pm (&find_configure_ac, &canonfile)
5195 * bin/autoheader.in, bin/autoreconf.in, bin/autoupdate.in,
5196 * bin/autoscan.in: Adjust.
5198 2003-08-20 Akim Demaille <akim@epita.fr>
5200 * bin/autoheader.in: Remove duplicate 'use Autom4te::FileUtils'.
5201 Reported by Alexandre Duret-Lutz.
5203 2003-08-20 Akim Demaille <akim@epita.fr>
5205 * bin/autoupdate.in, bin/autoheader.in, bin/autoreconf.in,
5206 * bin/autom4te: Adjust.
5207 In particular, be Autoconf tools are really silent when properly
5208 working, bind the verbosity of the 'note' channel to $verbose.
5209 * lib/Autom4te/General.pm (&find_file, &mtime, &update_file)
5210 (&xsystem, &contents): Remove, since they are exported by...
5211 * lib/Autom4te/FileUtils.pm: this.
5213 * lib/Autom4te/General.pm (&up_to_date_p): Move to...
5214 * lib/Autom4te/FileUtils.pm: here.
5216 2003-08-20 Akim Demaille <akim@epita.fr>
5218 * lib/Autom4te/Channels.pm, lib/Autom4te/ChannelDefs.pm
5219 * lib/Autom4te/Configure_ac.pm, lib/Autom4te/FileUtils.pm: New,
5222 2003-08-20 Akim Demaille <akim@epita.fr>
5224 * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
5225 (autom4te-update): New.
5226 * Makefile.cfg (update): Bind autom4te-update.
5228 2003-08-19 Derek Price <derek@ximbiot.com>
5230 * lib/autotest/general.m4: Comment various HELP_* diversions.
5231 (PARSE_ARGS_BEGIN): New section for option parsing related
5233 (AT_ARG_OPTION,AT_ARG_OPTION_ARG,_AT_ARG_OPTION): New macros to define
5234 package specific options and associated help.
5236 2003-08-19 Akim Demaille <akim@epita.fr>
5238 * config/announce-gen, Makefile.cfg: New.
5239 * Makefile.am: Adjust.
5240 * GNUmakefile, Makefile.maint: Update from CVS Coreutils.
5242 2003-08-19 Alexandre Duret-Lutz <adl@gnu.org>
5244 * lib/autom4te.in (Automake-preselections): Preselect
5245 AC_CONFIG_LIBOBJ_DIR, AC_CONFIG_LINKS, m4_include,
5248 2003-08-19 Alexandre Duret-Lutz <adl@gnu.org>
5250 * lib/autom4te.in (Autoconf): Move all args except aclocal.m4? into ...
5251 (Autoconf-without-aclocal-m4): ... this new language.
5252 * doc/autoconf.texi (autom4te Invocation): Mention
5253 Autoconf-without-aclocal-m4.
5255 2003-08-18 Derek Price <derek@ximbiot.com>
5257 * doc/autoconf.texi (Writing testsuite.at): Document RUN-IF-FAIL &
5258 RUN-IF-PASS optional arguments.
5260 2003-08-18 Derek Price <derek@ximbiot.com>
5262 * doc/autoconf.texi (Programming in M4sh): Add doc for AS_IF.
5264 2003-08-16 Derek Price <derek@ximbiot.com>
5266 * doc/autoconf.texi (Writing testsuite.at): Document defaults for
5267 STDOUT & STDERR arguments.
5269 2003-08-14 Derek Price <derek@ximbiot.com>
5271 * lib/autotestgeneral.m4 (AT_INIT): Reformat test summary line to print
5272 DESCRIPTION rather than FILE and LINE. Shorten result to fit in new,
5273 shorter column three. Add DESCRIPTION to log file content.
5275 2003-08-13 Derek Price <derek@ximbiot.com>
5277 * lib/autotest/general.m4 (AT_INIT): Correct typo in final status
5280 2003-08-12 Derek Price <derek@ximbiot.com>
5282 * lib/autotest/general.m4 (AT_CHECK): Use new _AT_CHECK API.
5283 (AT_CHECK_NOESCAPE): Move core functionality to...
5284 (_AT_CHECK): ...this new macro.
5286 2003-08-07 Derek Price <derek@ximbiot.com>
5288 * lib/autotest/general.m4 (AT_CHECK): Move core functionality...
5289 (AT_CHECK_NOESCAPE): ...to this new macro.
5291 2003-07-31 Paul Eggert <eggert@twinsun.com>
5293 * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug
5294 in Bash 2.01. Problem reported by Brian Gough in
5295 <http://mail.gnu.org/archive/html/bug-autoconf/2003-07/msg00106.html>.
5297 2003-07-25 John W. Eaton <jwe@bevo.che.wisc.edu>
5299 * lib/autoconf/fortran.m4 (AC_F77_LIBRARY_LDFLAGS): Also ignore
5300 -lcrt1.o, for OS X. (trivial change)
5302 2003-07-07 Paul Eggert <eggert@twinsun.com>
5304 * lib/autoconf/c.m4 (AC_C_INLINE): Wrap the '#define inline ...'
5305 inside '#ifndef __cplusplus'. Problem reported by
5308 2003-07-06 Bill Clarke <llib@computer.org>
5310 * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Cast pointer to
5311 'long', not 'int', for benefit of Sun's recent C++ compilers
5312 (trivial change). See:
5313 http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00007.html
5314 (This really should be 'intptr_t', not 'long', but that would
5317 2003-06-25 Akim Demaille <akim@epita.fr>
5319 * lib/Makefile.am (autom4te.cfg): Make it read only.
5320 Depend on Makefile since it contains substitutions.
5322 * lib/autom4te.in (args): Add local.at? for Autotest args.
5323 This change was made on autom4te.cfg which is generated.
5324 Reported by Raja R. Harinath.
5326 2003-06-25 Akim Demaille <akim@epita.fr>
5328 * doc/autoconf.texi (Header Portability): sys/mount.h.
5329 From Gareth McCaughan.
5331 2003-06-23 Akim Demaille <akim@epita.fr>
5333 * lib/autotest/general.m4 (AT_INIT): Report a single config.log,
5334 not all of them. This fixes 1. the fact that when testing
5335 Autoconf there are many many config.log, 2. the incorrect use of
5336 top_srcdir to find config.log.
5337 Don't mix the detailed output of failed test with the summary of
5338 failures. Rather, append detailed log afterwards.
5340 2003-06-23 Akim Demaille <akim@epita.fr>
5342 * tests/local.at (AT_CHECK_CONFIGURE): Adjust to the verbose being
5343 always run: output config.log on $at_group_log.
5345 2003-06-23 Akim Demaille <akim@epita.fr>
5347 * tests/torture.at (#define header templates): Don't use quotes in
5348 C++ comments as it puzzles Emacs' sh font-lock-mode.
5350 2003-06-23 Akim Demaille <akim@epita.fr>
5352 * tests/mktests.sh (au_exclude_egrep): Fix output copyright notice.
5353 * lib/autom4te.cfg (args): Add local.at? for Autotest args.
5354 * tests/atspecific.m4: Rename as...
5355 * tests/local.at: This.
5356 * tests/suite.at: Move the globals into...
5357 * tests/local.at: here.
5358 * tests/Makefile.am: Adjust.
5359 * doc/autoconf.texi (testsuite Scripts): Adjust.
5361 2003-06-21 Kevin Ryde <user42@zip.com.au>
5363 * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Extend test program to get an
5364 error from OSF 4.0 Compaq cc in its default almost-ANSI mode, thereby
5365 ensuring we add -std1 for full-ANSI.
5367 * doc/autoconf.texi (hdrindex): New macro.
5368 Add index entries for portability of various standard header files.
5370 2003-06-20 Akim Demaille <akim@epita.fr>
5372 * configure.ac: Bump to 2.57b.
5374 2003-06-20 Akim Demaille <akim@epita.fr>
5378 2003-06-20 Akim Demaille <akim@epita.fr>
5380 * bin/autom4te.in: Don't rely on $HOME being defined.
5381 Reported by Marc Espie as PR/233.
5383 2003-06-20 Akim Demaille <akim@epita.fr>
5385 * lib/autotest/general.m4: Use at_times_file only if used.
5388 2003-06-20 Akim Demaille <akim@epita.fr>
5390 * config/config.guess, config/config.sub, config/elisp-comp,
5391 * config/install-sh, config/mkinstalldirs, doc/standards.texi:
5392 Update from masters.
5394 2003-06-11 Paolo Bonzini <bonzini@gnu.org>
5396 * doc/autoconf.texi (Writing testsuite.at): Document AT_XFAIL_IF
5397 * lib/autotest/general.m4 (AT_XFAIL_IF): New macro.
5398 (TEST_SCRIPT): New diversion.
5399 (AT_SETUP): Divert output to TEST_SCRIPT and move some code...
5400 (AT_CLEANUP): ...to here. Undivert TEST_SCRIPT.
5401 (AT_INIT): Support for expected failures.
5403 2003-06-02 Akim Demaille <akim@epita.fr>
5405 * bin/autom4te.in, bin/autoscan.in, bin/autoheader.in: White space
5407 * lib/Autom4te/General.pm (&backname): Remove, no longer used by
5408 Autoconf nor Automake.
5409 (&contents): New, from Automake.
5412 2003-05-28 Paul Eggert <eggert@twinsun.com>
5414 * NEWS, doc/autoconf.texi (Particular Functions),
5415 lib/autoconf/functions.m4 (AC_FUNC_MKTIME): Check that mktime
5416 is the inverse of localtime.
5418 2003-05-25 Alexandre Duret-Lutz <adl@gnu.org>
5420 * lib/Autom4te/General.pm (END): Print diagnostics to STDERR.
5421 (handle_exec_errors): New function. Work around $! being
5422 altered by WEXITSTATUS.
5423 (xqx, xsystem): Use handle_exec_errors.
5425 2003-05-23 Alexandre Duret-Lutz <adl@gnu.org>
5427 * lib/Autom4te/General.pm (END): Rewrite exit code processing.
5428 Do not call `_exit()', simply modify `$?'.
5429 (xsystem): Reset $! before running system, and check it afterward.
5430 * tests/tools.at (autoupdating AC_PREREQ): Expect exit status
5431 63 for version mismatches.
5433 2003-05-23 Akim Demaille <akim@epita.fr>
5435 * lib/autoconf/status.m4: Prefer "TAB-SP" to "SP-TAB", because of
5436 Emacs' dangerous whitespace.el behavior (smashing "useless" spaces in
5437 the middle of a line).
5438 * lib/m4sugar/m4sugar.m4: Likewise.
5439 Remove useless spaces in comments.
5441 2003-05-23 Akim Demaille <akim@epita.fr>
5443 * lib/m4sugar/m4sugar.m4 (m4_version_prereq): Failure causes an
5444 exit 63, so that we (or Automake's "missing") can tell the
5445 difference with a plain failure.
5446 * doc/autoconf.texi (Notices): Adjust.
5448 2003-05-23 Akim Demaille <akim@epita.fr>
5450 * Makefile.am, bin/Makefile.am, config/Makefile.am,
5451 * doc/Makefile.am, lib/autoconf/Makefile.am, tests/Makefile.am:
5452 White spaces cleanup.
5454 2003-05-22 Jim Meyering <jim@meyering.net>
5455 Paul Eggert <eggert@twinsun.com>
5457 * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
5458 Remove `#include <stdlib.h>' from the list; we should never
5459 make confdefs.h include <stdlib.h> or <cstdlib>, because the
5460 resulting namespace pollution would cause other tests to fail.
5461 Configure scripts run with some older versions of g++ and HP's
5462 aCC would fail due to such an #include. Problems reported by
5463 Matthew Mueller in <http://bugs.debian.org/120704> and by
5465 <http://mail.gnu.org/archive/html/autoconf/2003-05/msg00063.html>.
5466 In the test, use the test declaration before including <stdlib.h>,
5467 as that's closer to how it'll be used.
5469 2003-05-23 Akim Demaille <akim@epita.fr>
5471 * doc/autoconf.texi (Header Portability): ucred.h.
5474 2003-05-22 Paolo Bonzini <bonzini@gnu.org>
5476 Overhaul Autotest's logging: generate separate log files
5477 in testsuite.dir/NNN/testsuite.log, and append them to
5478 testsuite.log instead of re-running the test verbosely.
5480 * lib/autotest/general.m4 (AT_INIT): Use a single redirected
5481 file descriptor, write 0 to at_status_file instead of setting
5482 at_status=0, initialize some new variables (at_status_file,
5483 at_group_log, at_suite_log, at_tee_pipe). Remove the cruft
5484 to rerun the tests, instead append the at_group_log to the
5485 at_suite_log when a test fails.
5486 (AT_SETUP): pipe the test case's output into at_tee_pipe,
5487 with the AS_MESSAGE_LOG_FD redirected to stdout.
5488 (AT_CLEANUP): save the output status in $at_status_file
5489 and restore it, redirect the AS_MESSAGE_LOG_FD back to
5491 (AT_CHECK): since tests are run with a redirected stdout,
5492 and used to be re-run in verbose mode, turn some $at_verbose
5493 into echo, and don't redirect the output of testing stdout
5496 * lib/autotest/autoconf.texi (testsuite Scripts): Update
5497 the name of the debugging directory and information about
5500 2003-05-22 Paolo Bonzini <bonzini@gnu.org>
5502 * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd
5505 2003-05-22 Akim Demaille <akim@epita.fr>
5507 * lib/autoconf/autotest.m4, lib/autoconf/autoupdate.m4
5508 * lib/autoconf/fortran.m4 lib/autoconf/general.m4
5509 * lib/autoconf/headers.m4 lib/autoconf/oldnames.m4
5510 * lib/autoconf/status.m4: Fix and adjust copyright notices.
5512 2003-05-22 Akim Demaille <akim@epita.fr>
5514 * aclocal.m4, bin/autoconf.as, lib/autoconf/autoconf.m4,
5515 * lib/autoconf/autoheader.m4, lib/autoconf/autoupdate.m4,
5516 * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
5517 * lib/autoconf/general.m4, lib/autoconf/headers.m4,
5518 * lib/autoconf/lang.m4, lib/autoconf/libs.m4,
5519 * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
5520 * lib/autoconf/status.m4, lib/autoconf/types.m4,
5521 * lib/autotest/general.m4, lib/m4sugar/m4sugar.m4,
5522 * tests/atspecific.m4, tests/base.at, tests/compile.at,
5523 * tests/foreign.at, tests/m4sh.at, tests/semantics.at,
5524 * tests/tools.at, tests/torture.at:
5525 Whitespace clean up.
5526 Suggested by Jim Meyering.
5528 2003-05-22 Akim Demaille <akim@epita.fr>
5530 * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Restore smashed
5531 ' \t' as '\t ' so that Emacs' whitespace.el keep it.
5532 Reported by Jim Meyering.
5534 2003-05-22 Akim Demaille <akim@epita.fr>
5536 * doc/autoconf.texi: Replace AC_HELP_STRING AS_HELP_STRING.
5537 Add AC_HELP_STRING to the obsolete macros section.
5539 Use '@.' for sentences that ended in a capital letter.
5542 2003-05-22 Akim Demaille <akim@epita.fr>
5544 * config/config.guess, config/config.sub, config/elisp-comp,
5545 * config/install-sh, config/mdate-sh, config/mkinstalldirs,
5546 * config/texinfo.tex, doc/standards.texi: Update from masters.
5548 2003-05-21 Paolo Bonzini <bonzini@gnu.org>
5550 * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Escape the RHS before passing
5553 2003-05-21 Akim Demaille <akim@epita.fr>
5555 * bin/autoupdate.in ($m4): Fix quotation.
5556 Reported by Martin Mokrejs.
5558 2003-05-19 Paul Eggert <eggert@twinsun.com>
5560 * ChangeLog, ChangeLog.2, THANKS, lib/m4sugar/m4sugar.m4:
5561 Remove non-ASCII characters.
5563 2003-05-18 Paolo Bonzini <bonzini@gnu.org>
5565 * tests/semantics.at (AC_SEARCH_LIBS): New test.
5566 * tests/semantics.at (AC_CHECK_HEADERS_OLD,
5567 AC_CHECK_HEADERS_NEW): New tests.
5569 2003-05-17 Akim Demaille <akim@epita.fr>
5571 * lib/autoconf/functions.m4: Use the default includes so that
5572 memcmp be declared before being tested.
5573 Reported by Sander Niemeijer.
5574 (AC_FUNC_ERROR_AT_LINE, AC_FUNC_GETGROUPS, AC_FUNC_STRNLEN): Likewise.
5575 * doc/autoconf.texi (Default Includes): Document
5576 AC_INCLUDES_DEFAULT.
5578 2003-05-17 Akim Demaille <akim@epita.fr>
5580 * lib/autoconf/specific.m4: Include signal.h and unistd.h.
5581 * doc/autoconf.texi (Obsolete Macros): Adjust.
5582 Reported by Werner LEMBERG and Debian Bug 190886.
5584 2003-05-16 Akim Demaille <akim@epita.fr>
5586 * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): s/FOO/as_foo/ to avoid
5587 user name space clashes.
5588 Reported by Bruno Haible.
5590 2003-05-16 Akim Demaille <akim@epita.fr>
5592 * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
5593 * bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make
5594 them uniform, and more robust to Perl special characters.
5595 Reported by Martin Mokrejs.
5597 2003-05-14 Akim Demaille <akim@epita.fr>
5599 * tests/foreign.at (Libtool): Skip all Libtools pre 1.4.
5601 2003-05-14 Akim Demaille <akim@epita.fr>
5603 * doc/autoconf.texi (Header Portability): X11/extensions/scrnsaver.h,
5606 2003-05-12 Akim Demaille <akim@epita.fr>
5608 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Improve the
5610 From Matthias Andree.
5612 2003-05-07 Alexandre Duret-Lutz <adl@gnu.org>
5614 * lib/Autom4te/XFile.pm (lock, truncate): Do not pass @_ to flock
5617 2003-05-06 Akim Demaille <akim@epita.fr>
5619 Don't try to be smart with aclocal 1.8+ because (i) aclocal no
5620 longer updates aclocal.m4 if useless, (ii) if a file m4_included
5621 by aclocal.m4 is changed it might require the importing of another
5622 m4 extension file, i.e., aclocal must be run.
5624 * bin/autoreconf.in (&run_aclocal, $aclocal_supports_force): New.
5625 (&parse_args): Use --force with aclocal if required and supported.
5626 (&autoreconf_current_directory): Use &run_aclocal.
5628 2003-05-06 Akim Demaille <akim@epita.fr>
5630 Lock autom4te's cache.
5632 * lib/Autom4te/XFile.pm ($me, &name, &lock, &truncate, &seek): New.
5633 * bin/autom4te.in (&Request::save, &Request::load): Use an IO::File
5634 argument instead of a file name, so that the request file remains
5635 open during the whole autom4te run.
5636 ($icache_file): New.
5637 (&freeze): Lock the $icache_file.
5639 2003-04-29 Derek Price <derek@ximbiot.com>
5641 * lib/autotest/general.m4 (AT_KEYWORDS): Don't use a comma as the
5642 seperator with m4_append_uniq(). It doesn't work.
5643 (AT_CLEANUP): Add `;' to end of at_help_all.
5644 (AT_INIT): Allow --keywords to be specified more than once. When
5645 grepping $at_help_all for keywords, use the field and keyword
5646 seperators to ensure a complete keyword match. Alter at_prev handling
5647 to support the new --keywords behavior.
5649 2003-04-27 Karl Berry <karl@freefriends.org>
5651 * doc/autoconf.texi: Make the dir entries in the autoconf manual
5652 align better with others. I also made some of the individual
5653 entries on one line, for brevity and to make it easier for me to
5654 sort my dir-example file in the Texinfo distribution :).
5656 2003-04-12 Jim Meyering <jim@meyering.net>
5658 * NEWS: Mention the new macro.
5659 * lib/autoconf/c.m4 (AC_C_RESTRICT): New macro.
5660 * doc/autoconf.texi (C Compiler): Describe AC_C_RESTRICT.
5661 * tests/c.at: Test AC_C_RESTRICT.
5662 * tests/mktests.sh (ac_exclude_list): Add exclusion for AC_C_RESTRICT.
5664 2003-04-08 Akim Demaille <akim@epita.fr>
5666 * bin/ifnames.in: Skip C++ comments.
5669 2003-04-08 Akim Demaille <akim@epita.fr>
5671 * GNUmakefile (SHELL): Don't assume sh is in /bin/.
5672 From Ilya Zakharevich.
5674 2003-04-08 Akim Demaille <akim@epita.fr>
5676 * doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
5679 2003-04-01 Derek Price <derek@ximbiot.com>
5681 * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Correct syntax error
5682 from Akim's checkin of 2003-03-29.
5684 2003-04-01 Derek Price <derek@ximbiot.com>
5686 * tests/torture.at (Configuring subdirectories): Add missing
5687 close-quote for Akim's change from 2003-03-28.
5689 2003-04-01 Akim Demaille <akim@epita.fr>
5691 * doc/autoconf.texi (ac, at, ms): Rename these indexes as...
5692 (AC, AT, MS): these.
5693 (shortindexflag, @acindex, @ahindex, @asindex, @atindex, @msindex):
5696 * doc/Makefile.am (CLEANFILES): Adjust.
5697 (TEXI2DVI): Make it --batch.
5699 2003-03-31 Derek Price <derek@ximbiot.com>
5701 * lib/autotest/general.m4: Revert the checkin from 2003-03-27
5702 which removed the main loop.
5703 Thanks to Akim Demaille.
5705 2003-03-29 Akim Demaille <akim@epita.fr>
5707 * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Skip OS/2's install,
5709 From Ilya Zakharevich.
5711 2003-03-29 Akim Demaille <akim@epita.fr>
5713 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): The
5714 documentation to read is Autoconf's.
5715 Suggested by Paul Eggert.
5717 2003-03-28 Akim Demaille <akim@epita.fr>
5719 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Suggest
5720 reading the section "Present But Cannot Be Compiled" when the
5721 header causes problems.
5723 2003-03-28 Akim Demaille <akim@epita.fr>
5725 * tests/torture.at (Configuring subdirectories): Require aclocal
5726 1.4, otherwise the test fails, as it does support configure.ac.
5727 This fixes the "test 40 failed" bug reports.
5729 2003-03-28 Akim Demaille <akim@epita.fr>
5731 * doc/autoconf.texi (C Compiler): `#line' portability.
5732 From Paul Eggert and Nelson H. F. Beebe.
5734 2003-03-27 Derek Price <derek@ximbiot.com>
5736 * lib/autotest/general.m4: Eliminate main loop and reorganize test
5737 layout in order to allow scripting around test groups.
5739 2003-03-27 Derek Price <derek@ximbiot.com>
5741 * lib/autotest/general.m4 (PARSE_ARGS,PARSE_ARGS_END,HELP,HELP_MODES,
5742 HELP_TUNING,HELP_OTHER,HELP_END,PREPARE_TESTS,TESTS_END): Define and
5743 use new diversions in preparation for accepting new arguments and
5744 allowing scripting around tests.
5745 (OPTIONS,TAIL): Remove these diversions to make way for the ones above.
5747 2003-03-26 Derek Price <derek@ximbiot.com>
5749 * lib/autoconf/general.m4 (AC_ARG_VAR): Use AS_HELP_STRING instead of
5750 obsolete AC_HELP_STRING.
5751 (AC_HELP_STRING): AU_DEFUN to...
5752 * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): ...here.
5753 * tests/m4sh.at (AS_HELP_STRING): New test.
5755 * tests/acgeneral.at: Regenerated.
5757 2003-03-26 Derek Price <derek@ximbiot.com>
5759 * lib/autotest/general.m4: s/DEFAULT/DEFAULTS/ since it makes more
5760 sense. Verbosify the diversion definitions comment.
5762 2003-03-26 Derek Price <derek@ximbiot.com>
5764 * lib/autotest/general.m4 (AT_INIT): Remove redundant call to
5767 2003-03-21 Eric Siegerman <eric_97@pobox.com>
5769 * doc/autoconf.texi (Present But Cannot Be Compiled):
5770 Grammar fixes and minor rewording. (trivial change)
5772 2003-03-06 Paul Eggert <eggert@twinsun.com>
5774 Work around a problem noted by Nelson H. F. Beebe with coreutils
5775 4.5.9: Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08
5776 2002/05/09) rejects '#line 32768 "configure"' because the line
5778 * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Do not generate
5780 * lib/autoconf/lang.m4 (AC_LANG_SOURCE): Fix comment to match this.
5781 * doc/autoconf.texi (Generating Sources): Document this.
5783 2003-03-01 Richard Dawe <rich@phekda.freeserve.co.uk>
5785 * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Normalize
5786 file name for the m4 program, when it has an "exe" file extension.
5787 DJGPP's error messages include the error code in brackets -
5788 remove the error code during normalization.
5790 2003-02-28 Akim Demaille <akim@epita.fr>
5792 * doc/autoconf.texi (Present But Cannot Be Compiled): New.
5794 2003-02-28 Alexandre Duret-Lutz <adl@gnu.org>
5796 * doc/autoconf.texi (Limitations of Make): Remove the section
5797 about `$<' in inference rules, it was a bogus interpretation of
5798 an old Automake change. Discuss NetBSD, FreeBSD, OpenBSD, and
5799 Tru64 make in the "target lookup" section.
5800 (Automake): Automake 1.5+ no longer requires special tools to be
5801 present on the developer's host.
5803 2003-02-26 Richard Dawe <rich@phekda.freeserve.co.uk>
5805 * bin/autoheader.in (BEGIN): For DJGPP SHELL may not be set
5806 to a shell that can handle redirection or quoting correctly.
5807 Override SHELL with the shell detected by configure.
5808 Use of $^O suggested by Tim van Holder.
5809 * bin/autom4te.in (BEGIN): Likewise.
5810 * bin/autoreconf.in (BEGIN): Likewise.
5811 * bin/autoscan.in (BEGIN): Likewise.
5812 * bin/autoupdate.in (BEGIN): Likewise.
5813 * bin/ifnames.in (BEGIN): Likewise.
5815 * bin/ifnames.in: Add final newline to help and version messages.
5817 * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Translate colons,
5818 to cope with DOS-style absolute paths, when constructing
5821 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES):
5822 When constructing paths with IFS=:, quote the path. If we're
5823 constructing a DOS-style absolute path, we don't want to split it
5826 * tests/atspecific.m4 (AT_CHECK_CONFIGURE): Fix typo
5829 2003-02-25 Pavel Roskin <proski@gnu.org>
5831 * bin/autoheader.in: Add missing newline when printing
5832 suggestion how change AC_DEFINE call.
5834 2003-02-24 Paul Eggert <eggert@twinsun.com>
5836 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix typo in
5837 2002-09-01 patch by replacing "test -n" with "test -z".
5838 This fixes a bug found by Jeff Painter and reported by Tom Epperly in
5839 <http://mail.gnu.org/archive/html/autoconf/2003-02/msg00139.html>.
5841 * doc/autoconf.texi (Shell Substitutions): test -n -> test -z,
5842 to fix a mismatch between example and discussion.
5844 2003-02-24 Kevin Ryde <user42@zip.com.au>
5846 * doc/autoconf.texi (Limitations of Builtins): Add notes on printf
5847 format starting with "-".
5849 2003-02-20 Alexandre Duret-Lutz <adl@gnu.org>
5851 * doc/autoconf.texi (Limitations of Make): `foo=bar make -e'
5852 is not portable inside Makefile.
5854 2003-02-20 Akim Demaille <akim@epita.fr>
5856 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): When
5857 compiler says yeah, but preproc says nope, compiler is right.
5858 Conversely, prompt the reader to send a bug report to the
5859 maintainers of the package, not of Autoconf.
5861 2003-02-20 Klee Dienes <kdienes@apple.com>
5863 * bin/autoreconf.in (autoreconf_current_directory): Properly
5864 handle an empty aclocal.m4.
5866 2003-02-20 Akim Demaille <akim@epita.fr>
5868 * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote
5872 2002-12-23 Paul Eggert <eggert@twinsun.com>
5874 * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Define $1 to an
5875 innocuous variant befor including <limits.h> or <assert.h>. This
5876 works around a bug reported by Albert Chin: HP-UX 11i
5877 (and earlier versions) have a <limits.h> that declares
5878 gettimeofday and many other functions.
5880 2002-12-03 Paul Eggert <eggert@twinsun.com>
5884 * NEWS, configure.ac: Update version.
5886 * doc/fdl.texi: Upgrade to FDL version 1.2.
5888 * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
5889 nontrivially in main's body, so that f's external declaration is
5890 not optimized away in AIX. This should fix the bug reported by
5892 <http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
5894 * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
5895 _AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
5896 defined, to support freestanding compilers. This should fix the
5897 bug reported by Momchil Velkov in
5898 <http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
5900 * doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
5901 arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
5902 obsolete AC_CHECK_TYPE. The missing empty arg was reported
5903 by Simon Josefsson in
5904 <http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
5906 * Makefile.maint (www-gnu): New macro.
5907 (standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
5908 the location has moved.
5910 2002-12-02 Martin Frydl <martin@systinet.com>
5912 * bin/autom4te.in (at_flatten): rewritten to avoid M4 problem when
5913 \(.*\) match is too long and there is something more to be checked.
5914 <http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>
5916 2002-11-15 Akim Demaille <akim@epita.fr>
5920 * config/install-sh: chmod +x.
5922 * config/move-if-change: Indenting changes.
5923 * Makefile.am (AUTOMAKE_OPTIONS): Move to...
5924 * configure.ac (AM_INIT_AUTOMAKE): here.
5927 2002-11-14 Akim Demaille <akim@epita.fr>
5931 * config/config.guess, config/config.sub, config/install-sh:
5932 Update from masters.
5934 2002-11-14 Akim Demaille <akim@epita.fr>
5936 * Makefile.maint: Sync with Bison, i.e.:
5937 (po-check): Scan .l and .y files instead of the
5938 .c and the .h files that they generate. This fixes the bug
5939 reported by Tim Van Holder in:
5940 <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
5941 Look for N_ as well as for _. Try to avoid matching #define for
5945 2002-11-14 Akim Demaille <akim@epita.fr>
5947 * doc/autoconf.texi (C Compiler): Compiling several files at once.
5948 From Paul Eggert and Albert Chin-A-Young.
5950 2002-11-14 Akim Demaille <akim@epita.fr>
5952 * doc/autoconf.texi (C Compiler): Solitary backslashes.
5953 From Paul Eggert and Albert Chin-A-Young.
5955 2002-11-14 Kevin Ryde <user42@zip.com.au>
5957 * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Initialize f=$1 rather
5958 than assigning in main, to avoid HP cc +O3 optimizing it away.
5960 2002-11-12 Peter Eisentraut <peter_e@gmx.net>
5962 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Add -q
5963 option. Process --recheck after parsing all options. Pass -q
5964 option to configure on --recheck.
5965 (AC_OUTPUT): Pass -q from configure to config.status.
5966 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Strip -q from
5967 arguments to record.
5968 * doc/autoconf.texi (config.status Invocation): Document
5969 config.status -q option.
5971 2002-11-07 Alexandre Duret-Lutz <adl@gnu.org>
5973 * bin/autoscan.in (scan_file): Scan Makefile.am too. Ignore
5974 Makefile.in if Makefile.am exists.
5975 (output): Strip `.am' from Makefiles. Don't
5976 output AC_CONFIG_FILES if no Makefiles were found.
5978 2002-11-07 Akim Demaille <akim@epita.fr>
5980 * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
5981 (local_updates): New.
5982 * Makefile.maint: Update, from CVS Bison.
5983 (local_updates): New.
5985 2002-11-06 Akim Demaille <akim@epita.fr>
5987 * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
5988 declaration in extern "C" too.
5989 Reported by Roberto Bagnara.
5991 2002-11-06 Akim Demaille <akim@epita.fr>
5993 * tests/torture.at (Configuring subdirectories): Don't use grep
5995 * doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
5996 Reported by Ezra Peisach.
5998 2002-11-05 Akim Demaille <akim@epita.fr>
6000 * lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
6002 We _have_ to stop using the old compatibility scheme that tried to
6003 avoid useless backslashes because Libtool 1.4.3 contains a
6004 AC_DEFINE([error_t], [int],
6005 [Define to a type to use for \`error_t' if it is not
6006 otherwise available.])
6007 We _have_ to quote the single quote and backslashes with \. The
6008 old compatibility scheme saw that ` was backslashed, and therefore
6009 did not quote the single quote. Hence before this patch, Autoconf
6010 was not compatible with Libtool.
6012 2002-11-04 Paul Eggert <eggert@twinsun.com>
6014 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set the following variables,
6015 too: LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_MONETARY,
6016 LC_NAME, LC_PAPER, LC_TELEPHONE.
6017 * doc/autoconf.texi (Special Shell Variables): Mention those vars.
6019 2002-11-04 Akim Demaille <akim@epita.fr>
6023 * Makefile.maint (update, cvs-update, po-update, do-po-update):
6025 * config/texinfo.tex: Update.
6027 2002-11-03 Akim Demaille <akim@epita.fr>
6029 * bin/autoreconf.in (&autoreconf_current_directory): New, extracted
6031 (&autoreconf): here.
6032 ($help, $make, &parse_args, &autoreconf_current_directory):
6034 * doc/autoconf.texi (autoreconf Invocation): Adjust.
6036 2002-10-31 Bruno Haible <bruno@clisp.org>
6038 * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Change message.
6039 Change name of cache variable to ac_cv_func_malloc_0_nonnull.
6040 (AC_FUNC_MALLOC): Change description of HAVE_MALLOC macro.
6041 (_AC_FUNC_REALLOC_IF): Change message. Change name of cache variable
6042 to ac_cv_func_realloc_0_nonnull.
6043 (AC_FUNC_REALLOC): Change description of HAVE_REALLOC macro.
6045 2002-10-31 Akim Demaille <akim@epita.fr>
6047 The test suite was no longer checking for trailing envvars and files.
6049 * tests/atspecific.m4 (AC_STATE_SAVE): Don't use quadrigraphs here.
6050 (AT_CHECK_ENV): Make sure the `state-ls.before file exists.
6052 2002-10-31 Akim Demaille <akim@epita.fr>
6054 * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use and display
6055 `$(MAKE)' instead of '${MAKE}' to emphasize that we refer to the
6056 Make variable, not a shell variable.
6057 Suggested by Bruno Haible.
6059 2002-10-31 Akim Demaille <akim@epita.fr>
6061 * bin/autom4te.in (load_configuration): Reject #args out of any
6064 2002-10-31 Akim Demaille <akim@epita.fr>
6066 * lib/autoconf/general.m4 (_AC_MSG_LOG_CONFTEST): New.
6067 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE)
6068 (_AC_RUN_IFELSE): Use it.
6069 * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT):
6070 (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
6071 * lib/autoconf/c.m4 (AC_LANG_SOURCE): Don't include confdefs.h,
6074 2002-10-30 Akim Demaille <akim@epita.fr>
6076 * bin/autom4te.in (&parse_args, $help): Support --no-cache.
6077 * doc/autoconf.texi (autom4te Invocation): Adjust.
6078 Suggested by Tim van Holder.
6080 2002-10-29 Paul Eggert <eggert@twinsun.com>
6082 * doc/autoconf.texi (Particular Functions): AC_FUNC_MALLOC and
6083 AC_FUNC_REALLOC check for compatibility with glibc, not POSIX.
6084 Problem reported by Bruno Haible.
6086 2002-10-29 Akim Demaille <akim@epita.fr>
6088 * doc/autoconf.texi (Header Templates): Put also in words what the
6089 pictures says to assist free style readers.
6090 (Customizing autom4te): s/--cache=/--cache /.
6092 2002-10-29 Akim Demaille <akim@epita.fr>
6094 * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Include stdlib.h and
6096 sparc_address_test returns void.
6097 Use it with an argument, as prototyped.
6100 2002-10-29 Akim Demaille <akim@epita.fr>
6102 * doc/autoconf.texi (Subdirectories): Cygnus dirs have
6103 configure.in, not configure.ac.
6104 Reported by Bruno Haible.
6106 2002-10-29 Akim Demaille <akim@epita.fr>
6108 * tests/torture.at (Deep Package): New test.
6109 (Configuring subdirectories): Don't use a testSubDir as Autotest
6112 2002-10-29 Akim Demaille <akim@epita.fr>
6114 * bin/autoreconf.in (&parse_args, $help): Support --warnings.
6115 * doc/autoconf.texi (Invoking autom4te): Rename as...
6116 (autom4te Invocation): this, for consistency with the other nodes.
6118 2002-10-29 Akim Demaille <akim@epita.fr>
6120 * lib/autom4te.in (Autoconf): s/automate/autom4te/.
6121 Reported by Ralf Corsepius.
6123 2002-10-29 Akim Demaille <akim@epita.fr>
6125 * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
6126 characters is a back as an `obsolete' warning now.
6127 Reported by Ralf Corsepius.
6129 2002-10-28 Akim Demaille <akim@epita.fr>
6131 * configure.ac: Bump to 2.54c.
6133 2002-10-28 Akim Demaille <akim@epita.fr>
6137 * tests/foreign.at (Libtool): Adjust to broken libtoolize.
6139 2002-10-28 Akim Demaille <akim@epita.fr>
6141 * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Be robust to different
6142 m4 executable names, and different GNU M4 version.
6143 Reported by Ezra Peisach and Paul Jarc.
6145 2002-10-27 Akim Demaille <akim@epita.fr>
6147 * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Really use
6150 2002-10-27 Akim Demaille <akim@epita.fr>
6152 * doc/autoconf.texi: More AC_MSG_FAILURE promotion.
6153 * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING):
6154 Die when a simple Fortran program cannot be compiled.
6155 * lib/autoconf/lang.m4 (AC_LANG_CALL, AC_LANG_FUNC_LINK_TRY):
6156 Issue a warning if no function is given.
6158 2002-10-27 Akim Demaille <akim@epita.fr>
6160 * doc/autoconf.texi (Run Time): Document AC_RUN_IFELSE.
6161 Move the documentation of AC_TRY_RUN to...
6162 (Obsolete Macros): here.
6163 Adjust all the old samples still using AC_TRY_RUN to AC_RUN_IFELSE.
6164 (autoconf Invocation): Remove the duplicates with `invoking
6166 * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_RUN.
6167 * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
6169 2002-10-27 Akim Demaille <akim@epita.fr>
6171 * doc/autoconf.texi (Generating Sources): Document AC_LANG_CALL
6172 and AC_LANG_FUNC_LINK_TRY.
6173 (Examining Libraries): Rename as...
6174 (Running the Linker): this.
6175 Document AC_LINK_IFELSE.
6176 Move the documentation of AC_TRY_LINK and AC_TRY_LINK_FUNC to...
6177 (Obsolete Macros): here.
6178 * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING): Don't use
6179 AC_TRY_LINK_FUNC nor AC_TRY_LINK.
6180 * lib/autoconf/libs.m4 (AC_CHECK_LIB, AC_PATH_XTRA): Likewise.
6181 * lib/autoconf/headers.m4 (AC_USG): Likewise.
6183 2002-10-27 Akim Demaille <akim@epita.fr>
6185 * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_CPP.
6187 More `check config.log' messages.
6189 * lib/autoconf/general.m4 (AC_MSG_FAILURE): New.
6190 * doc/autoconf.texi (Printing Messages): Document it.
6191 * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use it when
6193 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT)
6194 (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_O)
6195 (_AC_COMPILER_OBJEXT): Likewise.
6196 * lib/autoconf/general.m4 (AC_RUN_IFELSE): Likewise.
6197 * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS):
6199 * lib/autoconf/c.m4 (AC_PROG_CPP, AC_PROG_CC, AC_PROG_CXXCPP):
6202 Deprecate macros with unusual interfaces.
6204 * lib/autoconf/general.m4 (AC_TRY_CPP, AC_TRY_LINK)
6205 (AC_TRY_COMPILE, AC_TRY_RUN): AU_DEFUN'ed.
6207 Document the new ones, and proper style.
6209 * doc/autoconf.texi (Generating Sources): New.
6210 Document AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM.
6211 (Examining Declarations): Rename as...
6212 (Running the Preprocessor): this.
6213 Document AC_PREPROC_IFELSE.
6214 (Examining Syntax): Rename as...
6215 (Running the Compiler): this.
6216 (AC_FOO_IFELSE vs AC_TRY_FOO): New section.
6217 (Obsolete Macros): Move the definition of AC_TRY_CPP and
6218 AC_TRY_COMPILE here.
6220 2002-10-27 Akim Demaille <akim@epita.fr>
6222 Move sections around.
6224 * doc/autoconf.texi (Customizing autom4te): Remove a lost
6226 Reported by Burno Haible.
6227 (Language Choice): Now the first section of...
6228 (Writing Tests): this section.
6229 Make the introduction less C-centric.
6230 (Guidelines, Test Functions): Move to...
6231 (Writing Test Programs): this new section.
6232 (Test Programs): Merge into...
6235 2002-10-27 Akim Demaille <akim@epita.fr>
6237 * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on
6238 autom4te.in that resulted in the need for two `make' runs.
6240 2002-10-27 Akim Demaille <akim@epita.fr>
6242 * configure.ac: Bump to 2.54b.
6244 2002-10-25 Akim Demaille <akim@epita.fr>
6248 * Makefile.maint: Update from the Coreutils.
6249 (AMTAR): Remove, obsolete.
6250 (automake_repo): Update to redhat.com.
6252 Adjust to the fact that ansi2knr is now hosted by Automake.
6253 * Makefile.am (cvs_files): Add install-sh and mkinstalldirs.
6254 * config/config.guess, config/mkinstalldirs, config/texinfo.tex:
6255 Update from masters.
6256 * lib/autoscan/Makefile.am (EXTRA_DIST, nodist_autoscanlib_DATA):
6257 autoscan.pre is not to be installed, and autoscan.list is not to
6259 (CLEANFILES): Add autoscan.list.
6260 (autoscan.list): Disable the cache.
6261 * bin/Makefile.am: Include freeze.mk.
6263 2002-10-25 Akim Demaille <akim@epita.fr>
6265 * bin/autom4te.in (&load_configuration): Take the file as
6267 (&parse_args): Handle -C, --cache.
6269 (MAIN): Load ~/.autom4te.cfg and ./.autom4te.cfg.
6270 * lib/autom4te.in (Autoconf): Pass --cache=autom4te.cache.
6271 * doc/autoconf.texi (Invoking autom4te): Document --cache.
6272 Now a subsection of...
6273 (Using autom4te): This new section.
6274 (Customizing autom4te): New.
6275 (autom4te.cache): Adjust.
6277 2002-10-25 Akim Demaille <akim@epita.fr>
6279 * doc/autoconf.texi (Generic Headers): More information on how to
6280 use AC_CHECK_HEADERS.
6282 2002-10-25 Akim Demaille <akim@epita.fr>
6284 * bin/autoconf.as, bin/autoconf.in, bin/autoupdate.in ($help):
6287 2002-10-25 Akim Demaille <akim@epita.fr>
6289 * bin/autoscan.in (output): Output AC_PREREQ.
6290 (%needed_macros): Add AC_PREREQ so that configure.ac without one
6293 2002-10-23 Akim Demaille <akim@epita.fr>
6295 * doc/autoconf.texi (Particular Headers): In AC_HEADER_STDBOOL,
6298 2002-10-23 Akim Demaille <akim@epita.fr>
6300 * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
6301 Reported by Peter Eisentraut.
6303 2002-10-23 Akim Demaille <akim@epita.fr>
6305 * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
6308 * doc/autoconf.texi (Particular Headers): Adjust according to Paul
6309 Eggert's recommandations.
6311 2002-10-22 Akim Demaille <akim@epita.fr>
6313 * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): New, based on CVS
6314 Bison, by Paul Eggert.
6315 * doc/autoconf.texi (Particular Headers): Document it.
6317 2002-10-22 Aaron M. Ucko <amu@alum.mit.edu>
6319 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Avoid duplicates in
6320 `$ac_configure_args'.
6322 2002-10-22 Akim Demaille <akim@epita.fr>
6324 * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
6325 (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
6328 2002-10-22 Akim Demaille <akim@epita.fr>
6330 Restore the 2002-10-11 Akim Demaille <akim@epita.fr> patch:
6332 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
6333 (AC_CHECK_HEADER, _AC_CHECK_HEADER_NEW,_AC_CHECK_HEADER_OLD): Restore.
6334 (_AC_CHECK_HEADER_NEW): Rename as...
6335 (AC_CHECK_HEADER): this.
6337 2002-10-22 Akim Demaille <akim@epita.fr>
6339 * doc/autoconf.texi (Limitations of Usual Tools): Remove incorrect
6340 words about HP-UX cmp: it was actually a user-written cmp.
6342 2002-10-22 Akim Demaille <akim@epita.fr>
6344 * tests/foreign.at (Libtool): Don't check autoconf's stderr: there
6346 * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
6347 Quote for Perl '' strings, not "".
6348 * bin/autoheader.in: Invoke autoconf to get '' strings, not ""
6351 2002-10-22 Akim Demaille <akim@epita.fr>
6353 * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
6354 characters is a syntax warning now.
6355 (_AS_QUOTE): Accept $2 as list of characters to quote.
6356 * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
6357 Quote for Perl, not sh.
6358 * bin/autoheader.in: When $debug, report the file which is
6360 * tests/tools.at (autom4te, autoheader): Exercise @bar, not merely
6361 `@', to tickle Perl's lists.
6362 Reported by Carlos Velasco.
6364 2002-10-18 Akim Demaille <akim@epita.fr>
6366 * bin/autom4te.in (handle_m4): Pass --fatal-warning to m4, so that
6367 missing included files _are_ errors.
6368 Thanks to Alexandre Duret-Lutz.
6369 * tests/tools.at (autom4te cache): Adjust.
6370 * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): New.
6371 (AT_CHECK_M4SUGAR): Use it.
6372 * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
6374 * tests/tools.at (autom4te): Now it does exit 1.
6376 2002-10-17 Akim Demaille <akim@epita.fr>
6378 * lib/autoconf/general.m4 (AC_CACHE_SAVE): Don't use cmp.
6379 Fixes the `AC_ARG_VAR' test failures.
6380 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Don't use cmp.
6381 * lib/freeze.mk (check-forbidden-patterns): New.
6382 * lib/autoconf/Makefile.am, lib/autotest/Makefile.am
6383 * lib/m4sugar/Makefile.am (check-local): Use it to catch `cmp'.
6384 * doc/autoconf.texi (Limitations of Usual Tools): HP-UX' cmp and
6386 Reported months ago by H. Merijn Brand.
6388 2002-10-17 Akim Demaille <akim@epita.fr>
6390 * tests/tools.at (autoheader): Put randoms `@' to stress Perl.
6392 2002-10-16 Paul Eggert <eggert@twinsun.com>
6394 * Makefile.maint (wget_files): Remove ansi2knr.c.
6395 (ansi2knr.c-url_prefix): Remove.
6397 2002-10-16 Akim Demaille <akim@epita.fr>
6399 Because of caching, some files that no longer exist and are no
6400 longer required can still cause errors.
6401 Reported by Alexandre Duret-Lutz.
6403 * bin/autom4te.in (&parse_args): Do not prepend `--reload-state'
6404 to frozen files in @ARGV, as @ARGV must remain being a list of
6405 files. Rather, at M4 call sites, use this...
6406 (&files_to_options): New function.
6407 (&freeze): Use &error.
6408 (&up_to_date): If a file that was included according to the cache
6409 is no longer there, then the output is out dated.
6410 (&main): Don't even check whether a file is up to date is anyway
6412 * tests/tools.at (autom4te cache): New.
6414 2002-10-16 Akim Demaille <akim@epita.fr>
6416 * bin/autoconf.as: Kill dead options.
6417 * bin/autoupdate.in (&parse_args): Kill old options.
6418 * bin/autoreconf.in (&parse_args): Remove dead options.
6420 (&autoreconf): Report the directories we enter *and leave*, so
6421 that error messages can be easily located, and use GNU Make
6422 format, so that Emacs' compile mode understands us.
6423 * lib/Autom4te/General.pm (&update_file): Use `verbose' to report
6424 if some file was changed instead of `print'.
6425 * bin/autoheader.in: Suggest AC_DEFINE with 3 args when needed.
6426 (&parse_args): Remove the dead options.
6427 * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Adjust to the new
6428 autoheader's quiet mode.
6429 (AT_CHECK_AUTOUPDATE): Likewise.
6430 * tests/tools.at (autoupdate): Adjust.
6431 * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
6433 2002-10-11 Akim Demaille <akim@epita.fr>
6435 No longer use CPP to check for the existing of headers: use CC to
6436 check for compilability.
6438 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
6439 (AC_CHECK_HEADER, _AC_CHECK_HEADER_OLD): Remove.
6440 (_AC_CHECK_HEADER_NEW): Rename as...
6441 (AC_CHECK_HEADER): this.
6443 * lib/autotest/general.m4 (AT_INIT): Include the failed test
6444 numbers in the Subject suggestion.
6446 2002-10-11 Akim Demaille <akim@epita.fr>
6448 * lib/autoconf/specific.m4 (AC_DECL_SYS_SIGLIST): Obsolete.
6449 Suggest using AC_CHECK_DECLS instead.
6451 2002-10-11 Akim Demaille <akim@epita.fr>
6453 * tests/torture.at (AC_ARG_VAR): Have configure report the value
6456 2002-10-11 Akim Demaille <akim@epita.fr>
6458 * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use $$ in the
6459 file name to enable parallel executions.
6460 From Sam Varshavchik.
6462 2002-10-08 Akim Demaille <akim@epita.fr>
6464 * bin/autoreconf.in (&autoreconf): Run autopoint before the first
6465 aclocal invocation, as Gettext macros might not be visible to
6467 Instead of blindly running autopoint, scan configure.ac (not the
6468 traces) for AM_GNU_GETTEXT_VERSION uses, as autopoint does.
6469 Reported by Paul D. Smith.
6471 2002-10-08 Paul Eggert <eggert@twinsun.com>
6473 Work around problems found when POSIXLY_CORRECT=1 is set.
6474 None of this seems to have anything to do with POSIX, really,
6475 but it's how Perl getopt works.
6476 * bin/autom4te.in (parse_args): Configure GetOpt with
6478 * doc/autoconf.texi (Invoking autom4te):
6479 --warning -> --warnings.
6480 * lib/autom4te.in: --warning -> --warnings.
6482 2002-09-28 Akim Demaille <akim@epita.fr>
6484 * doc/autoconf.texi (autom4te.cache): New section.
6486 2002-09-28 Akim Demaille <akim@epita.fr>
6488 * lib/autom4te.in (Autoscan-preselections, Autoreconf-preselections)
6489 (Automake-preselections): Update.
6490 * bin/autoreconf.in, bin/autoheader.in: Comment changes.
6492 2002-09-28 Akim Demaille <akim@epita.fr>
6494 * lib/autoscan/autoscan.pre: Move all the remaining rules to...
6495 * lib/autoconf/c.m4, lib/autoconf/functions.m4,
6496 * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
6497 * lib/autoconf/specific.m4, lib/autoconf/types.m4: here.
6499 2002-09-28 Akim Demaille <akim@epita.fr>
6501 * tests/torture.at (Configuring subdirectories): Be robust to
6502 users who use config.site to require for a cache: in this case,
6503 the two last configure runs, using two different sets of
6504 arguments, trigger a legitimate error.
6506 2002-09-28 Akim Demaille <akim@epita.fr>
6508 * tests/m4sh.at (Functions Support, Functions and return Support):
6511 2002-09-28 Akim Demaille <akim@epita.fr>
6513 * bin/Makefile.am (ETAGS_SH, ETAGS_PERL): Update: ifnames and
6514 autoheader are Perl programs.
6515 (autoconf, autoheader, autoreconf, autoupdate, ifnames, autoscan)
6516 (autom4te): Specify that the sources are in the $srcdir.
6517 * doc/autoconf.texi (Installation Directory Variables): Adjust.
6519 2002-09-28 Akim Demaille <akim@epita.fr>
6521 * lib/autoscan/autoscan.pre (st_blksize, st_blocks, st_rdev)
6522 (tm_zone): Move their rules to...
6523 * lib/autoconf/types.m4: here, using AN_ macros.
6524 * lib/autoscan/autoscan.pre (AWK, BISON, INSTALL, LEX, LN, MAKE)
6525 (RANLIB, YACC, awk, bison, byacc, flex, gawk, install, lex, ln)
6526 (make, mawk, nawk, ranlib, yacc): Similarly, move to...
6527 * lib/autoconf/programs.m4: here.
6528 * lib/freeze.mk (ETAGS_FOR_M4, ETAGS_FOR_M4SUGAR)
6529 (ETAGS_FOR_AUTOCONF): New.
6532 2002-09-28 Akim Demaille <akim@epita.fr>
6534 * lib/autoconf/autoscan.m4: New file.
6535 * lib/autoconf/autoconf.m4: Include it.
6536 * lib/autoconf/functions.m4: Use AN_FUNCTION for all the functions
6537 that were listed in the original autoscan.list.
6538 * lib/autoconf/headers.m4: Similarly with headers.
6539 * lib/freeze.mk (autoconf_m4f_dependencies): Add autoscan.m4.
6540 (.m4.m4f): Don't pass --prepend-include, since that's done by
6541 tests/autom4te itself.
6542 * lib/autoscan/Makefile.am: Include freeze.mk.
6543 (autoscan.list): New target --this file is no longer a source.
6544 (autoscan.pre): New file.
6546 2002-09-28 Akim Demaille <akim@epita.fr>
6548 * bin/autoscan.in (@kinds): Make them singular.
6550 (&init_tables): When --debug, report the list of rules to ease
6551 tracking changes in autoscan.list.
6552 * lib/autoscan/autoscan.list (function): Strip comments, sort.
6554 2002-09-28 Akim Demaille <akim@epita.fr>
6556 * lib/autoscan/functions, lib/autoscan/headers,
6557 * lib/autoscan/identifiers, lib/autoscan/makevars,
6558 * lib/autoscan/programs: Merge into...
6559 * lib/autoscan/autoscan.list: this.
6560 * bin/autoscan.in (&init_tables): Adjust.
6562 2002-09-28 Akim Demaille <akim@epita.fr>
6564 * lib/autoscan/functions, lib/autoscan/headers,
6565 * lib/autoscan/identifiers, lib/autoscan/makevars,
6566 * lib/autoscan/programs: Make the `kind' explicit, i.e., each
6567 `functions' line is now prefixed with `function:'.
6568 * bin/autoscan.in (&init_tables): Adjust.
6570 2002-09-28 Akim Demaille <akim@epita.fr>
6572 From now on, autoscan files must always map a macro name to a
6573 word: there is no `default' macro for autoscan.
6575 * bin/autoscan.in (&init_tables): Reject entries with no macro at
6577 * lib/autoscan/functions, lib/autoscan/headers: Make the macro
6580 2002-09-28 Akim Demaille <akim@epita.fr>
6582 * bin/autoscan.in (%c_keywords): Remove.
6583 (&used): Keep only track of the words we might be interested in.
6584 (&output_kind): It is no longer needed to look for non active
6587 2002-09-27 Akim Demaille <akim@epita.fr>
6589 * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): New, stolen from
6590 jm_FUNC_MBRTOWC, by Paul Eggert, from the Coreutils 4.5.1.
6591 * lib/autoscan/functions: Adjust.
6592 * doc/autoconf.texi (Particular Functions): Adjust.
6594 2002-09-27 Akim Demaille <akim@epita.fr>
6596 * doc/autoconf.texi (Limitations of Usual Tools): Some about mv
6598 Thanks to Bill Moseley and Paul Eggert.
6599 * lib/m4sugar/m4sh.m4 (AS_TMPDIR): $2 is the directory into which
6600 the tmpdir must be created.
6601 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Have the tmp
6602 dir be in the build tree, instead of $TMPDIR.
6604 2002-09-27 Akim Demaille <akim@epita.fr>
6606 * bin/autoscan.in: Improve the comments.
6607 (&parse_args): Drop obsolete undocumented options.
6608 (&output_kind): Output warnings.
6609 * lib/autoscan/functions: (dcgettext): Now trigger AM_GNU_GETTEXT.
6610 (getwd): Trigger a warning.
6612 2002-09-26 Akim Demaille <akim@epita.fr>
6614 * bin/autoreconf.in: Clarify that -s is meaningless without -i.
6615 Reported by Ralf Corsepius.
6616 * doc/autoconf.texi (autoreconf Invocation): Likewise.
6618 2002-09-26 Akim Demaille <akim@epita.fr>
6620 Single suffix rules and seperated dependencies are not portable.
6622 * doc/autoconf.texi (Installation Directory Variables): Update.
6623 (Limitations of Make): Some about `Single Suffix Rules and
6624 Separated Dependencies'.
6625 * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
6626 (ifnames, autoscan, autom4te): Un-factor into several rules.
6628 2002-09-25 Paul Eggert <eggert@twinsun.com>
6630 * BUGS (Interoperability bugs): New section. Mention libtool
6631 1.4.2, configure.ac, and AC_CONFIG_AUX_DIR interoperability bug.
6633 2002-09-24 Paul Eggert <eggert@twinsun.com>
6635 Fix a portability bug reported by Alexandre Duret-Lutz: Solaris 8
6636 make handles suffix-rules differently from GNU make.
6638 * bin/Makefile.am (SUFFIXES, .in): Remove.
6639 (autoconf autoheader autoreconf autoupdate ifnames autoscan autom4te):
6640 Move the body of the old .in rule here.
6642 2002-09-16 Akim Demaille <akim@epita.fr>
6644 i960 compilers create `b.out' files by default.
6645 Reported by Ralf Corsepius.
6647 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove b.out files.
6648 (_AC_COMPILER_EXEEXT_DEFAULT): Adjust to b.out.
6650 2002-09-13 Paul Eggert <eggert@twinsun.com>
6652 * doc/autoconf.texi (Particular Headers): Remove obsolete
6653 reference to `struct timezone' in the description of
6656 2002-09-13 Akim Demaille <akim@epita.fr>
6660 * config/config.sub, config/config.guess: Update.
6661 * Makefile.maint: Update from bits of the Coreutils 4.5.1.
6662 * Makefile.am: Adjust.
6664 2002-09-13 Akim Demaille <akim@epita.fr>
6666 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Suggest
6667 reading config.log when the compiler is rejected.
6668 Suggested by Guido Draheim.
6670 2002-09-13 Akim Demaille <akim@epita.fr>
6672 * bin/autoreconf.in: Don't use Cwd::chdir, since in its internals
6673 (chdir_init) might hang when stat'ing mounted directories.
6674 Reported by Vance Shipley.
6676 2002-09-12 Akim Demaille <akim@epita.fr>
6678 * bin/autoscan.in (&parse_args): Pass a reference to the lists, not
6681 2002-09-12 Akim Demaille <akim@epita.fr>
6683 * doc/autoconf.texi (Defining Symbols): Present two different
6684 prototypes for AC_DEFINE and AC_DEFINE_UNQUOTED to emphasize the
6685 difference between 1 argument calls, and 2-3 argument calls.
6687 2002-09-12 Peter Eisentraut <peter_e@gmx.net>
6689 * doc/autoconf.texi: Review grammar and punctuation.
6691 2002-09-11 Paul Eggert <eggert@twinsun.com>
6693 * doc/autoconf.texi: Fix minor formatting, spelling, and
6695 (Defining Symbols): Explain that AC_DEFINE(var) defaults to 1, but
6696 AC_DEFINE(var,,description) does not; and the AC_DEFINE(var) case
6699 2002-09-11 Akim Demaille <akim@epita.fr>
6701 * doc/autoconf.texi (Questions): Rename as...
6703 (Defining Directories): New.
6705 2002-09-09 Akim Demaille <akim@epita.fr>
6707 * doc/autoconf.texi (Making testsuite Scripts): Update.
6708 Suggested by Nishio Futoshi.
6710 2002-09-09 Koji Arai <JCA02266@nifty.ne.jp>
6712 * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
6713 plain `@' is wanted.
6715 2002-09-09 Akim Demaille <akim@epita.fr>
6717 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
6718 `duplicates', since the algorithm was too naive and could keep
6719 `--prefix=1 --prefix=2 --prefix=1' as `--prefix=1 --prefix=2', and
6720 keep `--prefix foo --prefix bar' as `--prefix foo bar'.
6721 Reported by Ralf Corsepius.
6722 * tests/torture.at (Configuring subdirectories): Exercise these
6725 2002-09-09 Akim Demaille <akim@epita.fr>
6727 * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Use $srcdir when
6728 looking for a replacement file.
6729 * lib/autoconf/general.m4 (AC_CHECK_DECLS): Check that the
6730 directory is relative.
6731 * doc/autoconf.texi (Generic Functions): Clarify the replacement
6732 directory definition.
6733 Reported by Andreas Schwab and Jim Meyering.
6735 2002-09-06 Akim Demaille <akim@epita.fr>
6737 * doc/autoconf.texi (Setting Output Variables): Clarify what
6738 precious variables are.
6739 Suggested by Pontus Skoeld.
6741 2002-09-05 Akim Demaille <akim@epita.fr>
6743 * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
6744 (ifnames, autoscan, autom4te): Since we don't only depend on
6745 configure.ac variables (such as VERSION etc.), but also on prefix
6746 and so forth, depend on Makefile, not configure.ac.
6747 Reported by Alexandre Duret-Lutz.
6748 * doc/autoconf.texi (Installation Directory Variables): Adjust.
6750 2002-09-05 Kevin Ryde <user42@zip.com.au>
6752 * doc/autoconf.texi (Limitations of Make): HP-UX trailing backslashes
6753 doesn't seem to be confined to ia64, just say "some versions".
6755 2002-09-04 Akim Demaille <akim@epita.fr>
6757 * Makefile.am, doc/Makefile.am: Remove pdf targets, handled by
6759 * Makefile.am (maintainer-clean-local): Remove.
6760 (MAINTAINERCLEANFILES): Remove COPYING.
6762 2002-09-03 Paul Eggert <eggert@twinsun.com>
6764 * doc/autoconf.texi (Configuration Commands): Remove obsolete
6765 example for AC_CONFIG_COMMANDS_PRE. Problem reported by Marcus
6768 2002-09-03 Akim Demaille <akim@epita.fr>
6770 * configure.ac: Bump to 2.53d.
6771 * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6c, i.e., CVS Automake
6772 as of today, on Automake's team suggestion.
6774 2002-09-03 Akim Demaille <akim@epita.fr>
6778 2002-09-02 Akim Demaille <akim@epita.fr>
6780 * bin/autom4te.in (parse_args): Don't honor AUTOM4TE_PATH and
6782 * configure.ac: Disable SITE_MACRO_DIR.
6784 2002-09-02 Jim Meyering <meyering@lucent.com>
6786 * doc/autoconf.texi (AC_SYS_POSIX_TERMIOS): Reflect renaming: s/am/ac/,
6787 i.e., change am_cv_sys_posix_termios to ac_cv_sys_posix_termios.
6788 Also, tweak grammar: s/make sure to/be sure to/.
6790 2002-09-02 Paul Eggert <eggert@twinsun.com>
6792 * doc/autoconf.texi (Limitations of Builtins): Explain why logical
6793 directory names are generally preferable to physical names.
6795 2002-09-02 Akim Demaille <akim@epita.fr>
6797 * lib/Autom4te/General.pm (&update_file): s/die/error/.
6798 Reported by Raja R. Harinath.
6799 * bin/autoheader.in, bin/autoreconf.in, bin/autoscan.in,
6800 * bin/autoupdate.in: Use error instead of die.
6802 2002-09-01 Paul Eggert <eggert@twinsun.com>
6804 * tests/mktests.sh (ac_exclude_egrep, au_exclude_egrep): Use
6805 ordinary shell concatenation rather than echo+tr+sed command that
6806 runs afoul of a long-line-related sed bug in Solaris 8.
6808 * bin/autoheader.in (parse_args): --warning -> --warnings.
6810 * bin/autoconf.as: Work even if "ls" outputs "FOO not found" to
6811 stdout, as traditional "ls" does.
6812 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT,
6813 _AC_COMPILER_EXEEXT_O): Likewise.
6814 * doc/autoconf.texi (Limitations of Usual Tools): Add "ls".
6816 * bin/autoconf.as: Add --prepend-include option. This patch was
6817 applied to bin/autoconf.in in the 2002-07-17 patch by Mark D. Roth,
6818 but bin/autoconf.in is generated automatically from bin/autoconf.as.
6820 * bin/autoconf.in, configure: Regenerate.
6822 * doc/autoconf.texi (Special Shell Variables): Mention
6823 ENV, MAIL, MAILPATH, PS1, PS2, PS4. Index PWD.
6825 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Unset ENV, MAIL,
6826 MAILPATH and set PS1, PS2, PS4 to default values, to work
6827 around bug in pre-3.0 UWIN ksh reported by Bruce Lilly.
6828 For LC_ALL etc, first try to set to "C" as POSIX requires and as
6829 the Autoconf documentation specifies; fall back to "unset" only if
6830 this fails. Use a shell for-loop for this rather than an m4 loop,
6831 to shorten the output script.
6833 2002-08-30 Paul Eggert <eggert@twinsun.com>
6835 * doc/autoconf.texi (Special Shell Variables): Mention POSIX
6836 1003.1-2001's requirements for CDPATH. Give a simpler workaround
6837 for the CDPATH problem. Document PWD.
6838 (Limitations of Builtins): Document the problem that "cd $foo" and
6839 "ls $foo" may refer to different directories in shells conforming
6840 to POSIX 1003.1-2001. Use PS1 rather than CDPATH for "unset"
6841 example, since the old example is now out of date.
6843 * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Reject FOO if "cd
6844 FOO" and "ls FOO" talk about different directories; this catches
6845 problems when POSIX 1003.1-2001 "cd" fails due to symlink
6848 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use AS_UNSET instead
6849 of rolling our own unset.
6850 (_AS_PREPARE): $as_unset CDPATH instead of AS_UNSETting it, since
6851 in practice we needn't worry about CDPATH if unset doesn't work.
6853 * Makefile.in, aclocal.m4, bin/Makefile.in,
6854 config/Makefile.in, doc/Makefile.in, lib/Makefile.in,
6855 lib/Autom4te/Makefile.in, lib/autoconf/Makefile.in,
6856 lib/autoscan/Makefile.in, lib/autotest/Makefile.in,
6857 lib/emacs/Makefile.in, lib/m4sugar/Makefile.in, man/Makefile.in,
6858 tests/Makefile.in: Regenerate with Automake 1.6.3.
6860 * config/config.guess, config/config.sub, config/mkinstalldirs:
6863 * configure: Regenerate with self.
6865 2002-08-30 Kevin Ryde <user42@zip.com.au>
6867 * doc/autoconf.texi (Limitations of Usual Tools): Notes on "cc"
6870 2002-08-29 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
6872 * bin/autom4te.in (Request::load): Correctly test for "do" read
6875 2002-08-29 Akim Demaille <akim@epita.fr>
6877 * lib/Autom4te/General.pm (&xqx): New.
6878 (&xsystem): Use WIFEXITED and WEXITSTATUS instead of decoding $? by
6879 hand, which is not portable.
6881 * bin/autom4te.in: Use them.
6882 Use &error instead of die.
6883 * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
6886 2002-08-17 Paul Eggert <eggert@twinsun.com>
6888 * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove fc from the
6889 default list of compilers to try, since it was long ago superseded
6890 by the ksh fc builtin. Suggested by Steven G. Johnson.
6892 2002-07-31 Alexandre Duret-Lutz <duret_g@epita.fr>
6894 * doc/autoconf.texi (Invoking autom4te): End the option table,
6895 fixing a bug introduced by the previous patch.
6896 (Limitations of Make): Add a 'target lookup' subentry in the
6897 'VPATH' entry. Rewrite all `make' occurences as `@command{make}'.
6899 2002-07-29 Mark D. Roth <roth@feep.net>
6901 * bin/autom4te.in: Remove --include-envvar and --site-macro-subdir
6902 options and use $AUTOM4TE_PATH.
6903 * doc/autoconf.texi: Remove documentation of autom4te
6904 --include-envvar and --site-macro-subdir options and document
6905 use of $AUTOM4TE_PATH.
6906 * lib/autom4te.in: Remove --include-envvar and --site-macro-subdir
6907 arguments from each language section.
6909 2002-07-29 Paul Eggert <eggert@twinsun.com>
6911 * doc/install.texi: Include copyright symbol in copyright notice.
6913 * Makefile.am (MAKEINFO): Remove; it's a user-specified macro.
6915 (AM_MAKEINFOFLAGS): New macro.
6916 * doc/Makefile.am (MAKEINFO, AM_MAKEINFOFLAGS): Likewise.
6917 * Makefile.am (INSTALL): Use the new macros.
6918 Use -o rather than --output, since "missing" does not grok --output.
6920 2002-07-25 Alexandre Duret-Lutz <duret_g@epita.fr>
6922 * doc/autoconf.texi (Limitations of Make): Escaped newlines in
6923 comments do not always work. Never trust the exit status of
6926 2002-07-24 Kevin Ryde <user42@zip.com.au>
6928 * doc/autoconf.texi (Limitations of Make, Making testsuite Scripts):
6929 Untabify, since tabs are not enjoyed by texi2dvi and makeinfo.
6931 2002-07-23 Paul Eggert <eggert@twinsun.com>
6933 * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE):
6934 Use PATH="/nonexistent;.", not PATH=".;.", as FreeBSD ksh2002
6935 apparently treats PATH="nonexistent" as if it contained ".".
6936 Bug reported by Stefan `Sec' Zehl.
6938 2002-07-22 Alexandre Duret-Lutz <duret_g@epita.fr>
6940 * doc/autoconf.texi (Limitations of Make): Mention the special
6941 handling of the obj/ directory by BSD make.
6943 2002-07-20 Kevin Ryde <user42@zip.com.au>
6945 * doc/autoconf.texi (Limitations of Make): Add HP-UX IA-64 trailing
6948 2002-07-19 Akim Demaille <akim@epita.fr>
6950 * doc/autoconf.texi (Function Portability): `exit'.
6951 (Programming in M4sh): Ethymology of M4sh.
6953 2002-07-19 Akim Demaille <akim@epita.fr>
6955 * doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): More about $U.
6957 2002-07-18 Akim Demaille <akim@epita.fr>
6961 2002-07-18 Akim Demaille <akim@epita.fr>
6963 * config/config.guess, config/config.sub: Update.
6965 2002-07-18 Akim Demaille <akim@epita.fr>
6967 Handle LIBOBJS and LTLIBOBJS once for all, including Libtool's and
6970 * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): New.
6971 * lib/autoconf/status.m4 (AC_OUTPUT_COMMANDS_PRE): Call it.
6972 * tests/semantics.at (AC_REPLACE_FUNCS): Adjust.
6974 2002-07-18 Akim Demaille <akim@epita.fr>,
6975 Alexandre Duret-Lutz <duret_g@epita.fr>
6977 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Install
6978 _AC_AM_CONFIG_HEADER_HOOK for Automake 1.7.
6980 2002-07-17 Russ Allbery <rra@stanford.edu>
6982 * doc/autoconf.texi (Initializing configure): Clarify the
6983 description of the tarname default.
6985 2002-07-17 Andreas Buening <andreas.buening@nexgo.de>
6987 * lib/autoconf/functions.m4 (AC_FUNC_FORK): Don't set
6988 ac_cv_func_fork_works before running _AC_FUNC_FORK, do it if the
6991 2002-07-17 Akim Demaille <akim@epita.fr>
6993 * lib/Autom4te/General.pm (find_file): Browse the directories in
6994 the order they are given.
6996 2002-07-17 Akim Demaille <akim@epita.fr>
6998 * tests/wrapsh.as, tests/wrappl.as: Merge into...
6999 * tests/wrapper.as: this.
7000 * tests/Makefile.am, configure.ac: Adjust.
7002 2002-07-17 Mark D. Roth <roth@feep.net>
7004 * configure.ac: Add --enable-site-macro-dir option.
7005 * bin/Makefile.am: Expand @SITE_MACRO_DIR@.
7006 * bin/autom4te.in: Add --prepend-include, --include-envvar, and
7007 --site-macro-subdir options.
7008 * bin/autoconf.in: Add --prepend-include option.
7009 * bin/autoheader.in: Add --prepend-include option.
7010 * bin/autoreconf.in: Add --prepend-include option.
7011 * bin/autoscan.in: Add --prepend-include option.
7012 * bin/autoupdate.in: Add --prepend-include option.
7013 * doc/autoconf.texi: Document use of $AC_MACRO_PATH and site
7014 macro directory, remove note that include path directories are
7015 used in reverse order, and document --prepend-include option.
7016 * lib/autom4te.in: Use --prepend-include instead of --include.
7017 * tests/wrapsh.in: Use --prepend-include instead of --include.
7019 2002-07-17 Akim Demaille <akim@epita.fr>
7021 * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): `_' is allowed in
7023 * doc/autoconf.texi (Initializing configure): Adjust.
7025 2002-07-17 Akim Demaille <akim@epita.fr>
7027 * lib/autoconf/functions.m4 (AC_FUNC_REALLOC, _AC_FUNC_REALLOC)
7028 (_AC_FUNC_MALLOC): New.
7029 (AC_FUNC_MALLOC): Use the latter.
7030 Define HAVE_MALLOC to 0 if broken.
7031 * doc/autoconf.texi (Particular Functions): Adjust.
7033 2002-07-16 Akim Demaille <akim@epita.fr>
7035 * lib/autoconf/c.m4 (AC_C_BACKSLASH_A): New.
7036 * doc/autoconf.texi (C Compiler): Adjust.
7038 2002-07-09 Akim Demaille <akim@epita.fr>
7040 * doc/autoconf.texi: Properly set the ``header'' part.
7042 2002-07-09 Akim Demaille <akim@epita.fr>
7044 * doc/autoconf.texi (Systemology): Some about Darwin.
7046 2002-07-09 Alexandre Duret-Lutz <duret_g@epita.fr>
7048 * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
7049 Don't use AC_REQUIRE in AU_DEFUN.
7051 2002-07-09 Art Haas <ahaas@neosoft.com>
7053 * doc/autoconf.texi: Use @enddots{} or @dots{} where appropriate.
7055 2002-07-02 Alexandre Duret-Lutz <duret_g@epita.fr>
7057 * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
7058 bin/autoupdate.in, bin/ifnames.in, lib/Autom4te/General.pm,
7059 lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Add local variables
7060 so that Emacs setups GNU style for perl-mode and cperl-mode.
7062 2002-06-27 Paul Eggert <eggert@twinsun.com>
7064 * config/install-sh: Quote $src. Prefer || to test's -o option,
7065 as per "Limitations of Builtins".
7066 * tests/atspecific.m4 (AT_CHECK_ENV): Likewise, for && vs test -a.
7067 * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
7069 * tests/mktests.sh: Use grep instead of fgrep, as per
7070 "Limitations of Builtins".
7072 2002-06-15 Paul Eggert <eggert@twinsun.com>
7074 * tests/wrapsh.as (AUTOCONF, AUTOHEADER, AUTOM4TE, AUTOM4TE_CFG,
7075 autom4te_perllibdir): Set to top build dir or src dir as appropriate,
7076 so that we consistently test the just-built programs.
7077 * tests/wrappl.as: Likewise.
7079 2002-06-12 Paul Eggert <eggert@twinsun.com>
7081 * bin/autoconf.as (AUTOM4TE): Default to a fully qualified path
7082 name, so that symlinks to 'autoconf' work properly. Bug reported
7084 * bin/autoheader.in (AUTOM4TE): Likewise.
7085 * bin/autoreconf.in (autoconf, autoheader): Likewise.
7086 * bin/autoscan.in (autom4te): Likewise.
7087 * bin/autoupdate.in (autom4te): Likewise.
7089 * lib/autoconf/functions.m4 (_AC_LIBOBJ_FNMATCH): Also check for
7090 btowc, to fix a portability bug with diffutils-2.8.2/lib/fnmatch.c
7093 2002-06-11 Andreas Schwab <schwab@suse.de>
7095 * doc/autoconf.texi: Add more dir entries.
7097 2002-06-10 Alexandre Duret-Lutz <duret_g@epita.fr>
7099 * bin/autom4te.in ($cache): Don't define using `$me', the name
7100 of the cache should not depend on the name under which autom4te
7103 2002-06-07 Akim Demaille <akim@epita.fr>
7105 * tests/tools.at (autoconf: forbidden tokens, basic)
7106 (autoconf: forbidden tokens, exceptions): Adjust to the change of
7107 words in autom4te.in.
7109 2002-06-07 Peter Eisentraut <peter_e@gmx.net>
7111 * lib/autoconf/c.m4 (AC_LANG_PROGRAM(C)): Use
7112 _AC_LANG_PROGRAM_C_F77_HOOKS.
7114 2002-06-07 Akim Demaille <akim@epita.fr>
7116 * lib/autoconf/functions.m4 (AC_REPLACE_FUNC_FNMATCH): Typo,
7118 (AC_REPLACE_FNMATCH): this.
7119 * tests/mktests.sh (exclude_list): Exclude AC_REPLACE_FNMATCH,
7120 AC_FUNC_FNMATCH_GNU.
7122 2002-06-07 Akim Demaille <akim@epita.fr>
7124 * doc/autoconf.texi (Systemology): Point to Tru64 docs, and the
7125 Rosetta Stone for Unix.
7127 2002-06-07 Akim Demaille <akim@epita.fr>
7129 * bin/autom4te.in (warn_forbidden): When rejecting a token,
7130 suggest m4_pattern_allow.
7131 Suggested by Adam J. Richter.
7133 2002-06-07 Akim Demaille <akim@epita.fr>
7135 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
7136 ac_config_libobj_dir.
7137 (AC_CONFIG_LIBOBJ_DIR): New.
7138 * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Split into...
7139 (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): these.
7140 Use ac_config_libobj_dir to find the replacement files.
7141 (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU): Split into...
7142 (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_REPLACE_FNMATCH)
7143 (AC_REPLACE_FNMATCH_GNU): these.
7144 (AC_FUNC_GETLOADAVG): Use ac_config_libobj_dir.
7145 * doc/autoconf.texi (Particular Functions, Generic Functions): Adjust.
7146 * tests/mktests.sh (ac_exclude_list): Don't check
7147 AC_FUNC_GETLOADAVG as it requires getloadavg.c which is not shipped.
7149 2002-06-06 Paul Eggert <eggert@twinsun.com>
7151 * lib/autoconf/status.m4 (_AC_OUTPUT_LINKS): Fall back on cp
7154 * doc/autoconf.texi (Configuration Links): Likewise.
7155 (Limitations of Usual Tools): Prefer $(LN_S) to ln -s || ln.
7157 2002-06-05 Paul Eggert <eggert@twinsun.com>
7159 * config/config.guess, config/config.sub, config/texinfo.tex:
7160 Update from masters.
7162 2002-05-29 Paul Eggert <eggert@twinsun.com>
7164 * bin/autom4te.in ($m4): Do not assume that egrep and fgrep exist.
7165 * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
7166 * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR, AC_EGREP_CPP):
7168 * lib/autoconf/Makefile.am (check-local): Likewise.
7169 * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Likewise.
7170 * lib/autoconf/types.m4 (commentary only): Likewise.
7171 * lib/autotest/general.m4 (AT_INIT, AT_CHECK): Likewise.
7172 * lib/autotest/Makefile.am (check-local): Likewise.
7173 * lib/m4sugar/Makefile.am (check-local): Likewise.
7174 * tests/atspecific.m4 (AT_CONFIGURE_AC, AT_CHECK_DEFINES): Likewise.
7175 * tests/mktests.sh (egrep): New var; use it instead of plain egrep.
7177 * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): New macros.
7178 * doc/autoconf.texi (Particular Programs): Document them.
7179 (Limitations of Usual Tools): Warn that egrep and fgrep may not exist.
7182 2002-05-27 Paul Eggert <eggert@twinsun.com>
7184 * lib/autoconf/types.m4 (AC_TYPE_MBSTATE_T): New macro.
7185 * NEWS, doc/autoconf.texi (Particular Types): Document it.
7186 * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Require it
7187 instead of AC_MBSTATE_T, which never existed.
7189 2002-05-23 Akim Demaille <akim@epita.fr>
7191 * doc/autoconf.texi (Hosts and Cross-Compilation): Specify the
7192 version of Autoconf that is discussed.
7194 2002-05-22 Paul Eggert <eggert@twinsun.com>
7196 * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove cf77 and cft77
7197 from the default list of compilers to try. Suggested by
7199 * NEWS: Document the above.
7200 * doc/autoconf.texi (Fortran 77 Compiler): Don't suggest cf77.
7202 2002-05-17 Paul Eggert <eggert@twinsun.com>
7204 * lib/autoconf/types.m4 (AC_CHECK_MEMBER): Work correctly even if
7205 the member is itself an aggregate. Bug reported by Sergey Poznyakoff.
7206 This improves on an earlier suggestion by H. Peter Anvin.
7208 2002-05-16 Paul Eggert <eggert@twinsun.com>
7210 AC_FUNC_FNMATCH now tests only for POSIX compatibility.
7211 AC_FUNC_FNMATCH_GNU also tests for GNU extensions.
7212 Both macros now accept an optional source-dir arg.
7213 New macro AC_GNU_SOURCE to define _GNU_SOURCE.
7215 * NEWS: Document this.
7216 * doc/autoconf.texi (Particular Functions, UNIX Variants): Likewise.
7218 * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): New macro.
7219 (AC_FUNC_FNMATCH): Use it. Test only for POSIX conformance,
7220 not for GNU extensions; this undoes part of the 2000-11-03 change,
7221 reverting to 2.13-compatible behavior.
7222 Add new optional argument DIR.
7223 (AC_FUNC_FNMATCH_GNU): New macro.
7225 * lib/autoconf/specific.m4 (AC_GNU_SOURCE): New macro.
7227 2002-05-08 Paul Eggert <eggert@twinsun.com>
7229 * lib/autoconf/headers.m4 (AC_HEADER_TIOCGWINSZ):
7230 Don't require AC_SYS_POSIX_TERMIOS. The test is unnecessary,
7231 and it causes a 'test' syntax error if it fails.
7232 Bug reported by Stephen Gildea.
7234 * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
7235 If prototypes are supported, use them to check this at compile-time,
7236 instead of trying to check it at run-time. If we must do a run-time
7237 check, assume that setvbuf is standard when cross-compiling, as
7238 nonstandard setvbuf occurs only on ancient and unlikely hosts.
7239 Bug reported by Paul D. Smith.
7241 * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Add optional
7242 argument specifying location of getloadavg.c. This removes a
7243 FIXME. This idea was taken from Jim Meyering's implementation in
7245 * doc/autoconf.texi (Particular Functions): Document this.
7246 Also, mention HAVE_NLIST_H rather than NLIST_STRUCT, since
7247 that's what the code does; this fixes a bug reported by
7250 2002-05-03 Akim Demaille <akim@epita.fr>
7252 * bin/autoreconf.in (autoreconf): Rewrite to use Gettext's
7253 autopoint instead of gettextize.
7254 ($uses_alocal): Rename as...
7255 ($uses_aclocal): this.
7256 * doc/autoconf.texi (autoreconf Invocation): Adjust.
7257 Suggested by Bruno Haible.
7259 2002-05-03 Akim Demaille <akim@epita.fr>
7261 * lib/m4sugar/m4sugar.m4 (m4_map_sep): New.
7263 2002-04-29 Paul Eggert <eggert@twinsun.com>
7265 * bin/autoreconf.in (autoreconf): Don't age aclocal.m4's input
7266 files to be 1 second older; just set them to be the same time.
7267 Also, sleep 1 second after the first aclocal, to work around
7268 problems with sub-second time stamps on the input files.
7270 2002-04-29 Thien-Thi Nguyen <ttn@gnu.org>
7272 * doc/autoconf.texi: Mention "set -e -x" lossage
7273 under node "Limitations of Builtins".
7275 2002-04-29 Akim Demaille <akim@epita.fr>
7277 * doc/install.texi: Better wording for setting variables when
7279 From Christian Cornelssen.
7281 2002-04-29 Akim Demaille <akim@epita.fr>
7283 * tests/m4sh.at (LINENO): If testsuite itself is rewritten because
7284 of lack of $LINENO support, then the test will compare the $LINENO
7285 in testsuite vs. the lineno in the test file. This is wrong, of
7287 Be sure to protect it.
7288 Reported by Patrick Welche.
7290 2002-04-25 Akim Demaille <akim@epita.fr>
7292 * doc/autoconf.texi (Obsolete Macros): Typo.
7293 Reported by Vladimir Volovich.
7295 2002-04-25 Akim Demaille <akim@epita.fr>
7297 * bin/autoreconf.in (autoreconf): Don't let aclocal.m4 be older
7298 than some of the input files, hence, on the second run of aclocal,
7299 if some of its input are younger, make them older.
7300 Suggested by Paul Eggert.
7302 2002-04-25 Akim Demaille <akim@epita.fr>
7304 * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
7305 Thanks to Paul Eggert.
7307 2002-04-25 Akim Demaille <akim@epita.fr>
7309 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
7310 and ac_subst_vars be sh variables containing the list of
7311 AC_SUBST_FILES'ed and AC_SUBST'ed identifiers. Output them in the
7313 (_AC_INIT_PREPARE): Use them to log them.
7314 (_AC_SUBST, _AC_SUBST_SED_PROGRAM): Remove.
7315 (AC_SUBST, AC_SUBST_FILE): Instead of buliding the
7316 _AC_SUBST_SED_PROGRAM, store the list of output files/variables in
7317 _AC_SUBST_FILES and _AC_SUBST_VARS.
7318 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Adjust.
7320 2002-04-24 Akim Demaille <akim@epita.fr>
7322 * bin/autoreconf.in (autoreconf): Run automake after autoconf and
7323 autoheader, so that automake does not complain about a missing
7324 config.h.in that was to be created.
7326 2002-04-23 Akim Demaille <akim@epita.fr>
7328 * bin/autoheader.in (parse_args): --warning takes an argument.
7331 2002-04-22 Peter Eisentraut <peter_e@gmx.net>
7333 * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Remove gmon.out
7334 and bb.out when cleaning up.
7336 2002-04-22 Akim Demaille <akim@epita.fr>
7340 2002-04-22 Akim Demaille <akim@epita.fr>
7342 * tests/m4sh.at (LINENO): Fix the Zsh skip pattern.
7344 2002-04-22 Akim Demaille <akim@epita.fr>
7346 * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
7348 Reported by Gregory Giannoni.
7350 2002-04-22 Akim Demaille <akim@epita.fr>
7352 * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
7353 Fixes false failures on Darwin.
7355 2002-04-21 Paul Eggert <eggert@twinsun.com>
7357 * TODO, bin/autoupdate.in, doc/autoconf.texi,
7358 lib/autoconf/general.m4, lib/autoconf/libs.m4,
7359 lib/autoconf/status.m4, lib/m4sugar/m4sugar.m4, tests/m4sh.at,
7360 tests/tools.at: Minor spelling and grammar fixes.
7362 2002-04-20 Paul Eggert <eggert@twinsun.com>
7364 * doc/autoconf.texi (Shell Substitutions): Fix typos in yesterday's
7365 ZSH_VERSION fixes. Bug reported by Raja R Harinath.
7366 * lib/autotest/general.m4 (AT_INIT): Likewise.
7367 * tests/atgeneral.m4 (AT_INIT): Likewise.
7369 2002-04-19 Paul Eggert <eggert@twinsun.com>
7371 * NEWS, TODO, bin/autom4te.in, bin/autoreconf.in, bin/autoupdate.in,
7372 doc/autoconf.texi, lib/freeze.mk, lib/Autom4te/Struct.pm,
7373 lib/autoconf/autoheader.m4, lib/autoconf/c.m4,
7374 lib/autoconf/functions.m4, lib/autoconf/general.m4,
7375 lib/autoconf/lang.m4, lib/autoconf/libs.m4, lib/autoscan/identifiers,
7376 lib/autotest/general.m4, lib/m4sugar/m4sh.m4, tests/atgeneral.m4,
7377 tests/atspecific.m4, tests/semantics.at, tests/torture.at:
7378 Minor spelling and grammar fixes.
7380 * doc/autoconf.texi: Follow the outline suggested in the GNU
7381 Sample Texts sections of the Texinfo 4.2 manual. Most
7382 importantly, this makes sure that the copyright notices appear in
7383 all output formats. You probably need Texinfo 4.2 to generate
7386 Fix some bugs when using "$@" when there might be zero positional
7387 arguments in cases where this matters.
7389 * bin/autoconf.as: Rewrite so that the problem does not come up.
7390 * lib/autoconf/programs.m4 (AC_CHECK_PROG): Likewise.
7391 * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
7392 * lib/autotest/general.m4 (AT_INIT): Likewise.
7394 * bin/autoheader.in: Use 'case' statement to work around problem.
7395 * bin/auto4mte.in: Likewise.
7396 * bin/autoreconf.in: Likewise.
7397 * bin/autoscan.in: Likewise.
7398 * bin/autoupdate.in: Likewise.
7399 * bin/ifnames.in: Likewise.
7401 * doc/autoconf.texi (Shell Substitutions): Document the problem.
7403 * lib/autotest/general.m4 (AT_INIT):
7404 Use Zsh alias to work around problem.
7405 * tests/atgeneral.m4 (AT_INIT): Likewise.
7407 * tests/c.at: We can't have zero arguments, so remove workaround
7408 that is not portable to Zsh.
7410 2002-04-19 Alexandre Duret-Lutz <duret_g@epita.fr>
7412 * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
7413 from aclocal.m4 too.
7415 2002-04-12 Akim Demaille <akim@epita.fr>
7417 * tests/wrappl.as: New, M4sh precursor of wrappl.in.
7419 2002-04-10 Akim Demaille <akim@epita.fr>
7421 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Install the Zsh
7422 workaround for ${1+"$@"}.
7423 * doc/autoconf.texi (Shell Substitutions): Explain it.
7424 From Oliver Kiddle and Peter Stephenson.
7426 Have M4sh perform minimal shell sanitizing.
7428 * lib/m4sugar/m4sh.at (AS_SHELL_SANITIZE): Split the `_AS_PREPARE_*'
7430 (_AS_PREPARE): this new macro.
7432 (AS_INIT): Invoke AS_SHELL_SANITIZE.
7433 * tests/m4sh.at (AT_DATA_LINENO): Use _AS_PREPARE.
7435 Adjust Autoconf and Autotest.
7437 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Don't invoke
7438 AS_SHELL_SANITIZE, AS_INIT did it, but invoke AS_PREPARE.
7439 * lib/autotest/general.m4 (AT_INIT): Likewise.
7440 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
7441 Invoke _AS_PREPARE (not AS_PREPARE) in addition to
7444 Use this M4sh to generate Autoconf's shell scripts.
7446 * tests/wrapsh.as: New, precursor of wrapsh.in.
7447 * tests/Makefile.am: Include lib/freeze.mk to get the dependencies
7448 on Autotest and M4sh.
7449 ($(TESTSUITE)): Use $(autotest_m4f_dependencies).
7450 (wrapsh.in): New target.
7451 * bin/autoconf.as: New, precursor of autoconf.in.
7452 (autoconf.in): New target.
7454 2002-04-09 Alexandre Duret-Lutz <duret_g@epita.fr>
7456 * doc/autoconf.texi (Limitations of Make): Mention the issue
7457 with indented comments in rules.
7459 2002-04-09 Andreas Schwab <schwab@suse.de>
7461 * lib/autoconf/status.m4 (_AC_SRCPATHS): Handle empty
7462 ac_top_builddir when setting ac_abs_top_builddir.
7464 2002-04-06 Kevin Ryde <user42@zip.com.au>
7466 * doc/autoconf.texi (Systemology): Add link to Unix V7 online docs.
7467 (Portable Shell): Cross reference to Systemology.
7469 2002-04-05 Akim Demaille <akim@epita.fr>
7471 * bin/autoreconf.in (autoreconf): Be sure to accumulate the
7472 directories when descending in a SUBDIRS.
7473 Reported by Ezra Peisach.
7475 2002-04-04 Andreas Schwab <schwab@suse.de>
7477 * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
7478 contains no literal separators.
7480 2002-04-03 Akim Demaille <akim@epita.fr>
7482 * lib/autoconf/status.m4 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER)
7483 (_AC_CONFIG_COMMAND, _AC_CONFIG_LINK): New.
7484 Use dnl, not the KILL diversion.
7486 (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS)
7487 (AC_CONFIG_LINKS): here.
7489 Don't use the KILL diversion, as it kills spurious output, which
7490 results in failures being hidden.
7491 Use m4_defn where appropriate.
7492 (AC_CONFIG_IF_MEMBER): Kill the real bug: a spurious parenthesis
7493 after the second argument.
7495 * lib/autom4te.in (Autoconf, Autotest, M4sh): Don't pass --warning
7496 syntax, as it is provided by M4sugar.
7497 * tests/torture.at (Multiple AC_CONFIG_FILES): New.
7499 2002-04-03 Andreas Schwab <schwab@suse.de>
7501 * lib/m4sugar/m4sugar.m4 (m4_bmatch): Make sure m4_bregexp is not
7502 expanded if $# <= 2.
7504 * bin/autoreconf.in (autoreconf): Run automake after rerunning
7507 2002-04-03 Akim Demaille <akim@epita.fr>
7509 * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT)
7510 (_AC_COMPILER_EXEEXT_REJECT): New.
7511 Also recognize *.bb and *.bbg as compilation byproducts.
7512 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT_O)
7513 (_AC_COMPILER_OBJEXT): Use them.
7514 Fixes Debian #138666.
7516 2002-04-02 Peter Eisentraut <peter_e@gmx.net>
7518 Integrate AC_PROG_CC_STDC into AC_PROG_CC.
7520 * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Rename to _AC_PROG_CC_STDC.
7521 AU_DEFUN old name. Use _AC_COMPILE_IFELSE.
7522 (AC_PROG_CC): Call _AC_PROG_CC_STDC.
7523 (AC_C_INLINE): Do not require AC_PROG_CC_STDC.
7525 (AC_C_INLINE): Same.
7526 (AC_C_PROTOTYPES): Same. Require AC_PROG_CC instead.
7527 * doc/autoconf.texi, NEWS: Document.
7528 * tests/mktests.sh (au_exclude_list): Add AC_PROG_CC_STDC and
7531 2002-04-02 Akim Demaille <akim@epita.fr>
7533 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
7534 _AS_MKDIR_P_PREPARE.
7536 2002-03-28 Kevin Ryde <user42@zip.com.au>
7538 * lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
7539 to avoid versions of HP C which don't allow that.
7541 2002-03-27 Paul Eggert <eggert@twinsun.com>
7543 * lib/m4sugar/m4sh.m4 (_AS_BASENAME_PREPARE): New macro.
7544 (AS_SHELL_SANITIZE): Invoke it.
7545 (AS_BASENAME): AS_REQUIRE it, and use $as_basename.
7547 2002-03-26 Akim Demaille <akim@epita.fr>
7549 * doc/autoconf.texi (Portable Shell): Add pointers to FAQs.
7551 2002-03-26 Akim Demaille <akim@epita.fr>
7553 * doc/autoconf.texi (Introduction): The GNATS base moved.
7555 2002-03-25 Paul Eggert <eggert@twinsun.com>
7557 * tests/m4sh.at: Don't rely on "PATH=test:$PATH test-1" working
7558 as POSIX requires, as it doesn't work with Zsh.
7559 * doc/autoconf.texi (Assignments): Document the problem.
7561 2002-03-25 Alexandre Duret-Lutz <duret_g@epita.fr>
7563 * doc/autoconf.texi (Limitations of Make): Mention more issue
7564 about VPATH, overriding of macros in sub-makes, and handling of
7567 2002-03-21 Paul Eggert <eggert@twinsun.com>
7569 * doc/autoconf.texi (Here-Documents): Mention Solaris 8 dtksh
7570 problem with here-document buffer boundaries.
7572 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Unset ENV and BASH_ENV
7573 when reinvoking the shell, to work around problems with installers
7574 who put strange things like "cd" commands in their environments.
7576 2002-03-19 Akim Demaille <akim@epita.fr>
7578 * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/.
7581 2002-03-19 Akim Demaille <akim@epita.fr>
7583 * bin/autoscan.in (scan_file): Specify the location in `&used'
7587 2002-03-19 Akim Demaille <akim@epita.fr>
7589 * doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.
7590 From Nishio Futoshi.
7592 2002-03-19 Akim Demaille <akim@epita.fr>
7594 * lib/m4sugar/m4sugar.m4 (m4_define_default, m4_fst, m4_map): New.
7596 2002-03-18 Paul Eggert <eggert@twinsun.com>
7598 * doc/autoconf.texi (Programming in M4sh): Add AS_MKDIR_P.
7599 (Limitations of Usual Tools): Add mkdir section.
7601 * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): New macro.
7602 (AS_MKDIR_P): Require it. Use mkdir -p if available, falling
7603 back on AS_DIRNAME to compute prefixes otherwise; this is
7604 roughly what mkinstalldirs does. That way, we need not have
7605 our own filename disassembler. The old disassembler did not
7606 work with Solaris 8 dtksh, which is ksh Version M-12/28/93d.
7608 * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP):
7609 Create at_test_all by a series of assignments,
7610 not by a single assignment of a long string. The latter causes ksh
7611 version 11/16/88g to silently misbehave on OpenServer 5.0.6a,
7612 presumably because of a buffer overrun.
7614 2002-03-14 Paul Eggert <eggert@twinsun.com>
7616 * lib/autotest/general.m4 (at_times_skip):
7617 Renamed from at_times. Now a boolean.
7618 ksh93 Version M-12/28/93d doesn't like 'x=times; $x'; it
7619 says 'times: not found'.
7621 2002-03-14 Akim Demaille <akim@epita.fr>
7623 * bin/autoreconf.in (&study_gettextize): New.
7624 (&autoreconf): Handle newest gettextize.
7625 Rerun aclocal if needed.
7626 Suggested by Andreas Schwab.
7628 2002-03-13 Akim Demaille <akim@epita.fr>
7630 * doc/autoconf.texi (Special Shell Variables): More about IFS.
7632 2002-03-13 Akim Demaille <akim@epita.fr>
7634 * doc/autoconf.texi (Header Portability): New.
7635 Add information about stdint.h and inttypes.h from Paul Eggert.
7637 2002-03-13 Akim Demaille <akim@epita.fr>
7639 * doc/autoconf.texi (Limitations of Usual Tools): Some about `cp
7643 2002-03-12 Akim Demaille <akim@epita.fr>
7645 * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): AS_REQUIRE, not
7648 2002-03-11 Andreas Schwab <schwab@suse.de>
7650 * configure.ac: Explicitly check for EMACS since AM_PATH_LISPDIR
7651 does not do it if --with-lispdir is given.
7653 2002-03-08 Akim Demaille <akim@epita.fr>
7657 2002-03-08 Akim Demaille <akim@epita.fr>
7659 * doc/autoconf.texi (Subdirectories): Clarify that the
7660 subdirectory should exist.
7662 2002-03-08 Akim Demaille <akim@epita.fr>
7664 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
7666 2002-03-08 Akim Demaille <akim@epita.fr>
7668 * bin/autom4te.in (&handle_m4): Do not foreach with `$_' as it
7669 aliases the actual variables, and modifications of the former
7672 2002-03-08 Akim Demaille <akim@epita.fr>
7674 * bin/autom4te.in (&handle_m4): Protect us from corrupted file
7675 because of C-c: have m4 output in tmp files, then mv them.
7677 2002-03-08 Akim Demaille <akim@epita.fr>
7679 * bin/autoconf.in, bin/autoheader.in, bin/autom4te.in,
7680 * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
7681 * bin/ifnames.in: Copyright update.
7683 2002-03-08 Akim Demaille <akim@epita.fr>
7685 * doc/autoconf.texi (Invoking autom4te): New.
7687 2002-03-05 Akim Demaille <akim@epita.fr>
7689 * doc/autoconf.texi (Specifying Names): Clarification suggested by
7692 2002-03-05 Akim Demaille <akim@epita.fr>
7696 2002-03-04 Akim Demaille <akim@epita.fr>
7698 * doc/autoconf.texi (AC_LIBOBJ vs. LIBOBJS): New.
7699 * lib/autoconf/general.m4 (AC_INIT): More informative error
7702 2002-03-04 Akim Demaille <akim@epita.fr>
7704 * lib/freeze.mk ($(build_libdir)/m4sugar/version.m4): New, for
7707 2002-03-04 Akim Demaille <akim@epita.fr>
7709 * doc/autoconf.texi (Transforming Names): Equality between target
7710 and host is irrelevant.
7711 (Specifying Names, Canonicalizing): Remove all references to the
7712 backward compatibility hooks. Rather, collect them all into...
7713 (Hosts and Cross-Compilation): this new section.
7714 * doc/install.texi (System Type): Ditto.
7715 * lib/autoconf/general.m4 (AC_CANONICAL_HOST): Explicitly state
7716 that `--host' implies cross-compilation.
7718 2002-03-04 Akim Demaille <akim@epita.fr>
7720 * doc/autoconf.texi (Evaluation Macros): New.
7721 * lib/m4sugar/m4sugar.m4 (m4_lquote): Remove, it is totally
7723 (_m4_foreach): Define the variant with immediate evaluation so
7724 that it contains exactly the items, not an expression which
7725 evaluation is the current item.
7726 (m4_re_string, m4_re_word): Don't over quote them.
7728 2002-03-04 Akim Demaille <akim@epita.fr>
7730 Instead of having stacking `shift's evaluated at the end, let
7731 `foreach' loops immediately evaluate them.
7733 * lib/m4sugar/m4sugar.m4 (m4_quote, m4_dquote): Use $@ rather than
7734 $*. This is the n-th time I change my mind, but hopefully this is
7737 (m4_text_wrap): Use m4_foreach, which is finally correct _and_
7739 (m4_foreach_quoted, m4_car_quoted, _m4_foreach_quoted): Remove, as
7740 it was only a hack for m4_text_wrap.
7741 (m4_car2): Remove, replaced by...
7743 (_m4_foreach): Adjust.
7744 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust, and use
7745 m4_bpatsubst for clarification.
7747 2002-03-04 Akim Demaille <akim@epita.fr>
7749 * doc/autoconf.texi (Changequote is Evil): New.
7751 2002-03-03 Kevin Ryde <user42@zip.com.au>
7753 * doc/autoconf.texi (Portable Shell): Mention 32-byte #! length limit
7754 on old systems like SunOS.
7756 2002-03-01 Peter Eisentraut <peter_e@gmx.net>
7758 * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
7759 lib/autoconf/functions.m4, lib/autoconf/general.m4,
7760 lib/autoconf/headers.m4, lib/autoconf/lang.m4,
7761 lib/autoconf/programs.m4, lib/autoconf/status.m4: Improve spelling
7764 2002-02-28 Akim Demaille <akim@epita.fr>
7766 * lib/autotest/general.m4 (AT_INIT): Suggest a title to the
7769 2002-02-28 Kevin Ryde <user42@zip.com.au>
7771 * doc/autoconf.texi (Function Portability): Add va_copy and va_list.
7773 2002-02-25 Akim Demaille <akim@epita.fr>
7775 * lib/autoconf/functions.m4 (AC_FUNC_SETPGRP): Fix the test.
7778 2002-02-13 Alexandre Duret-Lutz <duret_g@epita.fr>
7780 * lib/Autom4te/XFile.pm (getline, getlines): New functions,
7781 translate \r\n to \n.
7783 2002-02-07 Akim Demaille <akim@epita.fr>
7787 2002-02-07 Akim Demaille <akim@epita.fr>
7789 Fix Autoconf PR/209.
7790 Also reported by Frank Denis.
7792 * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Don't over quote.
7794 2002-02-07 Akim Demaille <akim@epita.fr>
7796 Fix Autoconf PR/207:
7797 AC_PREFIX_PROGRAM fails with dashed program names
7799 * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Just use a fresh
7800 variable when looking for the prefix program.
7801 Now it also works for shell variables.
7803 2002-02-07 Akim Demaille <akim@epita.fr>
7805 * doc/autoconf.texi (Limitations of Builtins): More about
7808 2002-02-06 Akim Demaille <akim@epita.fr>
7810 * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Don't output empty
7811 case/esac, some shells don't support it.
7812 Reported by Zack Weinberg.
7813 * tests/torture.at (AC_CONFIG_COMMANDS with empty commands): New.
7815 2002-02-06 Akim Demaille <akim@epita.fr>
7817 * lib/autotest/general.m4 (AT_INIT): When handling --keywords, be
7818 sure not to introduce newlines in at_groups.
7819 * lib/autotest/Makefile.am (autotest.m4f): Typo.
7821 2002-02-06 Akim Demaille <akim@epita.fr>
7823 * tests/torture.at (Configuring subdirectories): Skip if aclocal
7826 2002-02-05 Paul Eggert <eggert@twinsun.com>
7828 * doc/autoconf.texi (Specific Compiler Characteristics):
7829 Describe HP-UX cc bug workaround more accurately.
7830 * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast to long,
7832 * tests/semantics.at (AC_CHECK_SIZEOF): Check non-GCC
7833 cross-compilers, too. This undoes some of the most recent change
7836 2002-02-05 Akim Demaille <akim@epita.fr>
7838 * tests/Makefile.am (check_SCRIPTS): Use it, instead of WRAPPERS,
7839 to make sure they are up to date when `check' is run.
7841 2002-02-05 Akim Demaille <akim@epita.fr>
7843 * doc/autoconf.texi (Making testsuite Scripts): Document
7846 2002-02-05 Akim Demaille <akim@epita.fr>
7848 * lib/freeze.mk: New.
7850 2002-02-05 Akim Demaille <akim@epita.fr>
7852 Implement `autom4te --freeze'.
7854 * bin/autom4te.in (&freeze): New.
7855 * lib/autoconf/autoconf.m4, lib/autotest/general.m4,
7856 * lib/m4sugar/m4sh.m4: Don't include files given by autom4te.
7858 2002-02-05 Akim Demaille <akim@epita.fr>
7860 * bin/autom4te.in (&parse_args): Implement `frozen files are
7861 optional are the sum of the previous files on the command line'.
7862 Also, pass `--reload-state=' on them, so...
7864 * lib/autom4te.in (Autotest, Autoconf): Rely on M4sh.
7865 (M4sh): Rely on M4sugar.
7866 (Autotest, M4sh, M4sugar): Use frozen files.
7868 2002-01-31 Akim Demaille <akim@epita.fr>
7870 * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Accept $4.
7871 * doc/autoconf.texi (Initializing configure): Adjust.
7873 2002-01-30 Akim Demaille <akim@epita.fr>
7875 * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
7876 alphanumeric to `-' instead of `_'.
7878 2002-01-30 Akim Demaille <akim@epita.fr>
7880 * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
7881 for plain code, the other for cross-compilation code. The latter
7882 is now run with GCC only.
7883 * doc/autoconf.texi (Compilers and Preprocessors): New.
7885 2002-01-30 Akim Demaille <akim@epita.fr>
7887 * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Support pre-defined
7889 * doc/autoconf.texi (Initializing configure): Explain how to
7890 change AC_INIT default values.
7892 2002-01-29 Akim Demaille <akim@epita.fr>
7894 * tests/torture.at (Configuring subdirectories): Use configure.in,
7895 so that aclocal 1.4 works.
7896 Reported by Alexandre Duret-Lutz and Larry Schmitt.
7898 2002-01-28 Akim Demaille <akim@epita.fr>
7900 * doc/autoconf.texi (Writing testsuite.at): AT_CLEANUP no longer
7903 2002-01-28 Akim Demaille <akim@epita.fr>
7905 * lib/autotest/general.m4 (AT_INIT): Don't be ridiculous: adjust
7906 AUTOTEST_PATH *after* it was set.
7907 Don't put `.' in the PATH: the user should be precise and `./' if
7908 needed. In addition, given that the test suite does some `cd', if
7909 `.' is in the path, the `tested programs' sections will report
7910 programs found in the test suite's directory, while during the
7911 tests (performed in their own directory), these programs are no
7912 longer visible. In other words, the results is confusing and
7914 * tests/m4sh.at: Adjust: don't rely on `.' being in the PATH.
7916 2002-01-24 Akim Demaille <akim@epita.fr>
7920 2002-01-24 Akim Demaille <akim@epita.fr>
7922 * bin/autoheader.in, bin/autoconf.in, bin/autoscan.in,
7923 * doc/autoconf.texi: Finally add Akim as an author.
7925 2002-01-24 Akim Demaille <akim@epita.fr>
7927 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Use PATH_SEPARATOR.
7928 (_AS_PATH_SEPARATOR_PREPARE): Don't expect $SHELL to be
7929 Bourne. Use /bin/sh.
7930 From Andreas Buening.
7932 2002-01-24 Akim Demaille <akim@epita.fr>
7934 * config/config.guess, config/config.sub, config/texinfo.tex:
7935 Update from masters.
7937 2002-01-24 Akim Demaille <akim@epita.fr>
7939 * Makefile.am (AUTOMAKE_OPTIONS): 1.5b.
7940 * config/auxdir.m4, config/cond.m4, config/depend.m4,
7941 * config/init.m4, config/install-sh.m4, config/lispdir.m4,
7942 * config/missing.m4, config/sanity.m4, config/select.m4,
7943 * config/strip.m4: Remove, to ease sync'ing with any version of
7946 2002-01-24 Akim Demaille <akim@epita.fr>
7948 * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS)
7949 (_AC_INIT_PREPARE): Support -n as --no-create, as documented.
7950 Reported by Geir Ove Myhr.
7952 2002-01-21 Akim Demaille <akim@epita.fr>
7954 * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc.
7956 2002-01-21 Akim Demaille <akim@epita.fr>
7958 * lib/Autom4te/General.pm (getopt): Use a more GNUish error
7959 message on invalid options.
7960 * bin/autom4te.in (parse_args): Don't use
7961 Autoconf::General::getopt with non valid options.
7963 2002-01-17 Jim Meyering <meyering@lucent.com>
7965 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Initialize
7966 $ac_cv_exeext so we don't use an old, invalid, cached value.
7968 2002-01-11 Akim Demaille <akim@epita.fr>
7970 * lib/autoconf/functions.m4 (AC_FUNC_STRNLEN): New, from Jim
7972 * doc/autoconf.texi (Function Portability): Document the strnlen
7974 (Particular Functions): Document AC_FUNC_STRNLEN.
7975 * lib/autoscan/functions: Adjust.
7977 2002-01-06 Akim Demaille <akim@epita.fr>
7979 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't create
7980 package.m4, since is really depends upon configure.ac, not
7982 * doc/autoconf.texi (testsuite Scripts): Adjust.
7983 * tests/Makefile.am (package.m4): New.
7984 EXTRA_DIST it since its a source.
7986 2002-01-06 Akim Demaille <akim@epita.fr>
7988 * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Move the AC_SUBST
7989 of PACKAGE_NAME, PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING,
7990 and PACKAGE_BUGREPORT from here...
7991 (_AC_INIT_DEFAULTS): to here, since it is unrelated to the
7993 (_AC_INIT_PREPARE): AC_DEFINE these symbols.
7994 * lib/autotest/general.m4: Use AT_PACKAGE_*, not PACKAGE_*.
7995 (AT_INIT): No longer catch `^PACKAGE_(BUGREPORT|STRING)$'.
7996 * tests/tools.at (autoheader): Adjust.
7997 * tests/atspecific.m4 (AT_CHECK_DEFINES): Adjust.
7999 2002-01-06 Akim Demaille <akim@epita.fr>
8001 * bin/autoscan.in (scan_file): Use `&used'.
8003 2002-01-03 Akim Demaille <akim@epita.fr>
8005 * doc/autoconf.texi (Output): Improved wording regarding use of
8009 2001-12-18 Kevin Ryde <user42@zip.com.au>
8011 * doc/autoconf.texi (Function Portability): Add notes on sscanf
8012 sometimes needing writable input.
8014 2001-12-17 Jim Meyering <meyering@lucent.com>
8016 * doc/autoconf.texi (New Macros): Tweak wording.
8018 2001-12-14 Akim Demaille <akim@epita.fr>
8020 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): We cleaning up the
8021 trailing files, don't apply `-rf' to files which might not be
8022 created by configure (core, core.*, and *.core), but just `rm -f'.
8023 Suggested by Jonathan Kamens.
8025 2001-12-14 Aaron M. Ucko <amu@alum.mit.edu>
8027 * lib/autoconf/general.m4: Avoid duplicates in `$ac_configure_args'.
8029 2001-12-14 Akim Demaille <akim@epita.fr>
8031 * Makefile.am (MAINTAINERCLEANFILES): Remove configure.
8033 2001-12-13 Peter Eisentraut <peter_e@gmx.net>
8035 * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename buildpath to
8036 abs_builddir, top_buildpath to abs_top_builddir, srcpath to
8037 abs_srcdir, top_srcpath to abs_top_srcdir.
8038 (_AC_OUTPUT_FILES): Adjust.
8039 * NEWS, doc/autoconf.texi, lib/autoconf/autotest.m4,
8040 * tests/atspecific.m4, tests/autoreconf.in, tests/tools.at,
8041 * tests/wrappl.in, tests/wrapsh.in: Adjust.
8043 2001-12-12 Steven G. Johnson <stevenj@alum.mit.edu>
8045 * lib/autoconf/fortran.m4 (_AC_PROG_F77_V_OUTPUT): Fix failed
8046 C/Fortran linking on HP/UX, by extracting the Fortran library
8047 search path from the LPATH line in the $F77 -v output.
8049 2001-12-12 Kevin Ryde <user42@zip.com.au>
8051 * doc/autoconf.texi (File Descriptors): Use a clearer layout for the
8052 forbidden file descriptors table.
8054 2001-11-26 Akim Demaille <akim@epita.fr>
8056 * bin/autoscan.in (%c_keywords): Build it at top level.
8057 Map to 1 in order to simplify its uses.
8059 2001-11-26 Akim Demaille <akim@epita.fr>
8061 * bin/autoscan.in (&scan_c_file, &scan_sh_file, &scan_makefile):
8062 Remove $filepath, useless.
8063 (&scan_makefile): Don't remove the $(FOO), ${FOO} and @FOO@
8064 variables, they are really part of the tokens.
8065 Split the input line on spaces and then look for tokens.
8066 Now autoscan ceases to ask for AC_PROG_LEX for the package Bison
8067 because of `lex$U.$(OBJEXT)'.
8068 (&scan_files): Use "@list" instead of join.
8069 * doc/Makefile.am (CLEANFILES): Add *.fns.
8071 2001-11-26 Akim Demaille <akim@epita.fr>
8073 * tests/autoreconf.in, tests/autom4te.in, tests/autoupdate.in:
8074 Remove, replaced by...
8075 * tests/wrappl.in: Be common for all the Perl executables.
8076 In particular autoscan and autoheader want -I.
8077 * configure.ac: Adjust.
8078 * lib/autoscan/headers: errno.h is portable.
8080 2001-11-26 Akim Demaille <akim@epita.fr>
8082 * bin/autoscan.in (used): New.
8085 2001-11-26 Akim Demaille <akim@epita.fr>
8087 * bin/autoscan.in (&scan_c_file): Better parsing of CPP
8089 (&scan_sh_file): Remove a duplicate pattern.
8090 (&check_configure_ac): Use long options.
8091 * lib/autoscan/headers (alloca.h): Check with AC_FUNC_ALLOCA.
8093 2001-11-26 Akim Demaille <akim@epita.fr>
8095 * bin/autoscan.in (scan_c_file): Fix the handling of C comments.
8096 Before, having a line containing the opening of a multi line
8097 comment made the whole line be ignored.
8099 2001-11-26 Akim Demaille <akim@epita.fr>
8101 * doc/autoconf.texi (Using an Autotest Test Suite): New.
8102 (testsuite Scripts): Be one of its subsection.
8103 (Autotest Logs): New.
8105 2001-11-26 Akim Demaille <akim@epita.fr>
8107 Test groups are now run two directories deeper.
8109 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Replace srcdir,
8110 top_srcdir and top_builddir with at_srcdir, at_top_srcdir and
8112 * lib/autotest/general.m4 (AT_INIT): Compute srcdir,
8113 top_srcdir, builddir and top_builddir.
8114 Use `at_*dir' relatively to the directory containing the
8115 suite, use `*dir' when relatively to the current group dir.
8117 2001-11-25 Joseph S. Myers <jsm28@cam.ac.uk>
8119 * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
8120 lib/autoconf/functions.m4, lib/autoconf/headers.m4,
8121 tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
8124 2001-11-22 Alexandre Duret-Lutz <duret_g@epita.fr>
8126 * doc/autoconf.texi (Using System Type): Add an example of `case
8127 $host' usage so people quit using `case $target' everywhere.
8129 2001-11-22 Akim Demaille <akim@epita.fr>
8131 * doc/autoconf.texi (Installation Directory Variables): Englishoes
8132 spotted by Jim Meyering.
8134 2001-11-16 Paul Eggert <eggert@twinsun.com>
8136 This patch implements a `long double' suggestion by Oliver Kiddle.
8138 * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Make the array
8139 static, to catch errors if the value isn't known at compile-time
8140 and the compiler supports dynamic arrays. Change its name from
8141 `_array_' to `test_array' to avoid potential name clashes.
8142 (AC_C_LONG_DOUBLE): Make it a compile-time test, not a run-time
8143 test. Do not define HAVE_LONG_DOUBLE if `long double' is no
8144 better than double. Catch a bug in GCC 2.95.2 x86.
8145 * doc/autoconf.texi (C Compiler): Document the above.
8148 2001-11-13 Akim Demaille <akim@epita.fr>
8150 * tests/m4sh.at (LINENO): Protect from autom4te's substitution by
8152 * tests/tools.at: Don't protect dnl, AT_DATA_M4SH does.
8154 2001-11-13 Akim Demaille <akim@epita.fr>
8156 * lib/autotest/general.m4 (AT_INIT): After having run the test
8157 group, go back to the initial directory, not to at_suite_dir.
8159 2001-11-13 Akim Demaille <akim@epita.fr>
8161 * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH)
8162 (AT_DATA_AUTOCONF): Also protect @&t@ from autom4te.
8163 (AT_CHECK_AUTOCONF, AT_CHECK_AUTOHEADER): Pass no --include
8165 (AT_CHECK_CONFIGURE): Use absolute paths.
8166 (_AT_CHECK_AC_MACRO): Create aclocal.m4 with AC_STATE_SAVE in it.
8167 The problem is still the old one: there is no means in M4 (that I
8168 know about) to create a defining macro, because there is no means
8169 to create `$1' etc., therefore, the defining macro ``swallows''
8170 all the arguments meant to the defined macro.
8172 2001-11-13 Akim Demaille <akim@epita.fr>
8174 * tests/atspecific.m4 (AT_DATA_AUTOCONF): New.
8175 (AT_CONFIGURE_AC): Output the definition of AC_STATE_SAVE in
8177 * tests/aclocal.m4: Remove, as it is no longer used.
8179 2001-11-13 Akim Demaille <akim@epita.fr>
8181 * lib/autotest/general.m4: Change `tests?' into `groups?' in
8182 variable names when referring to a single test group, or to
8183 `suite' when referring to the whole test suite.
8184 `at_last_test' is removed: m4 compute at_format itself.
8185 (at_stdout, at_stder1, at_stderr): New variables.
8186 (AT_CHECK): Use them.
8188 2001-11-13 Akim Demaille <akim@epita.fr>
8190 * lib/autotest/general.m4 (AT_INIT): Be sure to put `.', relative,
8192 Create `testsuite.dir/003/run' instead of `testsuite.003'.
8193 Do it as soon as a test fails, don't wait till the end of the test
8195 Don't remove $as_me.[0-9]*, since these files no longer exist.
8197 2001-11-13 Akim Demaille <akim@epita.fr>
8199 * tests/tools.at: Use absolute paths, since we are no longer run
8202 2001-11-13 Akim Demaille <akim@epita.fr>
8204 Now that tests are running in their own private dir, there is no
8205 need to list the files to remove at the end of tests groups.
8207 * lib/autotest/general.m4 (_AT_CLEANUP_FILE, AT_CLEANUP_FILES):
8208 (AT_data_files, at_data_files): Remove.
8209 (AT_CLEANUP, AT_DATA): Simplify.
8211 Remove the group dir if !debug && !failed.
8212 * tests/atspecific.m4: Adjust.
8214 2001-11-13 Akim Demaille <akim@epita.fr>
8216 Start a new layout for Autotest: `testsuite' creates
8217 `testsuite.dir' in which the at-check-line etc. files are to be
8218 found, and `testsuite.dir/003' where the test group 3 is run.
8220 * lib/autotest/general.m4 (AT_INIT): at_tests_dir,
8221 at_check_line_file, at_format, at_test_normalized, at_group_dir
8223 Create the directories.
8224 Use absolute paths for at- files.
8227 2001-11-11 Michael Matz <matz@kde.org>
8229 * m4sugar.m4 (_m4_foreach): Make it linear instead quadratic.
8231 (m4_car): Properly quote arguments.
8233 2001-11-13 Akim Demaille <akim@epita.fr>
8235 * tests/aclocal.m4 (AC_STATE_SAVE): s/LIBOBJS/LIB@&t@OBJS/ to cope
8236 with stricter rules on LIBOBJS.
8238 2001-11-12 Paul Eggert <eggert@twinsun.com>
8240 * lib/autoconf/c.m4 (AC_C_PROTOTYPES): Define __PROTOTYPES too.
8241 * doc/autoconf.texi (C Compiler): AC_C_PROTOTYPES now defines
8244 2001-11-12 Akim Demaille <akim@epita.fr>
8246 * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Use AC_CHECK_FUNCS.
8248 2001-11-12 Akim Demaille <akim@epita.fr>
8250 * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
8251 * lib/autoconf/functions.m4, lib/autoconf/general.m4,
8252 * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
8253 * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
8254 * lib/autoconf/types.m4: When invoking AC_DEFINE and friends,
8255 specify to what the macro should be defined (typically to 1).
8257 2001-11-12 Akim Demaille <akim@epita.fr>
8259 * lib/autoconf/functions.m4 (AC_FUNC_STRTOD): AC_SUBST POW_LIB.
8262 2001-11-12 Akim Demaille <akim@epita.fr>
8264 * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
8265 AC_TRY_EVAL to run $LEX, not AC_TRY_COMMAND. This validates the
8266 definition used by Automake where LEX is +/- "${missing} lex" and
8267 `missing' itself contains variables.
8269 2001-11-12 Akim Demaille <akim@epita.fr>
8271 * lib/autotest/general.m4 (AT_INIT): Push KILL at the end.
8272 Now that M4sh pushes BODY, the comments were output at the end of
8275 2001-11-08 Akim Demaille <akim@epita.fr>
8277 * bin/autoreconf.in (&autoreconf): Run aclocal before tracing, so
8278 that we can trace macros from aclocal.m4.
8279 Trace AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL, since the latter is
8280 obsoleted, and redirect to the former anyway.
8281 Reported by Ralf Corsepius.
8283 2001-11-08 Akim Demaille <akim@epita.fr>
8285 * bin/autoreconf.in (&autoreconf): AC_CONFIG_SUBIDRS are to be
8286 processed only if present.
8287 * tests/torture.at (Configuring subdirectories): Use autoreconf
8288 instead of successive calls to autoconf.
8289 Add a nonexistent subdirectory to exercise the patch above.
8290 Reported by Ralf Corsepius.
8292 2001-11-08 Kevin Ryde <user42@zip.com.au>
8294 * doc/autoconf.texi (Limitations of Usual Tools): Note HP-UX cc
8295 doesn't accept .S files.
8297 2001-11-07 Akim Demaille <akim@epita.fr>
8299 * lib/m4sugar/m4sugar.m4 (m4_pattern_forbid): Accepts $2.
8300 * lib/autoconf/general.m4 (AC_INTI): Forbid LIBOBJS.
8301 (_AC_LIBOBJ): s/LIBOBJS/LIB@&t@OBJS/.
8302 * bin/autom4te.in (warn_forbidden): New.
8303 (handle_output): Use it.
8304 Read m4_pattern_forbid with messages.
8306 2001-11-05 Akim Demaille <akim@epita.fr>
8308 * bin/autom4te.in (--normalize): Remove.
8309 * lib/autom4te.in: Adjust.
8311 2001-11-05 Akim Demaille <akim@epita.fr>
8313 * tests/Makefile.am (testsuite): Rename this target as...
8314 ($(TESTSUITE)): this.
8317 2001-11-05 Alexandre Duret-Lutz <duret_g@epita.fr>
8319 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): When removing
8320 the --prefix option, also remove it's argument.
8322 2001-11-05 Akim Demaille <akim@epita.fr>
8324 * doc/autoconf.texi (testsuite Invocation): Update.
8325 (Writing testsuite.at): Update.
8327 2001-11-03 Akim Demaille <akim@epita.fr>
8329 * doc/autoconf.texi: s/@code/@command/ where appropriate.
8331 2001-11-03 Akim Demaille <akim@epita.fr>
8333 * lib/Autom4te/General.pm: (&catfile, &canonfile)
8334 (&file_name_is_absolute): New, wrappers around routines from
8336 Use and export them.
8337 (&find_configure_ac): Optionally take a directory where to look at.
8338 * bin/autoreconf.in (&parse_args): Trim the configure.ac part of
8340 Default @ARGV to `.', not find_configure_ac.
8341 (&autoreconf): Argument is a directory.
8342 Trace AC_CONFIG_SUBDIRS and schedule the subdirs for autoreconf'ing.
8343 * doc/autoconf.texi (autoreconf Invocation): Update.
8345 2001-11-03 Akim Demaille <akim@epita.fr>
8347 * lib/Autom4te/General.pm (@export_vars, @export_subs)
8348 (@export_forward_subs): New.
8349 Add basename, dirname, and fileparse.
8351 * bin/autoreconf.in (&autoreconf): Fix call to fileparse.
8352 Don't look for aclocal flags if we already know aclocal is not
8354 Move aclocal.m4t only if it exists.
8355 Reported by Ezra Peisach.
8357 2001-11-03 Akim Demaille <akim@epita.fr>
8359 * bin/autoreconf.in (&parse_args): Work only on the configure.ac
8360 passed on command line, defaulting to ./configure.ac if present.
8361 (&maybe_autoreconf, File::Find): Remove, unused.
8362 (&autoreconf): If autoconf is not used, don't try to trace.
8364 2001-11-02 Akim Demaille <akim@epita.fr>
8366 * configure.ac: Bump to 2.52g.
8368 2001-11-02 Akim Demaille <akim@epita.fr>
8372 2001-11-02 Akim Demaille <akim@epita.fr>
8374 * config/config.guess, config/config.sub, doc/standards.texi:
8375 * config/lispdir.m4: Update from masters.
8376 * configure.ac: Bump to 2.52f.
8378 2001-11-02 Akim Demaille <akim@epita.fr>
8380 * bin/autoreconf.in (&autoreconf): Set `$aclocal_flags' to ''.
8381 Don't run aclocal when aclocal.m4 is not from aclocal.
8383 Don't run libtoolize and gettextize if --install is not given.
8385 2001-11-01 Paul Eggert <eggert@twinsun.com>
8387 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): _AS_CR_PREPARE needs to
8388 be invoked before _AS_LINENO_PREPARE.
8389 (_AS_LINENO_PREPARE): Use as_cr_digits and as_cr_alnum rather
8390 than character ranges.
8392 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix NLS before
8393 invoking AS_BASENAME. Set the locale variables to 'C' if
8394 possible, as POSIX requires this to get the traditional
8396 * doc/autoconf.texi (Special Shell Variables): Describe the above.
8398 2001-10-31 Paul Eggert <eggert@twinsun.com>
8400 * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Do not surround body
8401 with {}, as that triggers a bug in Bash 2.05.
8403 (_AS_LINENO_PREPARE): Use Sed rather than
8404 Awk. Fix the sed prepass to work even if there are multiple
8405 instances of $LINENO on the same line. Do not substitute for
8406 other variables like $LINENOT. Do not check file dates; such a
8407 check is unreliable on sufficiently fast machines, and removing
8408 the check makes the code simpler and more reliable. Check for
8409 output and chmod failures.
8411 * doc/autoconf.texi (Special Shell Variables): Document
8414 2001-10-31 Akim Demaille <akim@epita.fr>
8416 * tests/Makefile.am (atconfig): Remove this target, Automake
8419 2001-10-31 Akim Demaille <akim@epita.fr>
8421 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Do not
8422 AC_CONFIG_FILES(atlocal) as it means a file atlocal.in *must* be
8423 provided, while it is optional.
8424 * configure.ac: Adjust.
8426 2001-10-26 Paul Eggert <eggert@twinsun.com>
8428 * NEWS, README, configure.ac, lib/Autom4te/General.pm,
8429 lib/Autom4te/Struct.pm:
8430 Require Perl 5.005_03 instead of just 5.005, as some tests fail
8433 * doc/autoconf.texi (Special Shell Variables): Document some
8434 more LINENO gotchas, particularly with respect to the Awk+Sed hack.
8436 * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): New macro.
8437 (_AS_LINENO_PREPARE): Use it instead of shell eval, since
8438 eval $LINENO is not portable in practice.
8440 2001-10-24 Akim Demaille <akim@epita.fr>
8442 * lib/Autom4te/General.pm (backname): New.
8444 2001-10-24 Akim Demaille <akim@epita.fr>
8446 * m4/: Remove, merged into...
8449 2001-10-23 Tim Van Holder <tim.van.holder@pandora.be>
8451 * doc/autoconf.texi (Shellology): Mention the problems with bash
8452 2.05's use of ANSI quoting in its `set' builtin.
8454 2001-10-22 Paul Eggert <eggert@twinsun.com>
8456 * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R):
8457 Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
8458 and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
8459 POSIX decided to standardize on the int flavor of strerror_r.
8460 Always do char* test, as there's no reason not to.
8461 Assign to a char* var, to catch strerror_r that returns int*.
8463 * doc/autoconf.texi (Particular Functions):
8464 Document the above changes. Also, document the fact that
8465 AC_FUNC_STRERROR_R defines HAVE_DECL_STRERROR_R.
8467 * NEWS: Mention HAVE_WORKING_STRERROR_R -> STRERROR_R_CHAR_P.
8469 2001-10-20 Akim Demaille <akim@epita.fr>
8471 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): The name of
8472 the executable was missing from the log.
8474 2001-10-20 Akim Demaille <akim@epita.fr>
8476 * lib/Autom4te/General.pm (&update_file): If destination is
8477 unchanged, remove the source.
8478 (&up_to_date_p): Don't be verbose, be debug.
8479 * bin/autoreconf.in: No longer support --m4dir.
8480 (&autoreconf): Display the full path of the configure.ac we are
8483 Be sure to honor --force with gettextize.
8485 * doc/autoconf.texi: Adjust.
8487 2001-10-20 Akim Demaille <akim@epita.fr>
8489 * bin/autoheader.in ($localdir, $m4, $SIMPLE_BACKUP_SUFFIX):
8491 * bin/autoreconf.in (&autoreconf): Do not run gettextize when
8492 `intl' is already present, as it refuses unless --force.
8493 (&parse_args): Use -I, --include instead of the old Autoconf
8495 ($localdir, $autoconf_dir): Remove.
8497 (&maybe_autoreconf): New, to preserve $_ for File::Find.
8499 2001-10-19 Jens Petersen <petersen@redhat.com>
8501 * lib/autoconf/programs.m4 (AC_PROG_AWK): Prefer gawk to mawk.
8502 * doc/autoconf.texi (Particular Programs): Likewise.
8504 2001-10-19 Akim Demaille <akim@epita.fr>
8506 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Name the generated
8507 file in @configure_input@.
8508 Don't mention `automatically' in addition to `generated'.
8509 * tests/torture.at (#define header templates): Adjust.
8511 2001-10-19 Akim Demaille <akim@epita.fr>
8513 * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
8514 comment, explain how to install automatic mode selection.
8517 2001-10-19 Ezra Peisach <epeisach@zif.mit.edu>
8519 * bin/autoreconf.in (autoreconf): Display the path to the
8520 configure.ac being studied.
8522 2001-10-18 Paul Eggert <eggert@twinsun.com>
8524 * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast sizeof to unsigned
8525 long, to work around a bug in the HP C compiler version HP92453-01
8528 * lib/m4sugar/m4sh.m4 (AS_DIRNAME): Use 'dirname' if that works.
8529 (AS_BASENAME_EXPR): New macro.
8530 (AS_BASENAME_SED): Do not assume GNU sed semantics.
8531 (AS_BASENAME): Use 'basename' if that works; then try 'expr';
8532 and fall back on 'sed' only if the other two fail. This makes
8533 AS_BASENAME act more like AS_DIRNAME.
8534 (as_me): Shell-quote the argument of AS_BASENAME, in case $0
8535 contains white space.
8536 * lib/autoconf/general.m4 (_AC_INIT_SRCDIR):
8537 Use AS_DIRNAME, since I think it's now DOS-friendly.
8538 * tests/m4sh.at (DIRNAME_TEST): New arg $3.
8539 Allow "dirname //FOO" to return either / or //, as POSIX allows
8542 2001-10-10 Akim Demaille <akim@epita.fr>
8544 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Recognize
8545 `a_out.exe' for OpenVMS 7.1, DEC C 5.5 compiler, via GNV.
8548 2001-10-10 Akim Demaille <akim@epita.fr>
8550 * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): m4_defun, not
8552 (_AS_ECHO_N): AS_REQUIREs it.
8554 2001-10-10 Akim Demaille <akim@epita.fr>
8556 * lib/autoconf/general.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS)
8557 (AC_INCLUDES_DEFAULT): Move to...
8558 * lib/autoconf/headers.m4: here.
8559 * lib/autoconf/types.m4: Comment changes.
8560 * doc/autoconf.texi: Specify where the default includes are used
8561 in the macro prototypes.
8563 2001-10-09 Akim Demaille <akim@epita.fr>
8565 * lib/autoconf/autoconf.m4 (m4_patsubst, m4_regexp): New
8568 2001-10-08 Akim Demaille <akim@epita.fr>
8570 * bin/autoreconf.in (&autoreconf): Remove debugging code.
8571 (&parse_args): Pass verbosity/debugging options to subtools when
8572 --debug, not when --verbose.
8573 * lib/autom4te.in (Autoreconf-preselections): New.
8576 2001-10-08 Akim Demaille <akim@epita.fr>
8578 * bin/autoreconf.in (autoreconf): Run libtoolize when appropriate.
8580 2001-10-08 Akim Demaille <akim@epita.fr>
8582 * doc/autoconf.texi (autoreconf Invocation): Adjust.
8583 * bin/autoreconf.in (autoreconf): Run gettextize when appropriate.
8585 2001-10-08 Akim Demaille <akim@epita.fr>
8587 * tests/tools.at (AT_CHECK_PERL_SYNTAX): Check autoreconf.
8588 (Syntax of the shell scripts): Don't.
8589 * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in: Don't
8590 bother with $force since...
8591 * lib/Autom4te/General.pm: does.
8593 2001-10-08 Akim Demaille <akim@epita.fr>
8595 * bin/autoreconf.in: Rewrite in Perl.
8596 * configure.ac: Adjust.
8597 * lib/Autom4te/General.pm (&up_to_date_p): New.
8598 * bin/autom4te.in (&up_to_date_p): Use it.
8600 (&up_to_date): this.
8602 2001-10-08 Akim Demaille <akim@epita.fr>
8604 * lib/m4sugar/m4sugar.m4 (m4_case, m4_bmatch, m4_normalize)
8605 (m4_list_cmp): Use $0 to reinvoke yourself.
8606 (m4_patsubsts): New.
8607 (m4_strip, m4_version_unletter): Use it.
8608 * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): Likewise.
8610 2001-10-08 Akim Demaille <akim@epita.fr>
8612 * lib/autoconf/autoconf.m4, lib/autoconf/general.m4,
8613 * lib/autoconf/libs.m4, lib/autoconf/status.m4,
8614 * lib/autoconf/types.m4, lib/autotest/general.m4,
8615 * lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4, tests/atspecific.m4,
8616 * tests/torture.at: Rename m4_regexp, m4_patsubst, and m4_match to
8617 m4_bregexp, m4_bpatsubst, and m4_bmatch.
8618 * doc/autoconf.texi (Redefined M4 Macros): Adjust.
8620 2001-10-08 Akim Demaille <akim@epita.fr>
8622 * lib/m4sugar/m4sh.m4: Use AS_REQUIRE.
8624 2001-10-08 Akim Demaille <akim@epita.fr>
8626 * lib/m4sugar/m4sh.m4 (AS_DIRNAME_EXPR): Use AS_REQUIRE.
8627 * tests/tools.at (AT_DATA_FORBIDDEN): Rename/move/duplicate to...
8628 * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): here.
8629 * tests/tools.at, tests/m4sh.at: Use it.
8630 * tests/m4sh.at: Don't rely on Autoconf macros.
8631 (DIRNAME_TEST): Also exercise the expr variant.
8632 * tests/m4sugar.at, tests/atspecific.m4 (AT_CHECK_M4SUGAR): The
8633 preferred M4sugar extension is now `.4s'.
8634 * tests/README: Remove.
8636 2001-10-08 Akim Demaille <akim@epita.fr>
8638 * lib/m4sugar/m4sugar.m4 (m4_provide_ifelse): Rename as...
8639 (m4_provide_if): this.
8640 * lib/m4sugar/m4sh.m4 (AS_REQUIRE): New.
8641 * lib/autoconf/general.m4 (AS_DEFUN, AC_DEFUN_ONCE, AC_BEFORE)
8642 (AC_REQUIRE, AC_PROVIDE, AC_PROVIDE_IFELSE): Be exact copy of the
8643 M4sugar peer, i.e., drop the `AC_PROVIDE_$1' broken marker.
8645 2001-10-08 Akim Demaille <akim@epita.fr>
8647 Use `add-log-current-defun-function' for ChangeLog creation.
8648 Suggested by Tom Tromey.
8650 * lib/emacs/autotest-mode.el (autotest-mode-map): New.
8651 (autotest-mode): Adjust.
8652 * lib/emacs/autoconf-mode.el (autoconf-mode-map): Modernize, map
8653 'comment-region onto `C-c ;'.
8654 Comments are `#', not `dnl'.
8655 (autoconf-current-defun): New.
8656 (autoconf-font-lock-keywords): Recognize `m4_defun'.
8658 2001-10-08 Akim Demaille <akim@epita.fr>
8660 * lib/autoconf/general.m4 (_m4_divert(BODY)): Move to...
8661 * lib/m4sugar/m4sh.m4: here.
8662 (AS_INIT): Push the BODY diversion, set the #! /bin/sh line.
8663 * lib/autoconf/general.m4 (AC_PLAIN_SCRIPT) : Remove.
8664 (AT_INIT): Replace AC_PLAIN_SCRIPT with AS_INIT invocation,
8665 include handle the m4_pattern_*, no longer push the
8666 BODY diversion nor set the /bin/sh line, AS_INIT does it.
8667 * lib/autotest/general.m4 (AT_INIT): Likewise.
8668 * tests/base.at: Adjust the tests to use AS_INIT.
8669 * tests/tools.at (AT_DATA_FORBIDDEN): New.
8670 (autoconf: forbidden tokens): Adjust to work on M4sh instead of
8673 2001-10-07 Paul Eggert <eggert@twinsun.com>
8675 * doc/autoconf.texi (config.status Invocation):
8676 CONFIG_SHELL defaults to a shell that supports LINENO if available.
8678 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): If the current
8679 shell does not support LINENO, and if CONFIG_SHELL is unset or
8680 empty, and if we can find a shell that does support LINENO,
8681 then set CONFIG_SHELL to that shell and then re-execute
8682 ourselves with CONFIG_SHELL.
8684 2001-10-05 Paul Eggert <eggert@twinsun.com>
8686 * tests/Makefile.am (clean-local): Don't invoke $(TESTSUITE) if it
8687 doesn't exist. Remove *.tmp, as a .tmp file is created during the
8688 build of $(TESTSUITE).
8690 2001-10-05 Akim Demaille <akim@epita.fr>
8692 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Look in the path
8693 iff we are a bareword.
8694 Reported by Raja R Harinath.
8696 2001-10-05 Akim Demaille <akim@epita.fr>
8698 * tests/m4sh.at (LINENO): New.
8699 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Be sure to set
8700 PATH_SEPARATOR before using it.
8701 Fix the absolute path case/esac pattern.
8702 Provide $0 as fallback for as_myself.
8703 Reported by Raja R Harinath.
8705 2001-10-05 Akim Demaille <akim@epita.fr>
8707 * Makefile.am, config/Makefile.am, lib/emacs/Makefile.am,
8708 * m4/Makefile.am, man/Makefile.am: Add/adjust MAINTAINERCLEANFILES.
8710 2001-10-05 Akim Demaille <akim@epita.fr>
8712 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): New, extracted from...
8713 (AS_SHELL_SANITIZE): here. Use it.
8714 (_AS_LINENO_PREPARE): Preserve the exit status of $0.lineno.
8717 2001-10-04 Akim Demaille <akim@epita.fr>
8719 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use a portable
8720 combination of Awk and sed to replace $LINENO.
8722 2001-10-02 Paul Eggert <eggert@twinsun.com>
8724 * doc/autoconf.texi (Limitations of Builtins): You can't use
8725 "source"; it's not portable. Remove confusing and
8726 somewhat-incorrect example involving "." and "/".
8728 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): "source" -> ".", for
8729 compatibility with POSIX shells.
8731 2001-10-02 Akim Demaille <akim@epita.fr>
8733 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Just source 40.lineno
8734 instead of exec'ing to preserve $0 and $@.
8736 2001-10-01 Akim Demaille <akim@epita.fr>
8738 * tests/testsuite (AT_INIT) <at_pass_list>: New.
8739 Don't run twice the same test.
8741 2001-10-01 Akim Demaille <akim@epita.fr>
8743 * lib/autotest/general.m4 (AT_INIT) <--help>: Catch up with reality.
8744 No longer output the list of tests.
8745 <--list>: New option.
8746 <--full-help>: Remove.
8747 Complete the short/long options duality.
8748 Various small adjustments.
8750 2001-10-01 Akim Demaille <akim@epita.fr>
8752 * doc/autoconf.texi: Use @kbd for user input.
8753 Always use `$' as shell prompt.
8755 2001-09-30 Paul Eggert <eggert@twinsun.com>
8757 * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS):
8758 Don't use nested parenthesization. This patch was originally
8759 suggested to bug-autoconf by Philippe De Muyter on 2000-05-28,
8760 but somehow it didn't get incorporated then.
8761 * doc/autoconf.texi (Limitations of Usual Tools):
8762 Clarify remark about sed and nested parenthesization.
8764 * lib/autoconf/types.m4 (AC_CHECK_SIZEOF):
8765 Report an error if the size cannot be determined even though
8767 * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
8768 Check for `expr' arithmetic overflow, and for compilation failure,
8769 and invoke a new argument $4 if either is discovered.
8770 This makes _AC_COMPUTE_INT_COMPILE more like _AC_COMPUTE_INT_RUN.
8771 (_AC_COMPUTE_INT): Pass IF-FAILS arg to _AC_COMPUTE_INT_COMPILE.
8773 2001-09-28 Akim Demaille <akim@epita.fr>
8775 * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: New.
8776 * m4/lispdir.m4: New.
8777 * aclocal.m4, configure.ac: Adjust.
8779 2001-09-28 Akim Demaille <akim@epita.fr>
8781 * lib/autotest/general.m4 (AT_VICTIMS): Rename as...
8783 (AT_INIT): More the wrapped section to where it will be expanded.
8784 Output `AT_tested' only when existing.
8785 Catch unexpanded PACKAGE_STRING and PACKAGE_BUGREPORT.
8787 2001-09-27 Akim Demaille <akim@epita.fr>
8789 Fix the passing of $? to ACTION-IF-FAILED in AC_TRY_RUN, that
8790 generates too many bug reports.
8792 * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Pass the right exit
8793 status when executing the ACTION-IF-FALSE.
8794 * tests/base.at (AC_TRY_*): Rename as...
8795 (AC_TRY_COMMAND): this.
8796 (AC_RUN_IFELSE): New.
8797 * tests/compile.at (Extensions, C keywords)
8798 (AC_PROG_CPP requires AC_PROG_CC, GNU Fortran 77)
8799 (Broken/missing compilers, AC_PROG_CPP with warnings)
8800 (AC_PROG_CPP without warnings, AC_PROG_CPP via CC): Move to...
8801 * tests/c.at (Extensions, C keywords)
8802 (Broken/missing compilers, AC_PROG_CPP with warnings)
8803 (AC_PROG_CPP without warnings, AC_PROG_CPP via CC)
8804 (AC_PROG_CPP requires AC_PROG_CC): here and...
8805 * tests/fortran.at (GNU Fortran 77): there.
8806 * doc/autoconf.texi (autoconf Invocation): Fix the example:
8807 AC_TRY_RUN is about compilation, not shell commands.
8808 (Test Programs): AC_TRY_RUN works as used to be advertised.
8810 2001-09-27 Akim Demaille <akim@epita.fr>
8812 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix bugs spotted by
8814 Be sure to detect when $LINENO always returns the same value.
8815 Look for the original script, basename($0) is certainly not
8817 Pass the CLI arguments to `$as_me.lineno'.
8819 2001-09-25 Akim Demaille <akim@epita.fr>
8821 * lib/autotest/general.m4 (AT_INIT): Dump the whole config.log.
8822 Be sure the close and reopen the LOG fd before and after using tee
8824 <at_tests_pattern>: Adjust to the new format of at_help_all.
8826 2001-09-23 Akim Demaille <akim@epita.fr>
8828 * bin/autom4te.in (parse_args): There can be several invocations
8831 2001-09-23 Akim Demaille <akim@epita.fr>
8833 * doc/autoconf.texi (Top): Wrap in @ifnottex.
8835 2001-09-23 Akim Demaille <akim@epita.fr>
8837 * lib/autoconf/status.m4 (_AC_SRCPATHS): Compute and provide
8838 ac_buildpath, ac_top_buildpath, ac_srcpath, and ac_top_srcpath.
8839 (_AC_OUTPUT_FILES): Also substitute srcpath, top_srcpath,
8840 builddir, buildpath, top_builddir, and top_buildpath.
8841 (_AC_OUTPUT_SUBDIRS): Compute the dir variables *before* changing
8842 the current directory.
8843 * lib/autoconf/general.m4 (_AC_INIT_HELP): Compute the dir
8844 variables *before* changing the current directory.
8845 Skip nonexistent dirs.
8846 * doc/autoconf.texi (Preset Output Variables): Document these
8849 * lib/autotest/general.m4: Do not reset AT_victims.
8850 Don't compute at_srcdir nor at_top_srcdir.
8852 * tests/tools.at: Hence use top_srcdir.
8854 * tests/Makefile.am, tests/autoconf, tests/autoheader,
8855 * tests/autom4te, tests/autoreconf, tests/autoupdate, tests/ifnames:
8857 * tests/autoreconf.in, tests/wrappl.in, tests/autom4te.in,
8858 * tests/wrapsh.in, tests/autoupdate.in: New.
8859 * tests/Makefile.am (DISTCLEANFILES, EXTRA_DIST): Adjust.
8860 * configure.ac: Build the position independent wrappers.
8862 * man/Makefile.am: Now that test wrappers are position
8863 independent, use them and drop dark envvar magic.
8865 2001-09-23 Akim Demaille <akim@epita.fr>
8867 * doc/autoconf.texi (Common Shell Constructs): Rename as...
8868 (Programming in M4sh): this.
8869 Promote to @section.
8871 2001-09-23 Akim Demaille <akim@epita.fr>
8873 * lib/autotest/general.m4 (AT_INIT): Dump config.log last.
8874 Pass $at_debug_args to the rerun test suite.
8875 * lib/m4sugar/Makefile.am (DISTCLEANFILES): New.
8876 * bin/Makefile.am (ETAGS_SH): Don't use characters ranges.
8879 2001-09-23 Akim Demaille <akim@epita.fr>
8881 * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
8883 2001-09-23 Akim Demaille <akim@epita.fr>
8885 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
8888 2001-09-23 Akim Demaille <akim@epita.fr>
8890 * lib/Autom4te/General.pm (&debug): New.
8891 * bin/autom4te.in ($language): Move to...
8893 Handle --language in languages.
8894 * lib/autom4te.in (Automake-selections, Autoheader-selections)
8895 (Autoscan-selections): New.
8898 2001-09-23 Tim Van Holder <tim.van.holder@pandora.be>
8900 * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/init.m4,
8901 * m4/install-sh.m4, m4/missing.m4, m4/sanity.m4, m4/strip.m4: Updated
8902 to match current versions from CVS Automake.
8904 2001-09-23 Alexandre Duret-Lutz <duret_g@epita.fr>
8906 * doc/autoconf.texi (Special Shell Variables): Add pdksh output
8909 2001-09-22 Akim Demaille <akim@epita.fr>
8911 * lib/autoconf/autotest.m4: Create `package.m4'.
8912 * tests/Makefile.am (package.m4): Remove.
8914 2001-09-22 Akim Demaille <akim@epita.fr>
8916 Rely on `$LINENO' when possible instead of `__oline__'.
8918 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Provide some form of
8919 `$LINENO' support replacement when not supported.
8920 (_AS_CR_PREPARE, _AS_TR_CPP_PREPARE, _AS_TR_SH_PREPARE): Invoke
8921 them explicitly to be sure they are not output before this section
8922 (via m4_require). Cosmetic only.
8923 * lib/autoconf/c.m4, lib/autoconf/general.m4,
8924 * lib/autoconf/programs.m4: Replace all the occurrences of
8925 `__oline__' with `$LINENO'.
8926 * doc/autoconf.texi (Special Shell Variables): Document LINENO.
8928 2001-09-21 Tim Van Holder <tim.van.holder@pandora.be>
8930 * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
8931 character (u: -> ue) in a code comment.
8932 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
8935 2001-09-21 Akim Demaille <akim@epita.fr>
8937 * Makefile.maint (AUTOM4TE): Neutralize autom4te.
8938 Suggested by Jim Meyering.
8940 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8942 * lib/autoconf/programs.m4: Use extensions listed in
8943 $ac_executable_extensions when looking for programs.
8945 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8947 * lib/autoconf/general.m4: Fix a small Englisho.
8948 * lib/autoconf/status.m4: Fix a small typo. Handle DOS paths when
8949 setting up ac_dir_suffix and ac_top_builddir.
8950 * lib/m4sugar/m4sh.m4: Default CDPATH to $PATH_SEPARATOR, not ':'.
8952 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8954 * doc/autoconf.texi (File System Conventions): Clarify the use of
8956 (Special Shell Variables[PATH_SEPARATOR]): Ditto.
8957 (Special Shell Variables[CDPATH]): Mention that $PATH_SEPRATOR should
8958 be used instead of ':'.
8959 * lib/autotest/general.m4: Replace occurrences of ':' in
8960 AUTOTEST_PATH with $PATH_SEPARATOR at test suite startup.
8962 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8964 * tests/atgeneral.m4: Add basic support for test ranges (e.g. 7-34) as
8965 arguments. Fixed a typo.
8967 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8969 * man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
8970 $PATH. Also set AUTOM4TE_CFG, so we can process autom4te properly.
8972 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8974 * bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
8975 * bin/autoupdate.in: Ditto.
8976 * bin/autoheader.in: Reworded a few comments.
8977 * bin/autoconf.in: Reworded help text for a few options.
8978 * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
8979 * bin/autoscan.in, bin/autoupdate.in: Ditto.
8981 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8983 * lib/Autom4te/XFile.pm (open): Simplified the error message (we
8984 already have $file). Set output files to binary mode (helps avoid
8985 CR issues on DOSish systems).
8987 2001-09-19 Akim Demaille <akim@epita.fr>
8989 * lib/autotest/general.m4: Englishoes.
8990 From Tim Van Holder and Alexey Mahotkin.
8992 2001-09-18 Paul Eggert <eggert@twinsun.com>
8994 * doc/autoconf.texi (Common Shell Constructs): New node,
8995 documenting AS_DIRNAME.
8996 (Limitations of Usual Tools): Refer to it when discussing dirname.
8997 Also, update discussion of POSIX standard to reflect latest draft.
8999 * lib/autoconf/c.m4:
9000 (AC_LANG_INT_SAVE(C)): Also support negative values, down to LONG_MIN.
9002 * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
9003 Do not pass a first argument with leading '-'
9004 to expr, by parenthesizing initial integers that might be negative.
9006 * doc/autoconf.texi (Particular Functions): AC_FUNC_GETPGRP
9007 now merely checks whether it is an error to pass an argument
9010 * lib/autoconf/functions.m4 (_AC_FUNC_GETPGRP_TEST): Remove.
9011 (AC_FUNC_GETPGRP): Don't bother with a runtime test. Just check
9012 whether it is a (compile-time) error to pass an argument to
9013 getpgrp. This simpler test supports the revised documentation,
9014 and is all that AC_FUNC_GETPGRP's users really need.
9016 2001-09-18 Akim Demaille <akim@epita.fr>
9018 * doc/autoconf.texi (Limitations of Make) <$<>: New.
9020 2001-09-18 Akim Demaille <akim@epita.fr>
9022 * doc/autoconf.texi (Limitations of Usual Tools) <find>: More about
9024 * lib/autotest/general.m4 (AT_INIT): Adjust.
9026 2001-09-18 Paul Wagland <paul@wagland.net>
9028 * tests/m4sh.at: Ensure that AS_DIRNAME handles '/', '//' and '///'
9030 Add test for AS_BASENAME.
9031 * lib/m4sugar/m4sh.m4: Fix AS_BASENAME so that it passes the previous
9032 added test. It now correctly handles /1/2/3/, returning '3' not ''.
9033 Added AS_BASENAME_SED to make the interface the same as AS_DIRNAME.
9034 * tests/base.at: Fixed the expected responses. The old ones were
9036 * lib/autoconf/general.m4: Fixed AC_PREFIX_PROGRAM, it now behaves as
9037 the documentation claims it should (and how it behaved in 2.13).
9039 2001-09-18 Akim Demaille <akim@epita.fr>
9041 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): No INIT-CMDS in
9042 the AC_CONFIG_COMMANDS invocation.
9043 This also solves the name clash problems.
9044 Don't set the package's ID.
9045 * lib/m4sugar/Makefile.am (version.m4): Revamp.
9046 No longer to be shipped.
9047 (version.in): Remove.
9048 * lib/m4sugar/m4sugar.m4, lib/autoconf/general.m4,
9049 * lib/autoconf/status.m4: Adjust.
9050 Use `m4_PACKAGE_STRING'.
9051 * lib/autotest/general.m4 (AT_INIT): N-th signature change: now
9052 the only optional argument is the name of the test suite.
9053 Expect `package.m4' to define the package signature.
9054 * lib/autom4te.in (Autotest): Add `package.m4?'.
9055 * tests/Makefile.am (package.m4): New.
9056 * tests/suite.at: ifnames is a victim.
9058 2001-09-18 Akim Demaille <akim@epita.fr>
9060 * lib/autom4te.in (Autoconf): Preselect AM_CONDITIONAL,
9061 AC_LIBSOURCE, AC_CONFIG_FILES.
9062 * lib/autotest/general.m4 (AT_INIT): Don't abort when a tested
9063 program version string doesn't match the package's.
9064 * lib/autoconf/general.m4 (AC_CACHE_VAL): Reestablish the space
9067 2001-09-17 Paul Eggert <eggert@twinsun.com>
9069 * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
9070 Allow expression to return any value that can fit into unsigned long
9071 (not int, as before). Check for output errors.
9073 2001-09-17 Bruno Haible <haible@ilog.fr>
9075 * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
9076 Always include <stdio.h> and <stdlib.h>. Evaluate
9077 the expression in an extra function before these includes. Call
9078 fprintf "%d" only after ensuring the argument is of type 'int'.
9079 Reported by Wayne Chapeskie <waynec@spinnaker.com>.
9081 2001-09-17 Paul Eggert <eggert@twinsun.com>
9083 Fix bug reported by Paul Townsend on AIX 4.3.3.0 with CFLAGS=-O4
9084 or CFLAGS=-O5. In that case, the linker has a relaxed view of
9085 fatal errors, and AC_CHECK_LIB causes it to include libraries even
9086 when they don't exist.
9088 * lib/autoconf/headers.m4 (AC_HEADER_DIRENT): Use AC_SEARCH_LIBS,
9089 not AC_CHECK_LIB, so that we don't use -ldir or -lx if we don't
9092 * lib/autoconf/specific.m4 (AC_ISC_POSIX): Replace the old, crufty
9093 version with the version used by fileutils 4.1, except use
9094 AC_SEARCH_LIBS, not AC_CHECK_LIB, so that we don't use -lcposix if
9097 * doc/autoconf.texi (AC_ISC_POSIX): Describe new behavior.
9099 2001-09-13 Akim Demaille <akim@epita.fr>
9101 * tests/base.at, tests/m4sh.at: Be sure to issue the bangshe line
9103 Reported by Gerrit P. Haase.
9105 2001-09-13 Akim Demaille <akim@epita.fr>
9107 * lib/autotest/general.m4 (AT_INIT): Reset `AT_victims' so that
9108 m4_defn'ing is valid.
9110 2001-09-13 Akim Demaille <akim@epita.fr>
9112 * lib/m4sugar/m4sugar.m4 (m4_append_uniq): New.
9113 * lib/autotest/general.m4 (AT_VICTIMS, AT_KEYWORDS, _AT_CLEANUP_FILE):
9116 2001-09-13 Akim Demaille <akim@epita.fr>
9118 * lib/m4sugar/m4sugar.m4 (_AS_QUOTE_IFELSE, _AS_BOX_INDIR): Use
9120 (m4_re_escape): New.
9121 * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER): Use it.
9122 * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use m4_match.
9123 * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER, AC_CONFIG_LINKS):
9125 * lib/autoconf/types.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P)
9126 (_AC_CHECK_TYPE_MAYBE_TYPE_P, AC_CHECK_MEMBER): Likewise.
9127 * lib/autotest/general.m4 (AT_INIT): Rename AT_TESTS_ALL as
9128 AT_tests_all for consistency.
9130 (AT_VICTIMS): Similar to AT_KEYWORDS.
9131 (_AT_CLEANUP_FILE_IF): Use m4_match and m4_re_escape.
9133 2001-09-13 Akim Demaille <akim@epita.fr>
9135 * lib/autotest/general.m4 (AT_INIT): Fix stupid bugs.
9137 2001-09-13 Akim Demaille <akim@epita.fr>
9139 * lib/autotest/general.m4 (AT_INIT): Create and remove
9140 `$as_me.[0-9]+' instead of `debug-[0-9]+.sh', so that multiple
9141 test suites can cohabit.
9143 2001-09-13 Akim Demaille <akim@epita.fr>
9145 * tests/mktests.sh: Don't output banners for empty test files.
9147 2001-09-13 Akim Demaille <akim@epita.fr>
9149 Test suites can be run independently of configure.
9151 * lib/m4sugar/m4sh.m4 (_AS_ECHO, _AS_ECHO_N_PREPARE): New.
9152 * lib/autoconf/programs.m4 (_AC_PROG_ECHO): Remove.
9153 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust: AC_SUBST
9155 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't ask for at_n
9157 * lib/autotest/general.m4: Use ECHO_*.
9159 2001-09-13 Akim Demaille <akim@epita.fr>
9161 * bin/ifnames.in: Rewrite in Perl.
9162 * configure.ac: Don't look for AWK.
9163 * tests/tools.at (AWK portability): Remove.
9164 (Syntax of the shell scripts): Don't check ifnames.
9165 (AT_CHECK_PERL_SYNTAX): New.
9166 (Syntax of the Perl scripts): Check ifnames.
9167 * tests/ifnames: New.
9169 2001-09-13 Akim Demaille <akim@epita.fr>
9171 * lib/autotest/general.m4 (AT_INIT): Let --keywords also match
9173 * tests/atspecific.m4 (AT_CHECK_AU_MACRO): AT_KEYWORDS(autoupdate).
9174 Remove all the other keywords.
9176 2001-09-10 Akim Demaille <akim@epita.fr>
9178 * lib/autotest/general.m4 (AT_INIT): Remove the diversion HELP and
9179 SETUP: no longer used.
9180 Support -k, --keywords.
9181 <at_help>: Be `no', `short', or `long'.
9182 <at_help_all>: New variable.
9184 (AT_CLEANUP_FILE_IFELSE, AT_CLEANUP_FILE): Rename as...
9185 (_AT_CLEANUP_FILE_IF, _AT_CLEANUP_FILE): these.
9186 (_AT_CLEANUP_FILE_IF): Simplify the regexp.
9187 (AT_SETUP): Reset AT_line, AT_keywords, AT_description.
9188 No longer fill the HELP diversion.
9189 (AT_CLEANUP): Use them.
9190 * lib/m4sugar/m4sugar.m4 (m4_append): Support a separator.
9191 (m4_list_append): Remove.
9193 Spread a few keywords in the Autoconf test suite.
9195 2001-09-10 Akim Demaille <akim@epita.fr>
9197 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't pass
9198 PATH_SEPARATOR, let M4sh compute it.
9199 * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): New.
9200 * lib/autoconf/programs.m4 (AC_SHELL_PATH_WALK): Use PATH_SEPARATOR.
9202 * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Here.
9203 Simplify when the path is not a literal.
9204 (AS_UNAME): Use it to report PATH.
9205 * lib/autoconf/general.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Remove.
9206 (_AC_INIT_DEFAULTS): AC_SUBST PATH_SEPARATOR.
9207 * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Use _AS_PATH_WALK.
9208 * lib/autotest/general.m4 (AT_INIT): Use _AS_PATH_WALK to
9209 normalize the path, and to look for victims.
9210 * tests/semantics.at (AC_PATH_PROG & AC_PATH_PROGS)
9211 (AC_CHECK_PROG & AC_CHECK_PROGS): Use PATH_SEPARATOR.
9213 2001-09-07 Akim Demaille <akim@epita.fr>
9215 * bin/autom4te.in (&handle_m4): `< /dev/null' so that GNU M4 1.5
9216 doesn't neutralize SIGINT, making autoconf etc. non interruptible.
9217 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Move the package
9218 related variables into `at_package_*'.
9219 * lib/autotest/general.m4 (AT_VICTIMS): New.
9220 (AT_INIT): Adjust for stand-alone/embedded test suites.
9221 (AS_MESSAGE_LOG_FD): Define and use it.
9222 * tests/suite.at (AT_VICTIMS): Use it.
9223 * tests/tools.at (autoupdating AC_PREREQ): Don't depend upon
9226 2001-09-07 Akim Demaille <akim@epita.fr>
9228 Move toward possibly stand-alone test suites.
9230 * lib/autotest/general.m4: Stop displaying srcdir everywhere as,
9231 in addition, it introduces useless differences in logs.
9232 (AT_INIT): Let atconfig and atlocal be both optional.
9233 Adjust PATH computation.
9234 * lib/m4sugar/m4sh.m4 (AS_UNAME): More readable display of PATH.
9236 2001-09-07 Akim Demaille <akim@epita.fr>
9238 * lib/autoconf/Makefile.am (autoconf.m4f): Depends upon
9241 2001-09-05 Akim Demaille <akim@epita.fr>
9243 * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Use `_array_'
9244 to avoid GCC warnings.
9247 2001-09-05 Akim Demaille <akim@epita.fr>
9249 * bin/autom4te.in: --language is -l, not -s.
9251 2001-09-05 Akim Demaille <akim@epita.fr>
9253 Be ready to handle filenames as stupid as `dnl.at', for if even
9254 the maintainer is dumb enough to do that...
9256 * lib/autotest/general.m4 (AT_SETUP, AT_LINE): Demonstrates your
9257 excellence in M4 quotation: consider `__file__' is active.
9259 And BTW, when invoking m4, pass the --include in the right order:
9262 * bin/autom4te.in, bin/autoupdate.in: Use reverse when kingtal to
9265 2001-09-05 Akim Demaille <akim@epita.fr>
9267 * lib/Autom4te/XFile.pm: New lib file.
9268 * bin/autoupdate.in, bin/autoscan.pl, bin/autom4te.in,
9269 * bin/autoheader.in: Use it.
9271 2001-09-05 Akim Demaille <akim@epita.fr>
9273 * bin/autoupdate.in (&handle_m4_macros) <unm4.m4>: Undefine iff
9276 2001-09-05 Akim Demaille <akim@epita.fr>
9278 * lib/Autom4te/General.pm (&getopt): Work around the `-' Getopt bug.
9279 * bin/autoheader.in, bin/autoupdate.in (&parse_args): Adjust.
9281 * bin/autoscan.in: Use `getopt' and `find_files' etc.
9282 Add -I, --include support.
9283 * doc/autoconf.texi (autoscan Invocation): Adjust.
9285 2001-09-05 Akim Demaille <akim@epita.fr>
9287 CVS GNU M4 doesn't like `undefine(undefined)'.
9289 * bin/autoupdate.in (&handle_m4_macros, &handle_autoconf_macros):
9290 New, extracted from main.
9291 Use IO::File wherever possible.
9292 (input.m4): Be constant, use -I instead of hard coding $tmp.
9293 Therefore be a quoted heredoc.
9294 Don't invoke `_au_disable', since ac was not loaded, but just
9297 2001-08-31 Akim Demaille <akim@epita.fr>
9301 2001-08-31 Akim Demaille <akim@epita.fr>
9303 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix the
9305 * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Can create `config.hin~'.
9307 2001-08-31 Akim Demaille <akim@epita.fr>
9309 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): DU 5.0 has
9310 serious problems handling heredocs in heredocs.
9311 Reported by Nicolas Joly.
9313 2001-08-31 Akim Demaille <akim@epita.fr>
9315 * doc/autoconf.texi: Don't promote non `m4_*' M4 macros.
9316 (Making testsuite Scripts): Update.
9318 2001-08-31 Akim Demaille <akim@epita.fr>
9320 * lib/Makefile.am (CLEANFILES): Add autom4te.cfg.
9322 2001-08-31 Akim Demaille <akim@epita.fr>
9324 * doc/autoconf.texi (Quadrigraphs): Document `@&t@'.
9325 (testsuite Scripts): There is no such thing as `atconfig.in'.
9326 And actually one diagram is missing: test suite runtime.
9328 2001-08-31 Akim Demaille <akim@epita.fr>
9330 * lib/Autom4te/General.pm (&find_file): Browse the includes in the
9333 2001-08-31 Akim Demaille <akim@epita.fr>
9335 * bin/autoupdate.in (@include): `installcheck' revealed the path
9336 to m4sugar was lacking!
9338 2001-08-31 Akim Demaille <akim@epita.fr>
9340 * man/Makefile.am (.x.1): We really have to pass
9341 autom4te_perllibdir.
9343 2001-08-31 Akim Demaille <akim@epita.fr>
9345 * lib/autotest/general.m4 (AT_INIT): Don't pass all the args to
9346 debug scripts, in particular passing explicitly listed tests to
9349 2001-08-31 Akim Demaille <akim@epita.fr>
9351 * bin/autom4te.in (&parse_args): Strip `.' from `@include'.
9352 * bin/autoupdate.in: Use --include, -I, and --force, -f, too.
9353 Use directly autom4te, not autoconf.
9354 * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
9356 2001-08-31 Akim Demaille <akim@epita.fr>
9358 * tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
9359 * bin/autoheader.in (%symbol): Strip arguments of macros.
9361 2001-08-31 Akim Demaille <akim@epita.fr>
9363 * doc/autoconf.texi: Catch up -I, --include changes.
9365 2001-08-31 Akim Demaille <akim@epita.fr>
9367 * bin/autom4te.in (&parse_args): Die on unknown languages.
9368 * bin/autoheader.in: Run directly autom4te --mode=autoconf, no
9370 Promote --include over --macrodir and other obsolete options.
9372 2001-08-31 Akim Demaille <akim@epita.fr>
9374 * lib/Autom4te/General.pm ($version, $help, &getopt): New.
9375 * bin/autoupdate.in, bin/autoheader.in, bin/autom4te.in: Use them.
9376 * bin/autom4te.in ($autoconf): Pass --force.
9377 `print $out' doesn't print `$_' but `$out'.
9378 * tests/tools.at (Syntax of the Perl scripts): Pass the lib dir.
9379 (autoheader): Pass --force since the test suite goes too fast for
9381 Adjust to the new autoheader messages.
9383 2001-08-31 Akim Demaille <akim@epita.fr>
9385 * bin/autoheader.in: Handle the acconfig.h etc. junk files.
9386 Check the completeness of the #template.
9387 * lib/Autom4te/General.pm (&update_file): s/remove/unlink/.
9388 * tests/semantics.at (AC_C_BIGENDIAN): Adjust AT_CHECK_AUTOHEADER
9391 2001-08-31 Akim Demaille <akim@epita.fr>
9393 * lib/Autom4te/General.pm (&find_file, &update_file): New.
9394 * bin/autoupdate.in, bin/autoheader.in: Adjust.
9395 Drop AC_MACRODIR dead for real.
9396 * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Now autoheader says
9397 `autoheader: `config.hin' is created'.
9398 * tests/tools.at (Syntax of the Perl scripts): Check autoheader.
9400 2001-08-31 Akim Demaille <akim@epita.fr>
9402 * bin/autoheader.in: Rewrite in Perl.
9403 * tests/autoheader: Adjust.
9405 2001-08-31 Akim Demaille <akim@epita.fr>
9407 * bin/autoconf.in (--include, -I): New option.
9408 Map --localdir, --autoconf-dir onto it.
9409 Forward autom4te's options instead of interpreting them.
9410 * bin/autoconf.in, bin/autoheader.in (AC_MACRODIR, autoconf_dir):
9411 There is no such envvar since the inception of autom4te.cfg.
9412 * bin/autom4te.in (&parse_args): Uniquify `@include'.
9413 * bin/autoupdate.in: Adjust, and perform more control.
9414 * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Adjust.
9415 * tests/autoconf: Dittowise.
9417 2001-08-31 Akim Demaille <akim@epita.fr>
9419 * bin/autoconf.in: Don't bother with `acsite.m4' and `aclocal.m4'.
9420 * bin/autom4te.in (&find_file): Support `FILE?' standing for
9422 Use -e, not -f, since /dev/null for instance is OK.
9423 (&parse_args): Adjust.
9424 * lib/autom4te.in (Autoconf): Add `acsite.m4?' and `aclocal.m4?'.
9426 2001-08-31 Akim Demaille <akim@epita.fr>
9428 * configure.ac: Also find tested executables in bin.
9429 * bin/autoconf.in, bin/autoheader.in, bin/autoreconf.in,
9430 * bin/autoscan.in, autoupdate.in: Use exclusively the name of the
9431 installed peer executables, only PATH is allowed to resolve it.
9432 Pass `autoconf_dir' via options, not via invisible envvars.
9433 * lib/Autom4te/General.pm (&find_peer): Remove.
9434 * lib/autotest/general.m4 (AT_INIT): `AUTOTEST_PATH=a:b' gives
9435 `abuild:asrc:bbuild:bsrc', not `abuild:bbuild:asrc:bsrc'.
9436 * man/Makefile.am: Let help2man rely on PATH instead of trying to
9437 find the executables for it.
9438 * tests/Makefile.am: Major cleanup. Too lazy to document...
9439 * tests/atlocal.in: Remove all the obscure envvar manipulations.
9441 * tests/atspecific.m4, tests/tools.at: Passing --localdir is
9442 indeed related to running the test suite, while passing
9443 --autoconf-dir and others is related to running non installed
9444 Autoconf executables. So don't do that, leave it to...
9445 * tests/autoconf, tests/autoheader, tests/autom4te, tests/autoupdate,
9446 * tests/autoscan: New.
9447 * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't
9448 refer to library files: rely on --language.
9450 2001-08-29 Akim Demaille <akim@epita.fr>
9452 * bin/autom4te.in, lib/autom4te.in, bin/autoconf.in:
9453 s/--set/--language/.
9455 2001-08-29 Akim Demaille <akim@epita.fr>
9457 * doc/autoconf.texi: Strip the @nodes.
9458 Suggested by Paul Eggert.
9459 (Initializing configure): Typo.
9461 2001-08-29 Akim Demaille <akim@epita.fr>
9463 * bin/autom4te.in (&handle_output): s/@__@/@&t@/.
9464 Suggested by Paul Eggert.
9466 2001-08-29 Akim Demaille <akim@epita.fr>
9468 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
9469 download in a tmp dir.
9471 2001-08-29 Akim Demaille <akim@epita.fr>
9473 * lib/autotest/general.m4: s/AT-devnull/devnull/ since there are
9474 case insensitive OSes out there :(
9475 From Tim Van Holder.
9477 2001-08-29 Akim Demaille <akim@epita.fr>
9479 * lib/autom4te.in: New.
9480 * lib/Makefile.am (edit, autom4te.cfg): New.
9481 * bin/autom4te.in (BEGIN): Simplify.
9482 Rely on `AC_MACRODIR' in addition of `autom4te_perllibdir'.
9483 (&load_configuration): New. Use it.
9484 (&parse_args): Support --mode, --set, and --melt.
9485 * bin/autoconf.in: Simplify and adjust.
9486 * tests/Makefile.am (AUTOMAKE): Use --set.
9487 * tests/atlocal.in: Adjust.
9488 * BUGS: distcheck and check are weak.
9490 2001-08-29 Akim Demaille <akim@epita.fr>
9492 * lib/autotest/general.m4: Use
9493 foo=`(command) 2>/dev/null`
9495 foo=`command` 2>/dev/null
9496 (at-devnull): Rename as...
9498 (--clean): Remove AT-* files too.
9499 * doc/autoconf.texi (Limitations of Usual Tools): Document `date'.
9500 Reported by Nicolas Joly.
9502 2001-08-28 Akim Demaille <akim@epita.fr>
9504 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't use single
9505 quotes inside single quotes.
9506 Reported by Nicolas Joly.
9508 2001-08-28 Kevin Ryde <user42@zip.com.au>
9510 * doc/autoconf.texi (Function Portability): Mention C right shifts.
9512 2001-08-27 Tim Van Holder <tim.van.holder@pandora.be>
9514 * lib/autotest/general.m4: Reword some messages.
9515 (AT_INIT): Check for the `times' builtin before using it.
9516 Support test ranges as arguments to the testsuite.
9517 Have -e imply -d as the help text suggested.
9519 2001-08-27 Akim Demaille <akim@epita.fr>
9521 * Makefile.maint: Formatting changes.
9522 (do-po-update, po-update, cvs-update, update): New targets.
9525 2001-08-27 Akim Demaille <akim@epita.fr>
9527 * lib/autotest/general.m4 (AT_INIT) <at_cmd_line>: Remove.
9529 Pass it to debug-*.sh scripts.
9530 <AUTOTEST_PATH>: May contain absolute dir names.
9532 2001-08-27 Akim Demaille <akim@epita.fr>
9534 * lib/autotest/general.m4 (AT_INIT): Log the command line.
9535 Support `VAR=VAL' as arguments.
9536 Compute PATH _after_ the options processing, so that AUTOTEST_PATH
9537 may be set via the command line.
9539 2001-08-27 Akim Demaille <akim@epita.fr>
9541 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): $2 defaults to $1.
9542 * lib/autotest/autotest.m4 (AT_INIT): Expand AUTOTEST_PATH into
9543 first the build dirs, then the src dirs.
9544 * configure.ac (AC_CONFIG_TESTDIR): Adjust.
9546 2001-08-27 Akim Demaille <akim@epita.fr>
9548 * lib/autotest/general.m4 (AT_INIT): Output the definition of
9549 at_data_files earlier.
9550 (--clean, -c): New option.
9551 * tests/Makefile.am: Use this option.
9553 2001-08-27 Akim Demaille <akim@epita.fr>
9555 * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename `ac_dots' as
9556 `ac_top_builddir' to mimic Automake's vocabulary, which much more
9559 * doc/autoconf.texi (Configuration Actions): Document the vars
9560 available in commands.
9561 Emphasize the risks of collisions in init-cmds.
9563 2001-08-27 Akim Demaille <akim@epita.fr>
9565 * doc/autoconf.texi (Input) <AC_INIT>: Move to..
9566 (Initializing configure): this new node.
9568 2001-08-27 Akim Demaille <akim@epita.fr>
9570 * Makefile.am (EXTRA_DIST): INSTALL.txt is a dead hack.
9572 2001-08-27 Akim Demaille <akim@epita.fr>
9574 * m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
9575 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this.
9577 * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
9579 2001-08-27 Akim Demaille <akim@epita.fr>
9581 * lib/autoconf/general.m4 (AU_DEFINE, AU_DEFUN, AU_ALIAS): Move
9583 * lib/autoconf/autoheader.m4: this new file.
9584 * lib/autoconf/general.m4 (AH_OUTPUT, AH_VERBATIM)
9585 (_AH_VERBATIM_OLD, AH_TEMPLATE, _AH_TEMPLATE_OLD, AH_TOP, AH_BOTTOM):
9587 * lib/autoconf/autoupdate.m4: this new file.
9589 2001-08-27 Akim Demaille <akim@epita.fr>
9591 * lib/autoconf/status.m4 (_AC_SRCPATHS): New.
9592 (_AC_OUTPUT_LINKS, _AC_OUTPUT_FILES, _AC_OUTPUT_SUBDIRS): Use it.
9593 Standardize the var names (ac_sub_srcdir -> ac_srcdir, ac_subdir
9595 (_AC_OUTPUT_HEADERS): AS_DIRNAME always return a dir name.
9596 * lib/autoconf/general.m4 (_AC_INIT_HELP): Ditto.
9598 2001-08-27 Akim Demaille <akim@epita.fr>
9600 * lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
9601 (AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
9602 (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
9603 (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
9604 (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
9605 (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
9606 (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
9607 (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
9608 (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
9609 (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
9610 (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
9611 (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
9612 (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
9613 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
9614 (_AC_OUTPUT_SUBDIRS): Move to...
9615 * lib/autoconf/status.m4: this new file.
9616 * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
9617 * tests/Makefile.am, tests/suite.at: Adjust.
9619 2001-08-27 Akim Demaille <akim@epita.fr>
9623 * Makefile.am (AUTOMAKE_OPTIONS): Add 1.5 and dist-bzip2.
9624 (AMTAR): Help automake define it.
9625 (INSTALL, install-data-hook): The INSTALL.txt trick is no longer
9626 needed, 1.5 can have a macro and a target with the same name.
9627 * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/install-sh.m4,
9629 * m4/init.m4, m4/sanity.m4: Update.
9630 * doc/Makefile.am (CLEANFILES): 1.5 knows the texi2dvi files.
9631 * lib/autoconf/Makefile.am, lib/autotest/Makefile.am,
9632 * lib/m4sugar/Makefile.am, lib/autoscan/Makefile.am,
9633 * lib/Autom4te/Makefile.am, man/Makefile.am: Use dist/nodist.
9635 2001-08-27 Akim Demaille <akim@epita.fr>
9637 Provide a mean to ``AC_PREREQ'' for M4sugar, M4sh and Autotest.
9639 * lib/autoconf/version.in: Remove.
9640 * lib/m4sugar/version.in: New.
9641 * lib/m4sugar/m4sugar.m4 (m4_acversion, m4_version_prereq): New.
9643 * bin/autoupdate.in: Distinguish M4sugar vs. Autoconf macros by
9644 the name of the directory they're in, instead of the filename,
9645 since version.m4 is now in m4sugar, but m4_acversion must not be
9646 classified as an Autoconf macro.
9647 ($input_m4): Don't qualify the path to m4sugar.
9648 Rather, pass autoconf_dir to m4.
9649 * tests/Makefile.am (testsuite): Remove -I top_srcdir, unneeded.
9650 * tests/suite.at: Require 2.52c.
9652 2001-08-27 Akim Demaille <akim@epita.fr>
9654 testsuite.log should include config.log.
9656 * lib/autotest/autotest.m4: New.
9657 * lib/autotest/general.m4, tests/atspecific.m4: Adjust.
9658 * tests/suite.at : Adjust.
9659 (AT_INIT): Log config.log.
9660 * lib/m4sugar/m4sugar.m4 (m4_text_box): New.
9661 * lib/m4sugar/m4sh.m4 (_AS_BOX_LITERAL): Adjust.
9662 * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Use them.
9663 (_AC_INIT_PREPARE): Fix the incredibly messy and buggy completion
9664 of config.log on traps.
9665 (_AC_OUTPUT_CONFIG_STATUS): Use AS_BOX.
9666 Use consistently `_ACEOF' for configure's here docs, and `_CSEOF'
9668 Open the log as soon as possible.
9669 Use the same log introduction as configure's.
9671 2001-08-22 Paul Eggert <eggert@twinsun.com>
9673 * doc/autoconf.texi (Indices): New node.
9674 Move indices out of the top level menu and into this submenu.
9676 2001-08-22 Akim Demaille <akim@epita.fr>
9678 * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
9680 (AC_DECL_YYTEXT): Fix the previous patch: it points to AC_PROG_LEX.
9682 2001-08-22 Akim Demaille <akim@epita.fr>
9684 * lib/autoconf/general.m4 (AC_SHELL_PATH_WALK, AC_CHECK_PROG)
9685 (AC_CHECK_PROGS, AC_PATH_PROG, AC_PATH_PROGS, AC_CHECK_TOOL_PREFIX)
9686 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS): Move to...
9687 * lib/autoconf/programs.m4: here.
9688 * lib/autoconf/specific.m4 (_AC_PROG_ECHO, AC_PROG_MAKE_SET)
9689 (AC_PROG_RANLIB, AC_PROG_YACC, AC_PROG_LEX, _AC_DECL_YYTEXT)
9690 (AC_PROG_INSTALL, AC_PROG_LN_S, AC_RSH): Move to...
9691 * lib/autoconf/programs.m4: here.
9692 (_AC_DECL_YYTEXT): Rename as...
9693 (_AC_PROG_LEX_YYTEXT_DECL): this.
9694 * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am
9695 * tests/Makefile.am, tests/suite.am: Adjust.
9697 2001-08-22 Akim Demaille <akim@epita.fr>
9699 * lib/autoconf/general.m4 (AC_LIST_MEMBER_OF, AC_LINKER_OPTION):
9701 * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF, _AC_LINKER_OPTION):
9703 * lib/autoconf/general.m4 (AC_TRY_LINK_FUNC): Move to...
9704 * lib/autoconf/functions.m4: here.
9705 * lib/autoconf/general.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB)
9706 (AH_CHECK_LIB): Move to...
9707 * lib/autoconf/libs: this new file.
9708 * lib/autoconf/specific.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT)
9709 (_AC_PATH_X, AC_PATH_X, AC_PATH_XTRA): Move to...
9710 * lib/autoconf/libs.m4: here.
9711 * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am: Adjust.
9713 2001-08-22 Akim Demaille <akim@epita.fr>
9715 * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Fail if fails.
9716 * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Adjust.
9717 (AC_SITE_LOAD): Better logging of config.site.
9719 2001-08-20 Akim Demaille <akim@epita.fr>
9721 * configure.ac (AT_CONFIG): Fix the path.
9722 * m4/atconfig.m4 (AT_CONFIG): Don't use EOF but ATEOF so that 2.52
9725 2001-08-20 Alexandre Duret-Lutz <duret_g@epita.fr>
9727 * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prepare the cross-compile
9728 program with AC_LANG_PROGRAM before feeding it to
9729 AC_COMPILE_IFELSE. Cleanup grep usage.
9731 2001-08-20 Akim Demaille <akim@epita.fr>
9733 * ChangeLog, ChangeLog.0, ChangeLog.1, ChangeLog.2, AUTHORS, BUGS,
9734 * NEWS, README, README-alpha, TODO, tests/README: This package is
9735 `Autoconf', not `autoconf' (the executable).
9737 2001-08-20 Akim Demaille <akim@epita.fr>
9739 Info readers seem to need `Index' in the index node title :(
9741 * doc/autoconf.texi: Reverse the 2001-08-15 change which
9742 simplified index node names.
9744 2001-08-20 Akim Demaille <akim@epita.fr>
9746 * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Warn if the
9747 arguments are not literals.
9748 * doc/autoconf.texi (Input) <AC_INIT>: Arguments must be literals.
9749 Specify the output variables, and macros defined.
9751 2001-08-20 Akim Demaille <akim@epita.fr>
9753 * doc/autoconf.texi (Examining Declarations) <AC_TRY_CPP>:
9754 (Examining Syntax) <AC_TRY_COMPILE>
9755 (Examining Libraries) <AC_TRY_LINK>
9756 (Test Programs) <AC_TRY_RUN>: These macros double quote some of
9758 Reported by Werner Lemberg.
9760 2001-08-20 Akim Demaille <akim@epita.fr>
9762 * lib/autotest/general.m4 (AT_INIT): Compute top_builddir,
9763 top_srcdir and srcdir from at_topbuild_2_topsrc and at_testdir.
9764 Load atlocal late enough to dump it in the log.
9765 * m4/atconfig.m4 (AT_CONFIG): Pass them to atconfig.
9767 2001-08-20 Akim Demaille <akim@epita.fr>
9769 * tests/torture.at (Configuring subdirectories): New test.
9770 * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Say what you are
9772 * m4/atconfig.m4: Be sure the let $[0] be expandable.
9773 (top_srcdir): Fix its computation.
9775 2001-08-20 Akim Demaille <akim@epita.fr>
9777 * lib/autoconf/general.m4 (_AC_OUTPUT_COMMANDS): Say what you do.
9778 * m4/atconfig.m4 (AT_CONFIG): $1 is now the directory where the
9780 Create `atconfig' automagically.
9781 Configure atlocal.in if present.
9782 * tests/atconfig.in: Remove.
9783 * tests/atlocal.in: New.
9784 * tests/Makefile.am: Adjust.
9786 2001-08-20 Akim Demaille <akim@epita.fr>
9788 Huh!?!?! There are still some user EOF tags used, which prevents
9789 their use in AC_CONFIG_COMMANDS for instance...
9791 * lib/autoconf/general.m4, lib/autoconf/specific.m4,
9792 * lib/autotest/general.m4: Rename the EOF tags as `_ACEOF',
9793 `_CSEOF', or `_ATEOF', as appropriate.
9794 * lib/m4sugar/Makefile.am, lib/autoconf/Makefile.am,
9795 * lib/autotest/Makefile.am (check-local): Enforce this constraint.
9797 2001-08-20 Akim Demaille <akim@epita.fr>
9799 * tests/base.at, tests/m4sh.at, tests/m4sugar.at,
9800 * tests/semantics.at, tests/tools.at, tests/torture.at:
9801 s/^AT_DATA\(([^][]+),/AT_DATA([$1],/.
9803 2001-08-20 Akim Demaille <akim@epita.fr>
9805 Autotest invokes M4sh's initialization.
9807 * lib/autotest/general.m4: Adjust the diversion names.
9808 (AT_INIT): Run AS_INIT.
9809 Use the BINSH diversion to invoke /bin/sh.
9810 * tests/base.at, tests/m4sh.at, tests/m4sugar.at, tests/tools.at:
9811 * tests/torture.at: Respect M4sugar and M4sh macro name spaces.
9813 2001-08-20 Akim Demaille <akim@epita.fr>
9815 Let M4sh have its own diversions.
9817 * lib/autoconf/general.m4 (_m4_divert(BINSH), _m4_divert(REVISION))
9818 (_m4_divert(NOTICE)): Rename as...
9819 * lib/m4sugar/m4msh.m4 (_m4_divert(BINSH), _m4_divert(HEADER-REVISION))
9820 (_m4_divert(HEADER-COMMENT)): these.
9821 (_m4_divert(HEADER-COPYRIGHT), _m4_divert(HEADER-COPYRIGHT)): New.
9822 (_m4_divert(NOTICE)): New, for Libtool.
9823 * lib/autoconf/general.m4 (_m4_divert(PREPARE)): Remove, replaced
9824 long ago with `_m4_divert(GROW)'.
9825 (AC_COPYRIGHT, AC_REVISION, _AC_INIT_NOTICE): Adjust.
9827 2001-08-20 Akim Demaille <akim@epita.fr>
9829 * tests/base.at, tests/compile.at, tests/foreign.at,
9830 * tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
9831 * tests/semantics.at, tests/suite.at, tests/tools.at,
9832 * tests/torture.at: Ask Autotest mode, not Autoconf mode.
9834 2001-08-20 Akim Demaille <akim@epita.fr>
9836 * bin/autom4te.in (handle_output): Handle @__@.
9838 2001-08-20 Akim Demaille <akim@epita.fr>
9840 * lib/autoconf/autoconf.m4, lib/autoconf/oldnames.m4,
9841 * lib/autotest/general.m4: Adjust the license.
9843 2001-08-17 Paul Eggert <eggert@twinsun.com>
9845 * doc/autoconf.texi (Function Portability): Mention snprintf,
9846 following up on a suggestion by Kevin Ryde.
9848 2001-08-17 Akim Demaille <akim@epita.fr>
9850 * doc/install.texi, doc/autoconf.texi: Use `autoconf', not
9851 `autoconf_manual', as texinfo.tex 2001-06-21.10 chokes on it.
9853 2001-08-17 Akim Demaille <akim@epita.fr>
9855 * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
9856 `$0.log' as for projects where testsuite is in src, we'd have
9857 testsuite.log created in src.
9859 2001-08-17 Akim Demaille <akim@epita.fr>
9861 * bin/autom4te.in (&parse_args): Recognize --normalize.
9863 2001-08-17 Akim Demaille <akim@epita.fr>
9865 Start implementing the AC_CHECK_HEADER transition scheme.
9867 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
9868 (_AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_MONGREL): New.
9869 (AC_CHECK_HEADER): Use them.
9871 2001-08-17 Akim Demaille <akim@epita.fr>
9873 * doc/autoconf.texi: Work around Texinfo buglets.
9874 (Transformation Rules): One example is enough, users are expected
9875 to have their brains on. And BTW, use DESTDIR.
9876 (dvar): New macro. Use it.
9878 2001-08-17 Akim Demaille <akim@epita.fr>
9880 * doc/autoconf.texi (Writing testsuite.at) <AT_CHECK>: Complete.
9881 * lib/autotest/general.m4 (AT_INIT): Use the relative dir when
9882 looking for ChangeLogs.
9884 2001-08-17 Akim Demaille <akim@epita.fr>
9886 * bin/autom4te.in: --normalize is a new option.
9887 * bin/autoconf.in: Use it.
9889 2001-08-17 Akim Demaille <akim@epita.fr>
9891 * bin/Makefile.am, lib/Autom4te/Makefile.am, lib/autoconf/Makefile.am
9892 * lib/autotest/Makefile.am, lib/m4sugar/Makefile.am: Add TAGS support.
9894 2001-08-16 Paul Eggert <eggert@twinsun.com>
9896 * doc/autoconf.texi, doc/install.texi: Put copyright notice at
9899 2001-08-15 Akim Demaille <akim@epita.fr>
9901 * doc/Makefile.am (fu): New index, can't use fn because of defmac.
9904 2001-08-15 Akim Demaille <akim@epita.fr>
9906 * doc/autoconf.texi (pr): New index.
9907 (prindex, findex): Use, merge, and output them.
9908 (Environment Variable Index, Output Variable Index)
9909 (Preprocessor Symbol Index, Autoconf Macro Index, M4 Macro Index)
9910 (Autotest Macro Index): Rename as...
9911 (Environment Variables, Output Variables,Preprocessor Symbols)
9912 (Autoconf Macros, M4 Macros, Autotest Macros): these.
9913 * doc/install.texi: Use @command.
9914 (Environment Variables): Rename as...
9915 (Defining Variables): this.
9917 2001-08-15 Akim Demaille <akim@epita.fr>
9919 * doc/autoconf.texi (Function Portability): sprintf's return
9923 2001-08-15 Akim Demaille <akim@epita.fr>
9925 * Makefile.maint (CVS): New.
9926 (local-check): Run changelog-check. last.
9927 (alpha): Don't depend upon local-check, since...
9928 (cvs-dist): depends upon it.
9930 2001-08-15 Tim Van Holder <tim.van.holder@pandora.be>
9932 * tests/Makefile.am: Use a clean-local rule to remove
9933 autom4te.cache (it's a directory, not a file.
9934 * Makefile.am: Ditto (but maintainer-clean-local).
9936 2001-08-15 Akim Demaille <akim@epita.fr>
9938 * bin/autom4te.in (@m4_warning): New.
9939 (&handle_m4): Use it.
9940 * tests/m4sugar.at (m4_warn): Pass `-f' to autom4te to ensure the
9941 warnings are issued at each run.
9942 * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): M4sugar
9945 2001-08-15 Akim Demaille <akim@epita.fr>
9947 * tests/atspecific.m4 (AT_CHECK_AUTOUPDATE): Perl is now required:
9948 don't waste time running `autoupdate --version' works.
9949 * tests/tools.at (autoupdating AC_PREREQ): Likewise.
9951 2001-08-13 Akim Demaille <akim@epita.fr>
9953 * doc/autoconf.texi (ma): Rename this index as...
9956 2001-08-13 Akim Demaille <akim@epita.fr>
9958 * Makefile.am: Remove dead code and dead comments.
9959 (pdf, html): New targets.
9960 * doc/autoconf.texi (Using Autotest): New chapter.
9961 * doc/Makefile.am (pdf): New targets.
9962 (CLEANFILES): Adjust.
9964 2001-08-13 Akim Demaille <akim@epita.fr>
9966 * lib/autotest/general.m4 (AT_INIT): Log the start/stop dates and
9967 duration of the test suite.
9969 2001-08-12 Alexandre Duret-Lutz <duret_g@epita.fr>
9971 * tests/semantics.at (AC_C_BIGENDIAN): Explicitelly save and load
9972 endianness for comparison instead of relying on AT_CHECK_ENV.
9974 2001-08-11 Paul Eggert <eggert@twinsun.com>
9976 * doc/autoconf.texi, doc/install.texi: Add a copyright notice
9977 to the INSTALL file.
9979 2001-08-11 Paul Eggert <eggert@twinsun.com>
9981 * NEWS: The autoconf manual now is distributed under the terms
9982 of the GNU Free Documentation License.
9984 * doc/autoconf.texi: Switch from old style copyright notice to FDL.
9985 Add an appendix "Copying This Manual" for the FDL.
9987 * doc/fdl.texi: New file, from
9988 <http://www.gnu.org/licenses/fdl.texi>.
9990 * doc/Makefile.am (autoconf_TEXINFOS): Add fdl.texi.
9992 2001-08-10 Paul Eggert <eggert@twinsun.com>
9994 * AUTHORS, BUGS, ChangeLog, ChangeLog.0, ChangeLog.1,
9995 ChangeLog.2, GNUmakefile, Makefile.maint, NEWS, README,
9996 README-alpha, TODO, configure.ac, lib/autoconf/Makefile.am,
9997 m4/atconfig.m4, m4/init.m4, m4/m4.m4, m4/missing.m4,
9998 m4/sanity.m4, tests/README, tests/aclocal.m4,
9999 tests/atspecific.m4, tests/base.at, tests/compile.at,
10000 tests/foreign.at, tests/m4sh.at, tests/m4sugar.at,
10001 tests/semantics.at, tests/suite.at, tests/tools.at,
10002 tests/torture.at: Add copyright notice.
10004 * tests/mktests.sh: Update year in copyright notice.
10006 2001-08-12 Alexandre Duret-Lutz <duret_g@epita.fr>
10008 * tests/semantics.at (AC_C_BIGENDIAN): New test.
10010 2001-08-11 Alexandre Duret-Lutz <duret_g@epita.fr>
10012 * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Handle ACTION-IF-TRUE,
10013 ACTION-IF-FALSE, and ACTION-IF-UNKNOWN.
10014 * doc/autoconf.texi (C Compiler Characteristics): Update
10015 documentation for AC_C_BIGENDIAN.
10017 2001-08-11 Alexandre Duret-Lutz <duret_g@epita.fr>
10019 * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Guess endianness by grep'ing
10020 magic values from an object file when cross-compiling.
10021 Based on code by Guido Draheim <Guido.Draheim@gmx.de>.
10023 2001-08-10 Akim Demaille <akim@epita.fr>
10025 * bin/autom4te.in (&handle_output): Don't use `grep' with side
10027 Suggested by Russ Allbery.
10029 2001-08-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
10031 * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Propagate the
10032 current $prefix to the sub-configures.
10034 2001-08-09 Tim Van Holder <tim.van.holder@pandora.be>
10036 * lib/autoconf/lang.m4: Ignore *.xSYM when looking for an executable
10037 extension (needed on BeOS). Reported by Guido van Rossum.
10039 2001-08-09 Akim Demaille <akim@epita.fr>
10041 * bin/autom4te.in ($icache): Load it only if older than autom4te.
10043 2001-08-07 Akim Demaille <akim@epita.fr>
10045 * lib/autotest/general.m4 (AT_INIT): All the `at-*' are to be
10047 (at-setup-line): Huh? Be a variable `at_setup_line', not a file.
10048 No need to remove the files before and after the each test, before
10049 each test and at the end of the suite is enough.
10050 Display only the children `times', not the shell's.
10051 If the test failed or was skipped, at-times is not available.
10053 2001-08-07 Akim Demaille <akim@epita.fr>
10055 Always produce testsuite.log, including when there are no
10056 failures. This helps getting information on skipped tests, and
10057 duration of the tests. Err, implement the latter btw.
10059 * lib/autotest/general.m4 (AT_INIT): Set up fd 6 for the log.
10060 Dump information on the first run of each test.
10061 (AT_CLEANUP): Create `at-times' containing the duration of the
10064 2001-08-07 Akim Demaille <akim@epita.fr>
10066 The use of `dumpstat' revealed that `len' was used although it
10067 should not. m4_text_wrap was using it, but in the Autoconf world
10068 where it is legal. Hence (i) test M4sh in its own world, not
10069 Autoconf's, and (ii), ahem, fix the bug :)
10071 * lib/autotest/general.m4: Be sure the set good quotes, as tracing
10072 does not like `' instead of [].
10073 (AT_INIT): Forbid `^_?AT_'.
10074 And don't output such tokens.
10075 * tests/Makefile.am (CLEANFILES): Add `script', `script.s4g',
10076 `script.as', and `autom4te.cache'.
10077 Remove `empty' and `macro' which are no longer used.
10078 * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): New.
10079 * tests/m4sugar.at: Use it.
10080 * lib/m4sugar/m4sugar.m4: Use `m4_len' not `len'.
10082 2001-08-07 Akim Demaille <akim@epita.fr>
10084 * bin/autoconf.in, bin/autoheader.in: --force, -f is a new option.
10086 2001-08-07 Alexandre Duret-Lutz <duret_g@epita.fr>
10088 * bin/autom4te.in (handle_output): Typo in quadrigraph substitution.
10090 2001-08-04 Akim Demaille <akim@epita.fr>
10092 * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, AC_FUNC_ERROR_AT_LINE)
10093 (AC_FUNC_FSEEKO, AC_FUNC_OBSTACK): Use AC_LANG_IFELSE, not
10095 * lib/autoconf/headers.m4 (AC_HEADER_MAJOR): Likewise.
10096 * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS)
10097 (AC_F77_MAIN): Likewise.
10099 2001-08-04 Akim Demaille <akim@epita.fr>
10101 Don't rely on M4sugar outputting the patterns in files, since we
10102 might process the output _without_ running m4, hence without these
10105 * lib/m4sugar/m4sugar.m4 (m4_init): No need for `m4_tmpdir'.
10106 * bin/autom4te.in (@Request::includes): Remove, unused.
10107 (@Request::source): Rename as...
10108 (@Request::input): this.
10109 (@preselect): Add `m4_pattern_forbid' and `m4_pattern_allow'.
10110 (&handle_output): Fetch the patterns from the traces.
10111 `$forbidden' and `$allowed' are constant: use m//o.
10112 (&handle_m4): M4sugar no longer wants `m4_tmpdir'.
10113 (m4_pattern_forbid, m4_pattern_allow): Adjust for tracing only.
10115 2001-08-04 Akim Demaille <akim@epita.fr>
10117 `autoconf && autoheader' is sped up. Now, speed up `autoheader &&
10118 autoconf', i.e., in addition to caching traces, cache the output.
10120 * bin/autom4te.in (Request::cache): Rename as...
10121 (Request::id): this.
10122 ($cache, $icache, $tcache, $ocache): New.
10123 (&handle_m4): Save M4 output in the cache instead of $tmp.
10124 (&handle_output): Adjust.
10125 (&up_to_date_p): Check that the output cache is up to date too.
10126 (top level): Run `&handle_m4' iff force or the cache is invalid.
10127 Run `&handle_output' if the output cache is more recent.
10129 2001-08-04 Akim Demaille <akim@epita.fr>
10131 * bin/autom4te.in ($force): New.
10132 (&parse_args, &print_usage): -f, --force is a new option.
10133 (&handle_output): CPP directives might have spaces after `#'.
10134 (&parse_args): The first file only can be frozen.
10136 2001-08-04 Akim Demaille <akim@epita.fr>
10138 Don't let autom4te compute the `include' traces several times:
10139 first check that the trace cache file is up to date, and then
10140 compare its timestamp with that of the output.
10142 * bin/autom4te.in, bin/autoupdate.in, bin/autoscan.in: Normalize
10143 the preamble. Don't require 5.005 as Autom4te::General does it,
10144 and better yet (use `use', not `require'!).
10145 * lib/Autom4te/Struct.pm: Rename the last occurrences of
10146 Class::Struct as Autom4te::Struct.
10147 * lib/Autom4te/General.pm (File::stat): Use it.
10148 (&mtime): New, export it.
10149 * bin/autom4te.in: Use it.
10150 Declare `$req' is invalid if it is outdated.
10151 Don't declare it valid before saving it if something went wrong.
10153 2001-08-04 Akim Demaille <akim@epita.fr>
10155 Autom4te shall not encode Autoconf data, and preselecting traces
10156 must be proposed to the users.
10158 * bin/autom4te.in (@required_trace): Remove.
10160 (&parse_args, &print_usage): -p, --preselect is a new option.
10161 (&up_to_date_p): Adjust.
10162 * bin/autoconf.in: Preselect some Autoconf macros.
10164 2001-08-04 Akim Demaille <akim@epita.fr>
10166 * tests/tools.at (autoconf --trace: user macros): Check traces on
10167 macros invoked without arguments, and macros invoked with multiple
10170 2001-08-03 Alexandre Duret-Lutz <duret_g@epita.fr>
10172 * bin/autom4te.in (handle_traces): Fix rewriting of traces without
10175 2001-08-03 Akim Demaille <akim@epita.fr>
10177 * bin/autoconf.in ($@): Work around the usual sh bug.
10180 2001-08-03 Akim Demaille <akim@epita.fr>
10182 Clean up the handling of the M4 builtins tracing exception.
10184 * bin/autom4te.in (Request::request): Don't complete M4 builtins
10186 (@m4_builtins): Rename as...
10187 (@m4_builtin): this.
10188 (%m4_builtin_alternate_name): New.
10189 (&parse_args): Complete the trace requests with alternate names.
10190 (&handle_traces): Hence no longer do it here.
10191 (&trace_requests): Remove, unused.
10193 2001-08-03 Akim Demaille <akim@epita.fr>
10195 * doc/autoconf.texi (Redefined M4 Macros): Document m4_exit,
10196 m4_if, and m4_wrap.
10198 2001-08-03 Akim Demaille <akim@epita.fr>
10200 * lib/m4sugar/m4sugar.m4 (m4_init): Also forbid `_m4_*' tokens.
10201 (m4_divert_pop): Dump the whole diversion stack when a diversion
10203 * bin/autom4te.in (&handle_output): Remember of the first
10204 occurrence of a possibly undefined macro, not the last.
10205 Complain about the possibly undefined macros in the same order as
10206 the appear in the output.
10207 * lib/autoconf/Makefile.am (autoconf.m4f): List its dependencies.
10208 * tests/tools.at (autoconf: forbidden tokens, basic)
10209 (autoconf: forbidden tokens, exceptions): No longer sort
10210 autoconf's stderr, as it is now deterministic.
10211 Check that `dnl' is caught.
10213 2001-08-01 Akim Demaille <akim@epita.fr>
10215 * configure.ac: Bump to 2.52c.
10217 2001-08-01 Akim Demaille <akim@epita.fr>
10221 * lib/Autom4te/Makefile.am (perllibdir): s/Autoconf/Autom4te/.
10223 2001-08-01 Akim Demaille <akim@epita.fr>
10227 2001-08-01 Akim Demaille <akim@epita.fr>
10229 * lib/Autom4te/General.pm: Use `carp' and `croak', not `warn' and
10232 * bin/autoconf.in, bin/autom4te.in, bin/autoupdate.in: Remove your
10233 `END', as `Autom4te::General::END' will be triggered.
10234 * bin/autoupdate.in, bin/autoscan.in: Improve error messages accuracy.
10235 * bin/autoupdate.in (File::Compare, File::Copy): Use them instead of
10236 system to run `mv', `rm', and `cmp'.
10238 2001-08-01 Akim Demaille <akim@epita.fr>
10240 * lib/Autom4te/General.pm (&unique): New.
10241 * bin/autoscan.in (&output): Use it to issue trace requests once.
10243 2001-08-01 Akim Demaille <akim@epita.fr>
10245 * lib/Autom4te/General.pm: New.
10246 * bin/autom4te.in (Autom4te::General): Use it.
10247 ($me, $tmp, $verbose, $debug, &mktmpdir, &verbose, &xsystem)
10248 (&find_configure_ac, &find_slave): Remove.
10249 * bin/autoscan.in: Likewise.
10250 * bin/autoupdate.in: Likewise.
10252 2001-08-01 Akim Demaille <akim@epita.fr>
10254 * autoconf.in, autom4te.in, autoscan.in, ifnames.in,
10255 * autoheader.in, autoreconf.in, autoupdate.in: Move to...
10256 * bin: here, new directory.
10257 * lib/Autoconf: Rename as...
10258 * lib/Autom4te: this, to please case insensitive junkie OSes.
10260 2001-08-01 Akim Demaille <akim@epita.fr>
10262 * autom4te.in ($m4): Handle the --nesting-limit.
10263 * autoconf.in (M4): Remove.
10265 2001-08-01 Akim Demaille <akim@epita.fr>
10267 * autoconf.in ($AWK): Remove, no longer used.
10268 * test/tools.at: Use AT_CHECK_AUTOCONF.
10269 (AWK portability): Remove, for autoconf no longer uses AWK.
10270 (Syntax of the Perl scripts): New.
10271 * configure.ac: autoconf no longer needs an AWK with a good
10273 Use a static test on AC_PACKAGE_VERSION.
10274 * autom4te.in (&up_to_date_p): Output depends on the arguments.
10275 * lib/autoconf/Makefile.am: Ship version.m4, maintainer file.
10276 * tests/atconfig.in (PERL): New.
10278 2001-08-01 Akim Demaille <akim@epita.fr>
10280 * lib/autoconf/lang.m4 (AC_LANG(C), AC_LANG_C, _AC_LANG_ABBREV(C))
10281 (AC_LANG(C++), AC_LANG_CPLUSPLUS, _AC_LANG_ABBREV(C++))
10282 (AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C), AC_LANG_CALL(C))
10283 (AC_LANG_FUNC_LINK_TRY(C), AC_LANG_BOOL_COMPILE_TRY(C))
10284 (AC_LANG_INT_SAVE(C), _AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
10285 (AC_LANG_PREPROC(C), _AC_PROG_PREPROC_WORKS_IFELSE, AC_PROG_CPP)
10286 (AC_LANG_COMPILER(C), ac_cv_prog_gcc, AC_PROG_CC, _AC_PROG_CC_G)
10287 (AC_PROG_GCC_TRADITIONAL, AC_PROG_CC_C_O, AC_LANG_PREPROC(C++))
10288 (AC_PROG_CXXCPP, AC_LANG_COMPILER(C++), ac_cv_prog_gxx)
10289 (AC_PROG_CXX, _AC_PROG_CXX_G, _AC_PROG_CXX_EXIT_DECLARATION)
10290 (AC_PROG_CC_STDC, AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE)
10291 (AC_C_BIGENDIAN, AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE)
10292 (AC_C_STRINGIZE, AC_C_PROTOTYPES): Move to...
10293 * lib/autoconf/c.m4: here, new file.
10295 * lib/autoconf/lang.m4 (AC_LANG(Fortran 77), AC_LANG_FORTRAN77)
10296 (_AC_LANG_ABBREV(Fortran 77), AC_LANG_SOURCE(Fortran 77))
10297 (AC_LANG_PROGRAM(Fortran 77), AC_LANG_CALL(Fortran 77))
10298 (AC_LANG_PREPROC(Fortran 77), AC_LANG_COMPILER(Fortran 77))
10299 (ac_cv_prog_g77, AC_PROG_F77, _AC_PROG_F77_G, AC_PROG_F77_C_O)
10300 (_AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V, AC_F77_LIBRARY_LDFLAGS)
10301 (AC_F77_DUMMY_MAIN, _AC_LANG_PROGRAM_C_F77_HOOKS, AC_F77_MAIN)
10302 (_AC_F77_NAME_MANGLING, AC_F77_NAME_MANGLING, AC_F77_WRAPPERS)
10303 (AC_F77_FUNC): Move to...
10304 * lib/autoconf/fortran.m4: here, new file.
10306 2001-08-01 Akim Demaille <akim@epita.fr>
10308 * acfunctions.m4: Rename as...
10309 * lib/autoconf/functions.m4: this.
10310 * acgeneral.m4: Rename as...
10311 * lib/autoconf/general.m4: this.
10312 * acheaders.m4: Rename as...
10313 * lib/autoconf/headers.m4: this.
10314 * aclang.m4: Rename as...
10315 * lib/autoconf/lang.m4: this.
10316 * acoldnames.m4: Rename as...
10317 * lib/autoconf/oldnames.m4: this.
10318 * acspecific.m4: Rename as...
10319 * lib/autoconf/specific.m4: this.
10320 * actypes.m4: Rename as...
10321 * lib/autoconf/types.m4: this.
10322 * autoconf.m4: Rename as...
10323 * lib/autoconf/autoconf.m4: this.
10325 * m4sugar.m4: Rename as...
10326 * lib/m4sugar/m4sugar.m4: this.
10327 * m4sh.m4: Rename as...
10328 * lib/m4sugar/m4sh.m4: this.
10330 * tests/atgeneral.m4: Rename as...
10331 * lib/autotest/general.m4: this.
10333 * acfunctions: Rename as...
10334 * lib/autoscan/functions: this.
10335 * acheaders: Rename as...
10336 * lib/autoscan/headers: this.
10337 * acidentifiers: Rename as...
10338 * lib/autoscan/identifiers: this.
10339 * aclibraries: Rename as...
10340 * lib/autoscan/libraries: this.
10341 * acmakevars: Rename as...
10342 * lib/autoscan/makevars: this.
10343 * acprograms: Rename as...
10344 * lib/autoscan/programs: this.
10346 2001-08-01 Akim Demaille <akim@epita.fr>
10348 * doc/autoconf.texi: Moving/deleting open files is not portable.
10349 Portability issues for `.' (source), and more information about sed.
10351 2001-07-25 Steven G. Johnson <stevenj@alum.mit.edu>
10353 * aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Ignore -libmil (on Solaris),
10354 which has a special meaning and is not a reference to libibmil.a.
10355 Reported by Matteo Frigo.
10357 2001-07-25 Pavel Roskin <proski@gnu.org>
10359 * autom4te.in (mktmpdir): Strip trailing newline from mktemp
10362 2001-07-25 Akim Demaille <akim@epita.fr>
10364 * autoconf.in: Try to define the variables before using them.
10365 * autom4te.in ($perllibdir): Use `$autom4te_perllibdir' as envvar
10366 instead of `$perllibdir'.
10367 * tests/atconfig.in ($autom4te_perllibdir): Export it.
10369 2001-07-25 Akim Demaille <akim@epita.fr>
10371 * autoconf.in (ac_LF_and_DOT): Remove, unused.
10373 2001-07-24 Akim Demaille <akim@epita.fr>
10375 Let autoconf use autom4te for traces.
10377 * autoconf.in ($task, task trace): Remove, merely pass --trace to
10379 * autoheader.in: Don't pass `-' to autoconf, rather, a tmp file.
10380 (Because I found no way for autom4te to accept `-').
10381 * autom4te.in (&Request::request): Beware of M4 builtins.
10382 (END): Don't try to remove the content of an empty dir.
10383 (&parse_args): Default is `$f:$l:$n:$%', not `$f:$l:$n:$*'.
10384 (&handle_output): Set a default value to `$forbidden'.
10385 * autoupdate.in (&verbose, &xsystem): New, from autom4te.in.
10386 ($autoconf): Pass --debug and --verbose.
10387 * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Clean up autom4te's
10390 2001-07-24 Akim Demaille <akim@epita.fr>
10392 Let autoconf use autom4te to create configure.
10394 * autoconf.in ($automate): New var.
10395 (task script): Use autom4te.
10396 * autom4te.in (File::Spec): Use it.
10398 (&parse_args): --warning is -W, not -w.
10399 Find the top level files.
10400 (&handle_m4): Pass the warnings flags.
10401 Don't report verbosely m4's failures, unless requested.
10402 (&handle_output): Don't complain for forbidden tokens in comments.
10403 Be sure to report all the forbidden tokens within a single line.
10404 (&trace_format_to_m4): Preserve `$_'.
10405 (&handle_traces): Sort the output macros.
10406 (&up_to_date_p): Find the files before trying to get its time stamp.
10408 2001-07-24 Akim Demaille <akim@epita.fr>
10410 * Makefile.am: Ship, build and install Autom4te.
10411 (SUBDIRS): Add lib.
10412 * lib/Autoconf/Struct.pm: New, from Automake 1.5.
10413 * configure.in: Require Perl.
10414 * man/autom4te.in: New.
10416 2001-07-19 Paul Eggert <eggert@twinsun.com>
10418 * doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
10419 example, rather than (exit 1); exit (which isn't portable).
10421 2001-07-18 Akim Demaille <akim@epita.fr>
10425 2001-07-18 Akim Demaille <akim@epita.fr>
10427 The C-Fortran 77 hooks are available only once AC_F77_DUMMY_MAIN
10428 was run, while they are needed also when it is expanded.
10429 Reported by Nicolas Joly.
10431 * aclang.m4 (AC_F77_DUMMY_MAIN): Define _AC_LANG_PROGRAM_C_F77_HOOKS.
10432 (AC_LANG_PROGRAM(C)): Use it instead of depending upon
10433 AC_F77_DUMMY_MAIN being expanded.
10435 2001-07-18 Akim Demaille <akim@epita.fr>
10437 * configure.in: Bump to 2.51a.
10439 2001-07-17 Akim Demaille <akim@epita.fr>
10443 2001-07-17 Akim Demaille <akim@epita.fr>
10445 * aclang.m4 (AC_F77_DUMMY_MAIN): Let the interface be more
10446 Autoconfy: $1 = action-if-found, $2 = action-if-not-found.
10448 2001-07-17 Akim Demaille <akim@epita.fr>
10450 The runtime test for AC_FUNC_GETPGRP fails when prototypes are
10451 used. Well, then use the prototypes when you can, and runtime as
10453 Reported by Artur Frysiak
10455 * acfunctions.m4 (_AC_FUNC_GETPGRP_TEST): New.
10456 (AC_FUNC_GETPGRP): Use it.
10457 First try to compile with 0-ary or 1-ary calls.
10459 2001-07-17 Akim Demaille <akim@epita.fr>
10461 * actypes.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P): `foo_t' is a
10465 2001-07-17 Akim Demaille <akim@epita.fr>
10467 * Makefile.maint: Sync. with cppi 1.10.
10469 2001-07-17 Akim Demaille <akim@epita.fr>
10471 * aclang.m4 (AC_LANG_PROGRAM(C)): Output F77_DUMMY_MAIN only when
10472 AC_F77_DUMMY_MAIN has been run.
10473 From Pavel Roskin and Steven G. Johnson.
10475 2001-07-17 Akim Demaille <akim@epita.fr>
10477 * configure.in: Rename as...
10478 * configure.ac: this.
10480 2001-07-17 Akim Demaille <akim@epita.fr>
10482 * Makefile.am (INSTALL.txt): Don't use $@ and $< in non suffix
10485 * Makefile.maint (release-archive-dir): Rename as...
10486 (release_archive_dir): this, so that it can be specialized in
10489 2001-07-14 Akim Demaille <akim@epita.fr>
10491 * configure.in: Bump to 2.50d.
10493 2001-07-14 Akim Demaille <akim@epita.fr>
10496 * Makefile.maint (alpha): Typo.
10498 2001-07-14 Akim Demaille <akim@epita.fr>
10500 * doc/autoconf.texi (Limitations of Make): Macro names and underscore.
10502 2001-07-14 Akim Demaille <akim@epita.fr>
10504 * config/config.guess, config/config.sub, config/texinfo.tex
10505 * doc/standards.texi, doc/make-stds.texi: Update.
10507 2001-07-14 Akim Demaille <akim@epita.fr>
10509 * Makefile.maint (cvs-check, cvs-tag-check, cvs-diff-check): New.
10511 2001-07-14 Akim Demaille <akim@epita.fr>
10513 * Makefile.maint (maintainer-check): Rename as...
10514 (maintainer-distcheck): this.
10515 (changelog-check, static-check): New.
10518 2001-07-14 Kevin Ryde <user42@zip.com.au>
10520 * doc/autoconf.texi (C++ Compilers Characteristics): Last resort
10521 for CXX is g++, not gcc.
10523 2001-07-14 Akim Demaille <akim@epita.fr>
10525 * doc/autoconf.texi (Files): New subsection.
10527 2001-07-14 Akim Demaille <akim@epita.fr>
10529 * doc/autoconf.texi (C Compiler, Fortran 77 Compiler): Be subsections
10531 (Generic Compiler Characteristics): this.
10532 (C++ Compiler): New subsection.
10534 2001-07-14 Akim Demaille <akim@epita.fr>
10536 * autoscan.in: Use IO::File.
10537 Adjust all the routines to use it.
10538 ($log): New file (autoscan.log).
10539 (output): Dump detailed logs into $log, and a shortened version to
10541 (&scan_makefile): Refine the regexp catching tokens in the code.
10542 * doc/autoconf.texi (autoscan Invocation): Document `autoscan.log'
10543 and the `configure.ac' checking feature.
10545 2001-07-12 Akim Demaille <akim@epita.fr>
10547 For some AWK, such as on HPUX 11, `xfoo' does not match `foo|^bar'.
10548 Reported by Michael Elizabeth Chastain.
10550 * autoconf.in: Refuse such AWK.
10551 * configure.in: Likewise.
10552 * Makefile.am (acversion.m4): Do not use move-if-change this file
10554 * doc/autoconf.texi (Fortran 77 Compiler): Some typos.
10556 2001-07-10 Jens Petersen <petersen@redhat.com>
10558 * autoscan.in (&scan_makefile): Improve programs regexp to parse
10559 things like "g++", "file.c" and "some-conf" as tokens.
10560 (&scan_file): Match C++ files extensions.
10561 If the filename extension is C++ then ask for c++.
10563 2001-07-05 Steven G. Johnson <stevenj@alum.mit.edu>
10565 * aclang.m4 (AC_F77_DUMMY_MAIN): Use AC_TRY_LINK, not
10566 AC_TRY_LINK_FUNC, to check whether defining a dummy
10567 main-like routine is needed for linking with F77 libs.
10569 2001-07-05 Pavel Roskin <proski@gnu.org>
10571 * aclocal.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Remove conftest*
10573 (_AC_PROG_F77_V_OUTPUT): Remove conftest*, not conftest.* after
10576 2001-07-05 Akim Demaille <akim@epita.fr>
10578 * Makefile.am (move_if_change): New. Use it instead of `mv'.
10579 (acversion.m4): Name it `$(srcdir)/acversion.m4' to ease broken
10581 Reported by Nicolas Joly.
10583 2001-07-04 Akim Demaille <akim@epita.fr>
10585 * acgeneral.m4 (_AC_RUN_IFELSE): Remove conftest.o when cleaning
10587 * acfunctions.m4 (AC_FUNC_WAIT3): Use `break' to silent some
10588 warnings from compilers.
10589 * aclang.m4 (_AC_LANG_COMPILER_GNU): Log the version information
10590 for all the compilers, not only GNU. Hence move from here...
10591 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77): to here.
10593 2001-07-04 Akim Demaille <akim@epita.fr>
10595 * acfunctions.m4 (AC_FUNC_STRTOD, AC_FUNC_STRERROR_R)
10596 (AC_FUNC_STRCOLL, AC_FUNC_WAIT3): Use AC_RUN_IFELSE and
10599 2001-07-04 Akim Demaille <akim@epita.fr>
10601 * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Actually apply
10602 the ``strings.h'' change claimed below.
10604 2001-07-04 Akim Demaille <akim@epita.fr>
10606 * aclang.m4 (_AC_LANG_COMPILER_GNU): s/-dumpspecs/-v/.
10608 2001-07-04 Akim Demaille <akim@epita.fr>
10610 * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
10611 strings.h if usable with string.h.
10612 Suggested by Paul Eggert.
10614 2001-07-04 Akim Demaille <akim@epita.fr>
10616 * autoscan.in (&scan_file): Skip FILE if there is FILE.in.
10617 From Jens Petersen.
10619 2001-07-03 Akim Demaille <akim@epita.fr>
10621 * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Specify CONFIG_FILES
10624 2001-07-03 Akim Demaille <akim@epita.fr>
10626 * acheaders.m4 (AC_CHECK_HEADER): When INCLUDES are set, use the
10627 compiler, not the preprocessor.
10628 * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): No longer use
10629 dedicated code to check for inttypes.h, as AC_CHECK_HEADERS does
10631 * Makefile.am (.m4.m4f): Emphasize M4 error messages and fail
10632 earlier if there are.
10634 2001-07-03 Akim Demaille <akim@epita.fr>
10636 * autoscan.in ($initfile): Remove.
10637 (&find_file): Rename as...
10638 (&scan_file): this.
10639 Immediately scan the current file, instead of gathering them, and
10640 later having them handled by &scan_files.
10641 (&scan_files): Merely invoke Find::File.
10644 2001-07-02 Akim Demaille <akim@epita.fr>
10646 * autoscan.in: Formatting changes, matching the invocation order.
10647 (File::Find): Use it instead of Perl 4's `find.pl'.
10648 (&wanted): Rename as...
10649 (&find_file): this.
10651 2001-07-01 Pavel Roskin <proski@gnu.org>
10653 * aclang.m4 (AC_F77_DUMMY_MAIN): Remove conftest* after using
10654 break in the argument to AC_TRY_LINK_FUNC.
10655 (AC_F77_MAIN): Remove conftest* after using break in the
10656 argument to AC_TRY_LINK.
10658 2001-07-01 Steven G. Johnson <stevenj@alum.mit.edu>
10660 Add alternate 'main' routine detection for linking C/C++ with Fortran,
10661 fixing link failures for e.g. AC_F77_WRAPPERS on NetBSD.
10663 * aclang.m4 (AC_F77_DUMMY_MAIN): New macro to detect whether a
10664 dummy alternate main is required even if the user provides her own
10666 (AC_F77_MAIN): New macro to detect whether it is possible to
10667 provide an alternate 'main' function name, using the 'main' from
10668 the Fortran libraries.
10669 (AC_LANG_PROGRAM(C)): Use F77_DUMMY_MAIN, if it is defined, so that
10670 cross-language link tests can be performed successfully.
10671 (_AC_F77_NAME_MANGLING): Require AC_F77_DUMMY_MAIN. Also put $FLIBS
10672 after $LIBS, for consistency; this should be the general rule since
10673 the user may want to link to Fortran libraries that require $FLIBS.
10674 * doc/autoconf.texi: Document AC_F77_DUMMY_MAIN and AC_F77_MAIN.
10676 2001-06-29 Pavel Roskin <proski@gnu.org>
10678 * atgeneral.m4 (AT_CHECK): Add a newline to the end of
10679 at-stdout and at-stderr instead of removing the newline
10680 from the echo output, which is not guaranteed to work.
10682 2001-06-28 Jens Petersen <petersen@redhat.com>
10684 * aclang.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Only add declaration to
10685 confdefs.h when non-zero.
10687 2001-06-28 Akim Demaille <akim@epita.fr>
10689 * configure.in: Bump to 2.50c.
10691 2001-06-26 Akim Demaille <akim@epita.fr>
10695 2001-06-26 Akim Demaille <akim@epita.fr>
10699 2001-06-25 Pavel Roskin <proski@gnu.org>
10701 * tests/atspecific.m4 (AT_CHECK_MACRO): Accept one more
10702 argument, AUTOCONF-FLAGS.
10703 * tests/mktests.sh (update_exclude_list): Add
10704 AC_SYS_RESTARTABLE_SYSCALLS and AC_FUNC_WAIT3.
10705 * tests/semantics.at: Test AC_SYS_RESTARTABLE_SYSCALLS and
10706 AC_FUNC_WAIT3 with "-W no-obsolete".
10708 2001-06-25 Akim Demaille <akim@epita.fr>
10710 * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
10712 2001-06-25 Akim Demaille <akim@epita.fr>
10714 * autoscan.in (%macro): Now maps from word to list of macros.
10715 (&init_tables): Die when a word which is already handled by
10716 explicit macros is mapped to the default macro.
10717 (&print_unique): Remove, inlined in...
10718 (&output_kind): here.
10719 (File::Basename): Use it.
10720 (&output): Sort the CONFIG_FILES.
10721 * acheaders: Normalize.
10722 * acfunctions: Likewise.
10724 2001-06-25 Akim Demaille <akim@epita.fr>
10726 * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
10727 characteristics in the logs.
10728 Suggested by Mo DeJong.
10730 2001-06-24 Akim Demaille <akim@epita.fr>
10732 * acfunctions.m4 (AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH)
10733 (AM_FUNC_MKTIME, AM_FUNC_OBSTACK, AM_FUNC_STRTOD): Reactivated.
10734 * doc/autoconf.texi (Autoconf 2.13): New section.
10736 2001-06-24 Akim Demaille <akim@epita.fr>
10738 * autoconf.in (Task traces): Separate the error messages from the
10739 traces to improve robustness.
10741 2001-06-23 Akim Demaille <akim@epita.fr>
10743 * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
10744 three as failures are unlikely, and speed matters.
10746 2001-06-23 Akim Demaille <akim@epita.fr>
10748 * doc/autoconf.texi (Redefined M4 Macros): New.
10750 2001-06-23 Akim Demaille <akim@epita.fr>
10752 * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Consider
10753 inttypes.h is missing if it conflicts with sys/types.h, as on IRIX
10756 2001-06-23 Paolo Bonzini <bonzini@gnu.org>
10758 * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Defer parsing of
10759 config.status targets to after the evaluation of the INIT-CMDS.
10760 Double quote config.status targets (used to be single quoted).
10762 2001-06-23 Akim Demaille <akim@epita.fr>
10764 * tests/torture.at (CONFIG_FILES, HEADERS, LINKS and COMMANDS):
10765 Check the content of the created file.
10766 Check the ./config.status command line invocation.
10768 2001-06-23 Akim Demaille <akim@epita.fr>
10770 * tests/foreign.at (Libtool): Reject prehistoric versions.
10772 2001-06-23 Akim Demaille <akim@epita.fr>
10774 * aclang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Try to be robust to
10775 preexisting files matching a.*.
10777 2001-06-23 Akim Demaille <akim@epita.fr>
10779 * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Output error messages on
10781 * doc/autoconf.texi (AC_ARG_VAR): Update.
10783 2001-06-21 Akim Demaille <akim@epita.fr>
10785 * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Die instead of warning when
10786 precious variables have changed.
10787 * tests/torture.at (AC_ARG_VAR): Adjust.
10789 2001-06-21 Akim Demaille <akim@epita.fr>
10791 ./configure --program-suffix=foo produces `transform=s,$$,foo,;',
10792 but some sed choke on multiple `;', and other tools (e.g.,
10793 Automake), include the separator themselves.
10795 * acgeneral.m4 (AC_ARG_VAR): Be sure not to leave extra `;'.
10797 2001-06-19 Tim Van Holder <tim.van.holder@pandora.be>
10799 * doc/autoconf.texi (Functions Portability): Rename as...
10800 (Function Portability): this.
10801 (Function Portability): Document potential problems with unlink().
10803 2001-06-19 Paul Eggert <eggert@twinsun.com>
10805 * NEWS, doc/autoconf.texi: Document quadrigraphs.
10807 2001-06-18 Akim Demaille <akim@epita.fr>
10809 * acfunctions.m4 (AC_FUNC_FORK): Fix typos.
10811 2001-06-18 Ruediger Kuhlmann <info@ruediger-kuhlmann.de>
10813 * acfunctions.m4: (AC_FUNC_VFORK) rename as...
10814 (_AC_FUNC_VFORK): this.
10815 Remove AC_DEFINEs and don't guess cross-compilation values.
10816 (_AC_FUNC_FORK): New, check whether fork() isn't just a stub.
10817 (AC_FUNC_FORK): New, use _AC_FUNC_VFORK and _AC_FUNC_FORK to
10818 define HAVE_WORKING_FORK, HAVE_WORKING_VFORK; and vfork to fork if
10819 vfork doesn't work.
10820 Guess values if cross-compiling, but warn.
10821 * acfunctions: Add AC_FUNC_FORK.
10822 * doc/autoconf.texi: Document AC_FUNC_FORK. Give example to define
10823 and vfork appropriately.
10825 2001-06-18 Akim Demaille <akim@epita.fr>
10827 * doc/autoconf.texi (Functions Portability): New section.
10829 2001-06-18 Akim Demaille <akim@epita.fr>
10831 * autoconf.in (M4): Pass --nesting-limit=1024, unless already set
10833 Suggested by Andreas Schwab.
10835 2001-06-18 Akim Demaille <akim@epita.fr>
10837 * acfunctions.m4 (AC_FUNC_CHOWN, AC_FUNC_CLOSEDIR_VOID)
10838 (AC_FUNC_GETPGRP, AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK)
10839 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES, _AC_FUNC_STAT)
10840 (AC_FUNC_UTIME_NULL): Use AC_INCLUDES_DEFAULT.
10841 Don't use AC_TRY_RUN, which double quotes, prefer AC_RUN_IFELSE,
10842 and either AC_LANG_SOURCE or AC_LANG_PROGRAM.
10843 (AC_FUNC_CLOSEDIR_VOID): Protect C++ from `int closedir ();' (or
10846 2001-06-18 Akim Demaille <akim@epita.fr>
10848 * doc/autoconf.texi (ms): New index.
10849 (Macro Index): Rename as...
10850 (Autoconf Macro Index): this.
10851 (M4 Macro Index): New appendix.
10852 (Programming in M4): New chapter.
10853 Define M4sugar, M4sh, m4_pattern_forbid, and m4_pattern_allow.
10854 (Quoting): Rename as...
10855 (M$ Quotation): this.
10856 Be part of `Programming in M4).
10858 2001-06-18 Nicolas Joly <njoly@pasteur.fr>
10860 * tests/torture.at (AC_ARG_VAR): Set variables and export them
10861 in separate statements for compatibility with Tru64 v5.1.
10863 2001-06-17 Akim Demaille <akim@epita.fr>
10865 * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
10866 current values of the precious variables, not the previously
10868 Pass precious variables which are set to config.status.
10869 * doc/autoconf.texi (Setting Output Variables): Document AC_ARG_VAR.
10870 * tests/torture.at (AC_ARG_VAR): New.
10872 2001-06-15 Paul Eggert <eggert@twinsun.com>
10874 * doc/autoconf.texi: Move AC_FUNC_WAIT3 and
10875 AC_SYS_RESTARTABLE_SYSCALLS to the obsolete section,
10876 and explain why and how to replace them.
10877 * acfunctions.m4 (AC_FUNC_WAIT3): Warn as obsolete.
10878 * acspecific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
10880 2001-06-15 Akim Demaille <akim@epita.fr>
10882 `build_alias', `host_alias', and `target_alias' are not AC_SUBST'd.
10883 Reported by Bruno Haible.
10885 * acgeneral.m4 (AC_ARG_VAR): Move the AC_SUBST, from here...
10886 (_AC_ARG_VAR_PRECIOUS): to here.
10888 2001-06-15 Pavel Roskin <proski@gnu.org>
10890 * acheaders.m4 (_AC_CHECK_HEADER_DIRENT): Instead of defining
10891 an unused pointer use cast to this type and `if' statement to
10892 avoid warnings from the compiler.
10893 (AC_HEADER_TIME): Likewise.
10894 * actypes.m4 (AC_CHECK_MEMBER): s/foo/ac_aggr/. Use the member
10895 in `if' statement to avoid warnings from the compiler. Declare
10896 ac_aggr static to avoid the need to initialize it.
10898 2001-06-14 Akim Demaille <akim@epita.fr>
10900 * doc/autoconf.texi (Portable Shell): Move to follow `Writing
10903 2001-06-13 Akim Demaille <akim@epita.fr>
10905 * m4/missing.m4, config/missing: Updated to Automake 1.4g's.
10906 Suggested by Alexander Mai.
10908 2001-06-13 Akim Demaille <akim@epita.fr>
10910 * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Guard
10911 sys/types.h and sys/stat.h, and check for them.
10913 2001-06-13 Akim Demaille <akim@epita.fr>
10915 * acheaders.m4 (AC_CHECK_HEADER, AC_CHECK_HEADERS): Support $4 =
10918 2001-06-12 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
10920 * acspecific.m4 (AC_PATH_XTRA): Check if linking against libX11
10921 succeeds and only try adding libdnet upon a failure.
10923 2001-06-12 Akim Demaille <akim@epita.fr>
10925 * autoscan.in (&output_kind): Output the comment only if it exists.
10926 (%kind_comment): Add entry for `programs'.
10927 (&output_programs): Use &output_kind.
10928 (&output_functions, &output_identifiers, &output_headers)
10929 (&output_programs): Inline, and remove.
10931 2001-06-12 Akim Demaille <akim@epita.fr>
10933 * autoscan.in (%kind_comment): New.
10934 (output_kind): New.
10935 (output_functions, output_identifiers, output_headers): Use it.
10937 2001-06-12 Akim Demaille <akim@epita.fr>
10939 * autoscan.in (&print_unique): Take `$kind' and `$word' as
10940 arguments, to factor indirections into `%macro' and `%used'.
10941 (%generic_macro): Fix a typo.
10943 2001-06-12 Akim Demaille <akim@epita.fr>
10945 * aclibraries: New.
10946 * autoscan.in (@kinds): Add `libraries'.
10947 Use `@kinds' instead of hard coded lists.
10948 (%programs, %headers, %identifiers, %makevars, %libraries, %functions):
10949 Remove, replaced by...
10952 2001-06-12 Akim Demaille <akim@epita.fr>
10954 * autoscan.in (%functions_macros %headers_macros)
10955 (%identifiers_macros %programs_macros %makevars_macros): Remove,
10959 2001-06-11 Raja R Harinath <harinath@cs.umn.edu>
10961 * aclang.m4 (AC_NO_EXECUTABLES): Override
10962 _AC_COMPILER_EXEEXT_WORKS, not _AC_LANG_COMPILER_WORKS.
10964 2001-06-11 Akim Demaille <akim@epita.fr>
10966 * aclang.m4 (AC_NO_EXECUTABLES): Define the macros with their
10968 Reported by Andreas Schwab.
10970 2001-06-11 Akim Demaille <akim@epita.fr>
10972 * Makefile.am, Makefile.maint: Typos.
10974 2001-06-09 Akim Demaille <akim@epita.fr>
10976 * doc/autoconf.texi (Here-Documents): New section, gathering
10977 documentation about here-documents.
10978 Use `href', not `uref', and other changes.
10980 2001-06-09 Akim Demaille <akim@epita.fr>
10982 * doc/autoconf.texi (Portable Shell Programming): Promoted as a
10985 2001-06-09 Akim Demaille <akim@epita.fr>
10987 * doc/autoconf.texi (Limitations of Builtins): Complete the
10988 description of the here-docs penalties with Alexandre Oliva's
10991 2001-06-01 Paul Eggert <eggert@twinsun.com>
10993 * doc/autoconf.texi: Talk about here documents and speedups.
10994 Do not use "echo" on arbitrary strings.
10995 Spell "here-documents" consistently with the standard.
10997 2001-06-09 Akim Demaille <akim@epita.fr>
10999 * doc/autoconf.texi (Concept Index): Introduce it.
11000 Regenerate the menus.
11002 2001-06-09 Akim Demaille <akim@epita.fr>
11004 * Makefile.maint, GNUmakefile: New, from Jim Meyering.
11005 * config/prev-version.txt: New.
11006 * config/move-if-change: New, for GNU libc.
11008 2001-06-06 Pavel Roskin <proski@gnu.org>
11010 * tests/atgeneral.m4 (AT_INIT): Remove "/bin/sh" after $SHELL.
11012 2001-06-06 Akim Demaille <akim@epita.fr>
11014 * acgeneral.m4 (AC_CHECK_LIB): Fix the cache var name to work
11015 properly when $1 is not a literal.
11016 Fixes PR Autoconf/187, reported by Bram Moolenaar.
11018 2001-06-06 Akim Demaille <akim@epita.fr>
11020 Invoking AC_COPYRIGHT before AC_INIT fails.
11022 * Makefile.am (.m4.m4f): Pass --fatal-warnings to m4.
11023 * acgeneral.m4 (_m4_divert(VERSION_FSF))
11024 (_m4_divert(VERSION_USER)): New.
11025 (AC_COPYRIGHT): $2 is the diversion to use.
11026 (_AC_INIT_COPYRIGHT): Use the FSF diversion.
11027 (AC_INIT): Remove dead comments as now it's commutative.
11029 2001-06-06 Akim Demaille <akim@epita.fr>
11031 * tests/semantics.at (AC_CHECK_LIB): Strengthen to reflect
11034 2001-06-05 Akim Demaille <akim@epita.fr>
11036 * acgeneral.m4 (_AC_INIT_PARSE_ARGS): `prefix' and `exec_prefix'
11038 `*dir' variables cannot be NONE.
11039 Reported by Mark Kettenis.
11041 2001-06-05 Paul Eggert <eggert@twinsun.com>
11043 * doc/autoconf.texi: Fix references to Solaris and SunOS versions.
11045 2001-06-04 Akim Demaille <akim@epita.fr>
11047 * acgeneral.m4 (AC_VAR_SET, AC_VAR_GET, AC_VAR_TEST_SET)
11048 (AC_VAR_SET_IFELSE, AC_VAR_PUSHDEF and AC_VAR_POPDEF, AC_TR_CPP)
11049 (AC_TR_SH): Move as...
11050 * m4sh.m4 (AS_VAR_SET, AS_VAR_GET, AS_VAR_TEST_SET)
11051 (AS_VAR_SET_IF, AC_VAR_PUSHDEF, AS_VAR_POPDEF, AS_TR_CPP)
11053 (_AS_TR_PREPARE, _AS_CR_PREPARE, _AS_TR_CPP_PREPARE)
11054 (_AS_TR_SH_PREPARE): New.
11055 (AS_SHELL_SANITIZE): Invoke _AS_TR_PREPARE.
11056 * tests/aclocal.m4 (AC_STATE_SAVE): `as_' vars can be modified.
11058 2001-06-02 Akim Demaille <akim@epita.fr>
11060 * Makefile.am (.m4.m4f): Pass the options first.
11061 Fixes PR autoconf/182.
11063 2001-06-02 Nathan Sidwell <nathan@codesourcery.com>
11065 GNU getopt, when POSIXLY_CORRECT does not permute options and
11066 arguments. So pass the options first.
11067 Fixes PR autoconf/184.
11069 * autoconf.sh (m4_prefiles, m4f_prefiles): New variables.
11070 (run_m4): Remove files.
11072 Update remainder of script to use them.
11073 (for warning in): Do not use a literal comma as it will not be
11076 2001-06-02 Christian Marquardt <marq@gfz-potsdam.de>
11078 * aclang.m4 (AC_PROG_F77): Add Fujitsu's "frt" to the list of
11079 Fortran compilers to check.
11080 (_AC_PROG_F77_V): Add '-###' as a possible option to print
11081 information on library and object files.
11082 (AC_PROG_CXX): Add Fujitsu's "FCC" to the list of C++ compilers
11085 2001-06-02 Akim Demaille <akim@epita.fr>
11087 * autom4te.in (Request::@request): Declare with `vars', not `my',
11088 as it prevents updates via `do FILENAME'.
11090 2001-06-02 Akim Demaille <akim@epita.fr>
11092 * configure.in (standards_texi): Remove, dead code.
11094 2001-06-02 Akim Demaille <akim@epita.fr>
11096 * autom4te.in: New.
11098 2001-06-02 Pavel Roskin <proski@gnu.org>
11100 * acgeneral.m4 (_AC_INIT_PREPARE): Don't rely on $? in the traps
11101 for signals other than 0 - exit with code 1.
11102 * m4sh.m4 (AS_TMPDIR): Likewise.
11103 * autoconf.in: Likewise. Also don't rely on exit == exit $?.
11104 * autoheader.in: Likewise.
11105 * autoreconf.in: Likewise.
11106 * tests/torture.at (Signal handling): New test for the above.
11108 2001-06-01 Akim Demaille <akim@epita.fr>
11110 * m4sugar.m4 (m4_defn, m4_undefine, m4_popdef): Clarify the error
11113 2001-05-31 Akim Demaille <akim@epita.fr>
11115 * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
11116 Add copyright and comments.
11117 * acheaders: Add stdint.h.
11118 Suggested by Paul Eggert.
11120 2001-05-31 Akim Demaille <akim@epita.fr>
11122 * atgeneral.m4 (AT_INIT): Use $SHELL.
11123 * atspecific.m4 (AT_CHECK_DEFINES): Skip HAVE_STDINT_H.
11125 2001-05-31 Akim Demaille <akim@epita.fr>
11127 * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
11129 From Paul Eggert and Lars Hecking.
11131 2001-05-31 Akim Demaille <akim@epita.fr>
11133 * tests/base.at: Adjust line numbers in error messages.
11135 2001-05-31 Akim Demaille <akim@epita.fr>
11137 * tests/base.at, tests/m4sh.at: When using AC_PLAIN_SCRIPT be sure
11138 to emit the bangshe line.
11139 Reported by David Carter.
11141 2001-05-30 Steven G. Johnson <stevenj@alum.mit.edu>
11143 * aclang.m4 (AC_PROG_F77): Add Compaq's "fort" to the list of
11144 Fortran (95) compilers to check.
11146 2001-05-29 Alexandre Duret-Lutz <duret_g@epita.fr>
11148 * doc/autoconf.texi (Introduction, Pointers): Update the Autoconf
11151 2001-05-23 Pavel Roskin <proski@gnu.org>
11153 * aclang.m4 (AC_PROG_CPP): Use `break' instead of `break 2' since
11154 _AC_PROG_PREPROC_WORKS_IFELSE expands arguments outside the loop.
11155 (AC_PROG_CXXCPP): Likewise.
11157 2001-05-22 Akim Demaille <akim@epita.fr>
11159 * config: New directory.
11160 * configure.in: AC_CONFIG_AUX_DIR it.
11161 * tests/atspecific.m4 (AT_CONFIGURE_AC): Adjust.
11163 2001-05-22 Akim Demaille <akim@epita.fr>
11165 * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in,
11166 * autoupdate.in: Specify the Emacs mode.
11167 * acversion.m4.in: Rename as...
11168 * acversion.m4: this.
11169 * tests/Makefile.am (CLEANFILES): More garbage.
11171 2001-05-22 Akim Demaille <akim@epita.fr>
11173 * autoconf.sh, autoreconf.sh, autoheader.sh, autoscan.pl, ifnames.sh:
11175 * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in:
11178 2001-05-21 Akim Demaille <akim@epita.fr>
11180 * configure.in: Bump to 2.50a.
11184 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
11186 This file is part of GNU Autoconf.
11188 GNU Autoconf is free software; you can redistribute it and/or modify
11189 it under the terms of the GNU General Public License as published by
11190 the Free Software Foundation; either version 2, or (at your option)
11193 GNU Autoconf is distributed in the hope that it will be useful,
11194 but WITHOUT ANY WARRANTY; without even the implied warranty of
11195 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11196 GNU General Public License for more details.
11198 You should have received a copy of the GNU General Public License
11199 along with autoconf; see the file COPYING. If not, write to
11200 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
11201 Boston, MA 02110-1301, USA.