1 2006-04-23 Paul Eggert <eggert@cs.ucla.edu>
3 * doc/autoconf.texi (Run Time): Document the exit status situation
4 with more accuracy and detail.
6 * NEWS: Remove mention of AS_VAR_SET_BASENAME and AS_VAR_SET_DIRNAME.
7 * doc/autoconf.texi (Programming in M4sh): Remove mention of
8 AS_VAR_SET_BASENAME, AS_VAR_SET_DIRNAME, and AS_BASENAME.
9 We have to keep AS_DIRNAME since it was part of a stable Autoconf,
10 but AS_BASENAME doesn't have to be supported.
12 * lib/m4sugar/m4sh.m4 (AS_BASENAME, AS_DIRNAME): Bring these back.
14 2006-04-23 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
16 * doc/autoconf.texi (Introduction): The GNU Autoconf Macro
17 Archive is not officially `GNU' any more. Update URL.
18 (Defining Directories): Likewise
19 * lib/autoconf/c.m4 (AC_C_RESTRICT): Update URL.
21 2006-04-22 Paul Eggert <eggert@cs.ucla.edu>
23 * NEWS: Remove AS_DIRNAME and AS_BASENAME, replacing them with
24 AS_VAR_SET_DIRNAME and AS_VAR_SET_BASENAME.
25 * doc/autoconf.texi (Programming in M4sh): Document this. All uses
26 changed. The newer interfaces are more reliable, as they allow
27 implementations that handle trailing newline correctly. For now,
28 we're in a freeze, so I did not include the more-reliable
29 implementations, but I wanted to correct the interface before 2.60
31 * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED): Renamed from
32 AS_DETECT_REQUIRED. All uses changed.
33 (_AS_DETECT_SUGGESTED): Renamed from AS_DETECT_SUGGESTED.
35 (_AS_DETECT_BETTER_SHELL): Put ;; at the end of a case.
36 (_AS_BASENAME): Renamed from AS_BASENAME. All uses changed.
37 Use "basename --" to protect against leading "-".
38 (_AS_BASENAME_EXPR): Renamed from AS_BASENAME_EXPR. All uses changed.
39 (_AS_BASENAME_SED): Renamed from AS_BASENAME_SED. All uses changed.
40 (_AS_BASENAME_PREPARE): Reject implementations that cannot handle "--".
41 (_AS_DIRNAME_PREPARE): Likewise.
42 (_AS_DIRNAME): Renamed from AS_DIRNAME. All uses changed.
43 (_AS_DIRNAME_EXPR): Renamed from AS_DIRNAME_EXPR. All uses changed.
44 (_AS_DIRNAME_SED): Renamed from AS_DIRNAME_SED. All uses changed.
46 (AS_VAR_SET_BASENAME, AS_VAR_SET_DIRNAME): New macros.
47 * tests/m4sh.at (AS_VAR_SET_DIRNAME): Renamed from AS_DIRNAME.
48 Test the new API. Don't test internals, since they're probably
49 going to change anyway.
50 (AS_VAR_SET_BASENAME): Likewise, renamed from AS_BASENAME.
52 * bin/autoconf.as: Don't use AS_BASENAME or AS_DIRNAME. This
53 removes a bootstrapping problem with the changes described above.
54 The AS_DIRNAME part wasn't used, anyway, and the AS_BASENAME
55 part can be done portably without all the deep Autoconf magic.
57 2006-04-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
59 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Remove the leading
60 newline from the `trap' code to finish `config.log'; the NetBSD
61 /bin/sh resets the exit status after an empty command, as
62 documented in doc/autoconf.texi.
63 Reported by Dalibor Topic <robilad@kaffe.org>.
65 2006-04-19 Paul Eggert <eggert@cs.ucla.edu>
67 * doc/autoconf.texi (C Compiler): Clarify AC_C_TYPEOF.
68 Suggested by Bruno Haible.
70 2006-04-18 Paul Eggert <eggert@cs.ucla.edu>
72 * configure.ac (ac_cv_sh_n_works): Don't try to test for it, since
73 some shells (e.g., Solaris 8 /bin/sh) implement it verrrry slowly.
74 Instead, just list the shells that we know work.
75 * tests/local.at (AT_CHECK_SHELL_SYNTAX): Remove 2nd arg. All uses
76 changed. Be more cautious about the _cv_ variable.
77 * tests/tools.at (Syntax of the shell scripts): Check the
78 _cv_ variable once, at first, to avoid an internal autoconf error
79 when sh -n does not work.
81 2006-04-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
83 * lib/Autom4te/FileUtils.pm: Sync from Automake.
85 2006-04-16 Paul Eggert <eggert@cs.ucla.edu>
87 * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Don't
88 use ">&-" since we're only 99.999% sure that this is portable,
89 and since the MinGW bug is fixed in a different way.
90 * lib/autotest/general.m4 (AT_INIT): Likewise.
92 2006-04-16 Stepan Kasal <kasal@ucw.cz>
94 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle --recheck
95 before opening config.log, to avoid hitting a bug on MinGW.
97 2006-04-14 Paul Eggert <eggert@cs.ucla.edu>
99 * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Close
100 AS_MESSAGE_LOG_FD before reopening it onto the log file.
101 This works around a MinGW bug reported by Eric Paire.
102 Make sure that all writes to the log file append to it,
103 rather than possibly losing data.
104 * lib/autotest/general.m4 (AT_INIT): Likewise.
106 2006-04-14 Stepan Kasal <kasal@ucw.cz>
108 * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
111 2006-04-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
115 * configure.ac (AC_INIT): Bump to 2.59d.
117 2006-04-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
121 2006-04-12 Stepan Kasal <kasal@ucw.cz>
122 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
124 * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If the templates for
125 the instantiated file do not contain the string 'datarootdir'
126 but contain @datadir@, @docdir@, @infodir@, @localedir@, or
127 @mandir@, replace the reference '${datarootdir}' by the value.
128 * tests/torture.at (datarootdir workaround): New test.
129 * NEWS: Advertise this temporary fixup.
130 Based on a patch by Bruno Haible, reported and analyzed by
131 Paul Eggert and Noah Misch.
133 2006-04-12 Eric Blake <ebb9@byu.net>
135 * tests/autotest.at (Debugging a failed test): Fix comment.
137 2006-04-12 Stepan Kasal <kasal@ucw.cz>
139 * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Simplify the summary of
140 all the changes since 2006-04-07.
142 2006-04-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
144 * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): If `ln -s file1 file2'
145 succeeded, but `ln -s file dir' failed, take care to remove the
146 leftover target before the next test, to prevent its spurious
147 failure; also make sure `ln file dir' works before selecting it.
148 Thanks to Keith Marshall for pointing this out.
151 * lib/autotest/general.m4 (AT_INIT): Store quoted variable
152 assignments in `at_debug_args', so that we put them correctly
154 * tests/autotest.at (Debugging a failed test): Unmark XFAIL.
155 Reported by Eric Blake.
157 2006-04-11 Eric Blake <ebb9@byu.net>
159 * tests/autotest.at (AT_CHECK_AT): Add new argument, to allow
160 top-level tests after micro-suite has been run. Used in...
161 (Debugging a successful test, Debugging script and environment),
162 (Debugging a failed test): ...these new tests. The first of these
164 * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): New
165 macro, split out from...
166 (AT_INIT): ...here, so that using -d also generates a run script.
167 Document that -d inhibits top-level logging.
168 * doc/autoconf.texi (testsuite Invocation): Document that -d only
169 inhibits top-level logging; debug scripts are created.
171 * lib/autotest/general.m4 (_AT_CHECK): Avoid syntax error on empty
173 * tests/autotest.at (Empty test, Empty check): New test to check it.
175 * lib/autoconf/c.m4 (AC_C_CONST, AC_C_VOLATILE): Avoid warnings
178 2006-04-10 Stepan Kasal <kasal@ucw.cz>
180 * tests/mktests.sh: Use "trap '' 0", not "trap 0". Do not touch
181 the files if a problem appears. Make the empty *.at files
182 read-only, too. Proposed by Ralf Wildenhues.
184 2006-04-10 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
186 * config/Makefile.am: Add comment to force updated Makefile.in.
188 * lib/freeze.mk: Fix typo in comment. Unlike the last, white
189 space only patch to this file, this patch causes the Makefile.in
190 files that include freeze.mk to be updated, and thus have a
191 newer time stamp again, which in turn makes a pristine CVS
192 checkout have correct time stamps.
194 * Makefile.maint (cvs-sv): New macro, to be used..
195 (config.guess-url_prefix, config.sub-url_prefix)
196 (texinfo.tex-url_prefix, standards.texi-url_prefix): ..here;
197 point to CVS text checkout of Gnulib files.
198 (copyright-check): Bump current year.
199 (announcement): Do not hard-wire `./announce-gen'.
200 (cvs-update): Propagate failures of `cvs' and `move-if-change'
202 * Makefile.cfg (executable-update): Use `chmod a+x' instead of
204 (wget_files): Update config.guess, config.sub, texinfo.tex by
205 `wget-update', now that their URLs work again.
207 2006-04-10 Paul Eggert <eggert@cs.ucla.edu>
209 * doc/autoconf.texi (Particular Types): Don't use AC_CHECK_TYPE.
210 Problem noted by Paul D. Smith.
212 2006-04-10 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
214 * doc/autoconf.texi: Remove unused words from word list.
215 * .x-sc_prohibit_atoi_atof, .x-sc_space_tab, .x-sc_sun_os_names,
216 .x-sc_trailing_space: New files.
218 * doc/standards.texi: Sync from gnulib.
220 * NEWS, doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): Mark
221 `LIBOBJDIR' as experimental.
223 * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): MSYS `ln -s' fails
224 with a target directory; it's internally implemented as `cp'
225 anyway, but since Autoconf advertises the possibility to use
226 a target directory when LN_S is `ln -s', we need to find out.
227 Reported by Rolf Ebert <rolf.ebert.gcc@gmx.de> against MSYS,
228 analyzed by Keith Marshall <keith.marshall@total.com>.
232 2006-04-10 Paul Eggert <eggert@cs.ucla.edu>
234 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
235 confdefs.h as-is. In general, if it has backslash-newline or the
236 like, then it doesn't work either to sort or to remove empty
239 2006-04-09 Stepan Kasal <kasal@ucw.cz>
241 * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
243 2006-04-09 Alexandre Duret-Lutz <adl@gnu.org>
245 * lib/autom4te.in (Automake-preselections): Preselect
248 2006-04-08 Paul Eggert <eggert@cs.ucla.edu>
250 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Use '\'' for an
251 apostrophe within a single-quoted string, as this is the usual
252 tradition and is easier to read than '"'"'. Don't rely on the
253 shell treating "$/" like '$/'. Use a more-consistent indenting
256 2006-04-09 Eric Blake <ebb9@byu.net>
258 * tests/autotest.at (Backquote command substitution),
259 (Multiline backquote command substitution): Remove mistaken
260 AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
262 (Parenthetical command substitution, Multiline parenthetical
263 command substitution): here.
265 2006-04-08 Paul Eggert <eggert@cs.ucla.edu>
267 Import macros from gnulib (often changing their name).
269 * NEWS: AC_C_TYPE_LONG_DOUBLE is now obsolete.
270 New macros AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE,
271 AC_CHECK_HEADERS_ONCE, AC_FUNC_STRTOLD, AC_HEADER_ASSERT,
272 AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE,
273 AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_INT8_T,
274 AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
275 AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT,
276 AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T,
277 AC_TYPE_UINT64_T, AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T,
278 AC_TYPE_UNSIGNED_LONG_LONG_INT, AC_USE_SYSTEM_EXTENSIONS.
279 The manual mentions Gnulib more prominently.
280 * doc/autoconf.texi (Gnulib): New node.
281 (Pointers): Add Gnulib URL.
282 (Particular Functions): Alphabetize. Add AC_FUNC_STRTOLD.
283 (Generic Functions): Add AC_CHECK_FUNCS_ONCE. Refer to new
285 (Particular Headers): Add AC_HEADER_ASSERT. For stdbool.h,
286 suggest a #define rather than a typedef for _Bool, and mention
287 Gnulib rather than trying to substitute stdbool code.
288 (Generic Headers): Add AC_CHECK_HEADERS_ONCE.
289 (Generic Declarations): Add AC_CHECK_DECLS_ONCE.
290 (Particular Structures): Add AC_STRUCT_DIRENT_D_INO,
291 AC_STRUCT_DIRENT_D_TYPE.
292 (Particular Types): Mention stdint.h and inttypes.h as standard
294 Add AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
295 AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_DOUBLE,
296 AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_LONG_LONG_INT, AC_TYPE_UINT8_T,
297 AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
298 AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT.
299 (C Compiler): Move AC_C_LONG_DOUBLE to ...
300 (Obsolete Macros): here. Under AC_LONG_DOUBLE, mention
301 AC_TYPE_LONG_DOUBLE or AC_TYPE_LONG_DOUBLE_WIDER instead.
302 (Posix Variants): Add AC_USE_SYSTEM_EXTENSIONS.
303 (Coding Style). Don't mention m4_expand_once.
304 * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Implement via
305 AC_TYPE_LONG_DOUBLE_WIDER. Now obsolete.
306 * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): New macro.
307 (AC_CHECK_FUNCS): Use it.
308 (AC_CHECK_FUNCS_ONCE, AC_FUNC_STRTOLD): New macros.
309 (AC_FUNC_WAIT3): "the Open Group standards" -> "POSIX".
310 * lib/autoconf/general.m4 (AC_CHECK_DECLS_ONCE): New macro.
311 * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): New macro.
312 (AC_HEADER_ASSERT): New macro.
313 (AC_HEADER_STDBOOL): Don't assume "#error" works.
314 Catch a bug in IBM AIX xlc compiler version 6.0.0.0.
315 Catch a bug in an HP-UX C compiler.
316 * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): New macro.
317 * lib/autoconf/types.m4 (AC_TYPE_INTMAX_T. AC_TYPE_UINTMAX_T):
318 (AC_TYPE_INTPTR_T, AC_TYPE_UINTPTR_T. AC_TYPE_LONG_DOUBLE):
319 (AC_TYPE_LONG_DOUBLE_WIDER, AC_C_LONG_DOUBLE, AC_TYPE_LONG_LONG_INT):
320 (AC_TYPE_UNSIGNED_LONG_LONG_INT, _AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT):
321 (_AC_STRUCT_DIRENT, AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE):
324 * tests/mktests.sh (ac_exclude_list, au_exclude_list): Do not
325 use /^foo|bar$/, it does not mean /^(foo|bar)$/.
327 2006-04-08 Stepan Kasal <kasal@ucw.cz>
329 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Fix the wording
330 of the warning introduced by the 2001-08-28 change.
332 2006-04-08 Stepan Kasal <kasal@ucw.cz>,
333 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
335 * lib/autoconf/general.m4 (AC_CACHE_SAVE): All `ac_cv_env_foo'
336 variables shall be overriden by the cache.
337 * tests/torture.at (AC_ARG_VAR): Test also with a first value
338 that contains braces.
340 2006-04-07 Stepan Kasal <kasal@ucw.cz>
342 Revert the patch from 2006-04-01 and only improve
343 _AS_DETECT_BETTER_SHELL:
345 * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not optimize; do not
346 skip nonexistent directories.
347 (_AS_DETECT_BETTER_SHELL): The optimization is moved here--try
348 only shell candidates which exist.
349 (AS_UNAME): No need to give three parameters to _AS_PATH_WALK.
350 * lib/autotest/general.m4 (AT_INIT): No need to give three
351 parameters to _AS_PATH_WALK.
353 2006-04-07 Stepan Kasal <kasal@ucw.cz>,
354 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
356 * bin/autoupdate.in (handle_autoconf_patches): Change the way we
357 distinguish m4sugar macros.
358 * tests/tools.at (autoupdating with aclocal and m4_include):
359 New test. Bug reported by Gary V. Vaughan <gary@gnu.org>,
360 test case by Noah Misch <noah@cs.caltech.edu>.
362 2006-04-07 Stepan Kasal <kasal@ucw.cz>
364 Revert my change from 2006-03-17, in other words:
365 * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Insert BIN_SH=xpg4
367 (AS_SHELL_SANITIZE): Remove DUALCASE=1.
368 * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Say that
371 2006-04-07 Eric Blake <ebb9@byu.net>
373 * doc/autoconf.texi (Programming in M4sh): Document that
374 AS_MKDIR_P exits the script on failure.
375 * lib/autotest/general.m4: Remove redundant AS_ERROR.
377 2006-04-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
379 * config/elisp-comp, config/install-sh, config/mdate-sh,
380 config/missing, config/mkinstalldirs: Sync from Automake.
382 * lib/Autom4te/FileUtils.pm, lib/Autom4te/Struct.pm: Sync
385 * doc/make-stds.texi: Sync from gnulib.
387 2006-04-06 Eric Blake <ebb9@byu.net>
389 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
390 check, s/ac_exeext/ac_cv_exeext/. Fixes regression introduced
393 2006-04-06 Stepan Kasal <kasal@ucw.cz>,
394 Eric Blake <ebb9@byu.net>,
395 Paul Eggert <eggert@cs.ucla.edu>,
396 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
398 * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Fix the detection of
399 whether `set' quotes correctly: redirect stderr of the tested
400 `set', and use a subshell, for Ultrix; use `sed' instead of
401 `grep' for zsh `set' which may write binary output; match only
402 at the beginning of a line, to avoid false positives.
403 In order to avoid false positives by unrelated variables with
404 multiline content, put the dump algorithm in a subshell and
405 unset all variables containing newlines (except some which are
406 special to the shell). Warn about cache variables that are
409 2006-04-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
411 * config/config.guess, config/config.sub, config/texinfo.tex:
414 * tests/mktests.sh: Reword comments.
416 * tests/mktests.sh: Only skip internal macros starting with
417 `_AC_' or `__AC_'. Noted by Stepan Kasal.
418 Update exclusion lists for the test suite to this end:
419 (AC_ARG_VAR): Do test this now.
420 (AC_SEARCH_LIBS, AC_REPLACE_FUNCS): Need an argument.
421 (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
422 (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
423 (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
425 * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
426 shell issue with double-quoted command substitutions of native
428 Reported to MSYS by Mark Cave-Ayland, to Autoconf by Keith
431 * Makefile.maint (sc_cast_of_argument_to_free): Do not fail when
432 no file matches the glob, discard the warning, set `nullglob'.
433 (syntax-check): Likewise.
434 (sc_cast_of_x_alloc_return_value): Likewise.
435 (sc_cast_of_alloca_return_value, sc_error_exit_success)
436 (sc_prohibit_jm_in_m4, .re-list, sc_unmarked_diagnostics)
437 (m4-check): Likewise.
438 (sc_system_h_headers): Do not print rule on execution.
439 (sc_tight_scope): Do not fail for non-existing `src' directory.
440 (sc_changelog): Skip the Copyright footer.
441 * lib/autoconf/lang.m4: Remove trailing space.
443 * lib/autoconf/status.m4: More replacements to
444 <tab><space> where this makes sense.
446 2006-04-06 Stepan Kasal <kasal@ucw.cz>
448 * tests/Makefile.am (maintainer-check-posix):
449 s/POSIXLY_CORRECTLY/POSIXLY_CORRECT/
451 * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Append TAGS to
452 ac_config_<foo>s again, sometimes normalized, sometimes not.
453 (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS):
454 (AC_CONFIG_COMMANDS): Do not do so here.
455 (_AC_CONFIG_REGISTER_DEST): Double quote the tags in macros _AC_LIST_TAGS
456 and_AC_LIST_TAG_COMMANDS; fixes another regression introduced by the
457 2005-07-25 rewrite. Noticed by Noah Misch.
459 * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): Do not define
460 _AC_PRESERVE_HELP_ORDER, ...
461 (AC_ARG_ENABLE, AC_ARG_WITH): ... use AC_PROVIDE_IFELSE insetad.
463 * lib/autoconf/general.m4 (AC_ARG_VAR): Do not use m4_divert_once
464 inside m4_expand_once; it is redundant.
466 * lib/autoconf/general.m4 (_AC_INIT_HELP): Remove the broken support
467 for --help from Cygnus `configure.'
469 2006-04-06 Paul Eggert <eggert@cs.ucla.edu>
471 * doc/autoconf.texi (C Compiler): Warn about #error. Follows up
472 on a patch proposed by Ralf Wildenhues.
474 2006-04-05 Paul Eggert <eggert@cs.ucla.edu>
476 * lib/autoconf/status.m4: Replace <space>''<tab> with
477 <tab><space> where this makes sense.
479 2006-04-05 Howard Chu <hyc@highlandsun.com> (trivial change)
480 Noah Misch <noah@cs.caltech.edu>
482 * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): New macro.
483 (AC_ARG_ENABLE, AC_ARG_WITH): Adjust.
484 * doc/autoconf.texi (Help Formatting): New node.
485 * NEWS: Announce AC_PRESERVE_HELP_ORDER.
487 2006-04-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
489 * TODO, config/Makefile.am, lib/freeze.mk, lib/autoconf/c.m4,
490 lib/autoconf/specific.m4, lib/autoconf/status.m4,
491 lib/autoconf/types.m4, lib/autotest/general.m4,
492 tests/mktests.sh, tests/torture.at: White space cleanup:
493 remove some SPACE before TAB, or add quoting ('' or @&t@).
495 * NEWS, TODO, bin/autoreconf.in: `filesystem' -> `file system'.
497 * doc/autoconf.texi (Shell Substitutions): Document `^' vs. `|'.
499 2006-04-05 Eric Blake <ebb9@byu.net>
501 * lib/autotest/general.m4 (AT_INIT): Prep AT_*_all, so that an
502 empty test suite works.
503 * tests/autotest.at (Empty test suite): Remove xfail.
505 2006-04-05 Noah Misch <noah@cs.caltech.edu>
507 * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Do not append normalized
508 TAGS to ac_config_<foo>s.
509 (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS): Do so here.
510 (AC_CONFIG_COMMANDS): Append NAME to ac_config_commands without
511 normalizing it, consistent it with previous releases.
512 * tests/torture.at (Macro calls in AC_CONFIG_COMMANDS tags): New test.
514 2006-04-05 Paul Eggert <eggert@cs.ucla.edu>
516 * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR, AS_DIRNAME_EXPR):
517 Use simplified args that Eric Blake originally suggested.
519 2006-04-04 Paul Eggert <eggert@cs.ucla.edu>
521 * tests/mktests.sh: Don't use 'cat'; just read the files directly.
522 Prefer 'sort -u' to 'sort | uniq'. Filter data before sorting it.
523 Use 'comm' rather than N instances of grep; this also fixes a bug
524 whereby substrings were incorrectly matched, causing us to not
525 generate tests for AC_F77_NAME_MANGLING and AC_FUNC_LSTAT.
526 (exclude_list): Exclude empty macros.
527 (ac_exclude_list): Exclude AC_INCLUDES_DEFAULT.
529 Use awk rather than grep -E or egrep, to avoid
530 portability problems with regular expressions containing newlines.
531 (exclude_list, ac_exclude_list, au_exclude_list, ac_exclude_script):
532 Switch from grep to awk syntax.
533 (ac_exclude_script): Renamed from ac_exclude_egrep.
534 (au_exclude_script): Renamed from au_exclude_egrep.
536 2006-04-04 Noah Misch <noah@cs.caltech.edu>
538 * lib/autoconf/general.m4 (_AC_INIT_HELP): Only `configure.in' evidences
539 a subdirectory subject to Cygnus `configure'.
540 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Likewise.
542 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Omit the bug
543 report request when we have no AC_PACKAGE_BUGREPORT.
545 2006-04-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
549 * tests/mktests.sh: Update copyright year in the header of the
552 * lib/autoconf/c.m4 (AC_C_INLINE): Do not skip cleanup code.
553 (AC_C_RESTRICT): Likewise. Furthermore, add a function with a
554 typedef'ed restricted pointer, to catch a compiler bug on
555 HP-UX 11.x, and fix warnings so it passes with -Werror.
556 (_AC_PROG_CC_C99): Likewise.
557 Reported by Albert Chin <china@thewrittenword.com>.
558 * tests/mktests.sh: Do not skip AC_C_INLINE, AC_C_RESTRICT.
560 2006-04-03 Noah Misch <noah@cs.caltech.edu>
562 * bin/autoscan.in (subdirs): New global.
563 (scan_file): Prune directories with configure{,.{ac,in,gnu}}.
564 (output): Emit AC_CONFIG_SUBDIRS as needed.
565 * tests/autoscan.at (autoscan): Remove XFAIL.
567 2006-04-03 Noah Misch <noah@cs.caltech.edu>
569 * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
571 2006-04-03 Eric Blake <ebb9@byu.net>
573 * THANKS: Add myself.
575 2006-04-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
577 * lib/autotest/general.m4 (AT_INIT): Add `at_testdir' to pointer
578 to log, point to testsuite output tree.
580 2006-04-02 Paul Eggert <eggert@cs.ucla.edu>
582 * NEWS: AC_PROG_CC and AC_PROG_CXX no longer declare 'exit'.
583 * doc/autoconf.texi (Function Portability): Mention that C++
584 has trouble with 'exit'.
585 (Guidelines): Test programs shouldn't use 'exit'.
586 * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
587 Remove; all uses removed.
588 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN):
589 Return from 'main' instead of calling 'exit'.
590 * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_CLOSEDIR_VOID):
591 (_AC_FUNC_FNMATCH_IF, AC_FUNC_GETGROUPS):
592 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, _AC_FUNC_MALLOC_IF):
593 (AC_FUNC_MEMCMP, AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
594 (AC_FUNC_SETPGRP, _AC_FUNC_STAT, AC_FUNC_STRTOD, AC_FUNC_STRERROR_R):
595 (AC_FUNC_STRNLEN, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
596 (_AC_FUNC_FORK, _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
597 * lib/autoconf/headers.m4 (AC_HEADER_STDC): Likewise.
598 * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
599 * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
600 * tests/compile.at: Likewise.
602 2006-04-02 Pavel Roskin <proski@gnu.org>
604 * doc/autoconf.texi (AC_PATH_X): Update per 2005-08-26 change.
606 2006-04-01 Stepan Kasal <kasal@ucw.cz>
608 Clean up _AC_COMPILER_EXEEXT* macros.
610 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
611 detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
612 ac_file to the name of the default output filei and call
613 _AC_COMPILER_EXEEXT_WORKS. Move the definition of ac_files and the
614 initial `rm' of the candidate files...
615 (_AC_COMPILER_EXEEXT): ... here and simplify them. Moreover, use
616 the same list in subsequent `rm' calls, and for the temporary
617 redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
618 and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
619 (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
620 (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
621 no longer needed) by libtool. Make it a cache check.
622 (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
623 copied here by mistake.
624 (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
626 * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
627 _AC_COMPILER_OBJEXT directly.
628 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
630 2006-04-01 Stepan Kasal <kasal@ucw.cz>
632 * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): New macro.
633 (AS_DIRNAME): Use it.
634 (_AS_PREPARE): Add _AS_DIRNAME_PREPARE.
636 * tests/*.at: Remove the generated ones.
638 2006-04-01 Stepan Kasal <kasal@ucw.cz>
640 * lib/autotest/general.m4 (AT_INIT): Don't optimize the first PATH walk.
642 2006-04-01 Eric Blake <ebb9@byu.net>
644 * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Optimize nonexistent
645 directories, unless optional third argument supplied.
646 (AS_UNAME): Don't optimize PATH walk.
648 * lib/Autom4te/Struct.pm, lib/autoconf/c.m4: s/non-existent/nonexistent/
650 2006-04-01 Eric Blake <ebb9@byu.net>
651 and Stepan Kasal <kasal@ucw.cz>
653 * lib/m4sugar/m4sh.m4: Sort sections as implied by the comments,
656 2006-04-01 Noah Misch <noah@cs.caltech.edu>
658 * lib/autoconf/general.m4 (_AC_INIT_VERSION): Emit script name and
659 Autoconf version number despite a zero- or one-argument AC_INIT.
661 * bin/autoreconf.in (parse_args): Multiple -v send --verbose to
663 * lib/Autom4te/General.pm (getopt): Make -v and -d incremental.
664 * doc/autoconf.texi (autoreconf Invocation): Document it.
666 * doc/autoconf.texi: Use `Cygwin', `MinGW', and `license' consistently.
667 Append LocalWords so ispell-buffer passes cleanly. Spelling fixes.
669 2006-04-01 Eric Blake <ebb9@byu.net>
671 * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Allow use in shell lists.
672 * lib/autotest/general.m4: Be tolerant of existing directory when
673 rm failed to remove it.
675 2006-04-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
677 * bin/autoupdate.in: Redefine m4_location so that warnings print
678 the correct lines of the input file by subtracting..
679 (_au__first_line): ..this new definition.
681 * lib/autoconf/general.m4 (AC_COMPILE_CHECK): Prefer
682 AC_MSG_CHECKING over obsolete AC_CHECKING in autoupdated code.
683 Remove stray newline in output.
684 (AC_FOREACH): AU_DEFUN this as literal for autoupdate, and also
685 AC_DEFUN this for autoconf, including the obsoletion diagnose.
686 Fixes autoupdating of code where the replacement output contains
688 * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
689 * tests/mktests.sh (ac_exclude_list): Add AC_FOREACH.
690 (au_exclude_list): Add AC_LANG_SAVE.
691 * tests/tools.at: Several new tests for all of this.
692 * doc/autoconf.texi (Obsoleting Macros): Give a hint about the
694 The AC_LANG_SAVE issue was reported against Libtool by
695 Dalibor Topic <robilad@kaffe.org>, and against Autoconf 2.57 by
696 Kristian Kvilekval <kris@cs.ucsb.edu>.
698 2006-04-01 Stepan Kasal <kasal@ucw.cz>
700 * bin/autoupdate.in: Handle m4 builtins and m4sugar macros together--
701 switch all of them on and of when necessary. Fixes the bug when
702 m4sugar macros (e.g., m4_define) were expanded after the first
703 automatic update (e.g., after AC_PREREQ or AC_INIT).
705 2006-03-31 Paul Eggert <eggert@cs.ucla.edu>
707 * doc/autoconf.texi (Programming in M4sh): Sharpen the descriptions
708 of AS_BASENAME and AS_DIRNAME. Reported by Stepan Kasal.
710 * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): Handle ///, ////, etc.
711 correctly. Problem reported by Eric Blake.
712 (_AS_EXPR_PREPARE): Detect Tru64 expr bug. Problem reported by
715 2006-03-30 Paul Eggert <eggert@cs.ucla.edu>
717 * doc/autoconf.texi (Programming in M4sh, Limitations of Usual Tools):
718 Tighten up the basename/dirname wording.
720 2006-03-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
722 * Makefile.maint (sc_texi_notab): New check: do not use TABs
723 in texinfo files outside of verbatim environments.
724 (syntax-check-rules): Update.
725 * doc/autoconf.texi (Configuration Headers): Conform to it.
727 2006-03-30 Chris Pickett <cpicke@cs.mcgill.ca> (tiny change)
729 * doc/autoconf.texi (autoreconf Invocation): Mention that -I for
730 aclocal cannot be given on the command line.
732 2006-03-29 Paul Eggert <eggert@cs.ucla.edu>
734 * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME.
735 Give an example for AS_DIRNAME instead of referring to Posix..
736 (File System Conventions): Put discussion of // versus / here, and
738 (Limitations of Usual Tools): Add basename. Remove verbiage
739 after dirname, since it got moved to the above sections.
740 All this was inspired by a patch proposed earlier by Eric Blake.
742 2006-03-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
744 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Quote
745 `$0' to protect against spaces.
746 * lib/autotest/general.m4 (AT_INIT): Likewise.
747 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise, for
750 2006-03-26 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
752 * bin/autoscan.in: The value of find_configure_ac should be
753 checked for existence, so we don't barf over a nonexisting
754 configure.ac. Reported by Laurence Darby <ldarby@tuffmail.com>.
756 2006-03-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
758 * bin/autoupdate.in: Fix some typos.
760 2006-03-21 Stepan Kasal <kasal@ucw.cz>
762 * doc/autoconf.texi (Installation Directory Variables): Fix typo.
764 * lib/autoscan/autoscan.list: Refreshed.
766 2006-03-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
768 * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C
769 and Erlang related variables.
771 * lib/autoconf/c.m4 (AC_LANG(Objective C), AC_LANG_OBJC)
772 (_AC_LANG_ABBREV(Objective C), _AC_LANG_PREFIX(Objective C))
773 (AC_LANG_SOURCE(Objective C), AC_LANG_PROGRAM(Objective C))
774 (AC_LANG_CALL(Objective C), AC_LANG_FUNC_LINK_TRY(Objective C))
775 (AC_LANG_BOOL_COMPILE_TRY(Objective C))
776 (AC_LANG_INT_SAVE(Objective C), AC_LANG_PREPROC(Objective C))
777 (AC_PROG_OBJCPP, AC_LANG_COMPILER(Objective C), AC_PROG_OBJC)
778 (_AC_PROG_OBJC_G): New macros.
779 (_AC_ARG_VAR_CPPFLAGS): Adjusted.
780 * doc/autoconf.texi (Objective C Compiler): New node.
781 (Preset Output Variables): Document OBJCFLAGS.
782 (Language Choice): Document `Objective C' language.
783 (Fortran Compiler): Fix typo.
785 Inspired by a patch from David M. Lloyd <dmlloyd@tds.net>.
787 2006-03-20 Stepan Kasal <kasal@ucw.cz>
789 * doc/autoconf.texi (Default Includes): Fix typo
790 s/AC_HEADERS_STDC/AC_HEADER_STDC/
791 (Limitations of Usual Tools): s/unwriteable/unwritable/
792 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
793 Fix typos in the comments.
795 2006-03-17 Stepan Kasal <kasal@ucw.cz>
797 * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
798 Factor out the warning to...
799 (_AC_TOOL_WARN): ... this new macro; use `cross_compiling'.
800 * tests/local.at (AT_CHECK_MACRO_CROSS): Avoid this warning.
801 * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
803 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Do not special
804 case `ac_delim' when writing the sed script.
806 * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Removed BIN_SH=xpg4,
808 (AS_SHELL_SANITIZE): ... here.
809 * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Do not say
812 * lib/autoconf/programs.m4 (AC_CHECK_PROG): Quote the parameter of
814 (_AC_PATH_PROG): Store the result to VARIABLE.
815 (AC_PATH_PROG): No need to set VARIABLE again.
817 * tests/local.at (AT_CHECK_MACRO_CROSS): New macro, creates two tests:
818 the first one is usual AT_CHECK_MACRO test, the second one checks
819 that the same works when cross-compiling.
820 * tests/semantics.at (AC_CHECK_ALIGNOF, AC_CHECK_ALIGNOF struct):
821 (AC_CHECK_SIZEOF, AC_CHECK_SIZEOF struct): Use it.
823 2006-03-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
825 * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Prepend
826 the directory `/usr/bin/posix' in the shell search, to prefer
827 the Posix shell not only in subsequent spawns as with `$BIN_SH'
830 * doc/autoconf.texi (contents): To fix texi2html output, hide
831 `@setcontentsaftertitlepage' for HTML.
832 (Writing Autoconf Macros): Likewise, insert space after `@c'.
833 (Leviticus, Numbers, Deuteronomy): Likewise, change `@,c' to
836 2006-03-16 Stepan Kasal <kasal@ucw.cz>
838 * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Move the IFS setup and CDPATH
840 (AS_SHELL_SANITIZE): ...here; mention _AS_PATH_WALK needs IFS set.
841 * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Add an explanation
842 why IFS is restored so late; thank you, Ralf, for reminding us.
844 2006-03-15 Stepan Kasal <kasal@ucw.cz>
846 * doc/autoconf.texi (Pretty Help Strings): No need to use cached
847 variables in the examples.
849 2006-03-14 Romain Lenglet <rlenglet@users.forge.objectweb.org>
851 * doc/autoconf.texi (several sections): Cleaned up documentation for
854 2006-03-14 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
856 * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine
857 failure condition for `$(cmd)' style command substitutions.
858 (Parenthetical command substition, Multiline parenthetical
859 command substition): Use it.
861 * doc/autoconf.texi (Special Shell Variables): Missing word.
862 Reported by Keith Marshall <keith.marshall@total.com>.
864 * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not forget to reset
865 IFS even in case of empty `$PATH'.
867 2006-03-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
869 * lib/autotest/general.m4 (AT_INIT) <at_optarg>: Optimize
870 `expr' away if there is nothing to do.
871 < --keywords >: Simplify and robustify argument handling.
872 Revert erroneous comment from 2005-08-23. Extend to allow
873 keyword negation with `!'.
874 Update help message. Remove broken code to prevent running
875 tests multiple times.
876 * doc/autoconf.texi (testsuite Invocation) < --keywords >:
877 Update and fix the documentation accordingly.
878 * tests/autotest.at (Keywords): Renamed to..
879 (Keywords and ranges): .. this. Extended to make sure negated
880 keywords, keywords taken from AT_SETUP arguments, and numeric
881 test ranges work, and that matching is case-insensitive.
883 2006-03-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
885 * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Use a typedef to
886 allow to pass unnamed structs even in C++.
887 (AC_CHECK_SIZEOF): Likewise.
888 Also fix quoting error in `AC_MSG_FAILURE' arguments.
889 * tests/semantics.at (AC_CHECK_ALIGNOF struct, AC_CHECK_SIZEOF
890 struct): New tests for unnamed structs, each both native and
893 * lib/autoconf/c.m4 (AC_C_TYPEOF): Use typedef to avoid defining
894 a structure inside a cast, for C++ conformance.
895 * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Likewise.
896 Also fix quoting error in `AC_MSG_FAILURE' arguments.
898 * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If we cannot enable C99
899 nor C89 mode, set `$ac_cv_prog_cc_stdc' to `no' instead of
900 trying to execute the command `no'.
902 * lib/autoconf/lang.m4 (AC_LANG_CONFTEST): AC_DEFUN this, not
903 m4_define, so that the requirements of `AC_INCLUDES_DEFAULT' are
906 * doc/autoconf.texi (autoconf Invocation): Fix typos in trace
907 example. Do not emphasize `$%', it is hardly new and special.
908 Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
910 * doc/autoconf.texi (Limitations of Usual Tools): Document
911 OpenBSD and traditional `grep' failure to handle multiple
912 patterns separated by newlines.
914 2006-03-10 Romain Lenglet <rlenglet@users.forge.objectweb.org>
916 * doc/autoconf.texi (several sections): Add documentation for macros
919 2006-03-10 Eric Blake <ebb9@byu.net>
921 * doc/autoconf.texi (Obsolete Macros): Fix wording of
924 2006-03-10 Paul Eggert <eggert@cs.ucla.edu>
926 * doc/autoconf.texi: Use @acronym more consistently for acronyms
927 like BSD, GPL, LGPL. Fix minor English typos.
928 (AC_STDC_HEADERS, AC_PROG_GCC_TRADITIONAL):
929 Mention that these macros are becoming obsolete.
930 (AC_STDC_HEADERS, AC_PROG_CC, AC_C_CONST, AC_C_VOLATILE):
931 Use more modern terminology for which standard is what.
932 (AC_PROG_CC): Mention gcc first, and remove obsolete references to egcs
934 (AC_PROG_CXX): Likewise.
935 (AC_C_PROTOTYPES, Test Functions, AC_LIBOBJ vs LIBOBJS):
936 Remove obsolete discussion about how to port to K&R.
937 (Guidelines for Test Programs): Suggest AC_HEADER_STDBOOL rather than
938 the obsolescent AC_HEADER_STDC.
939 (AC_FOO_IFELSE vs AC_TRY_FOO): Don't use #error; test programs
942 2006-03-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
944 * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
945 Remove stdin redirection from /dev/null to allow pipe to work.
947 2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
949 * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
950 Require that /lib/cpp include stdio.h correctly. Solaris 10's
951 doesn't. Problem reported by D'Arcy A MacIsaac and diagnosed by
954 2006-03-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
956 * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): The limit for
957 HP-UX sed is 99 commands, not 100.
958 (_AC_OUTPUT_FILES_PREPARE): Do not count the `}' of an
959 _AC_SUBST_FILES fragment. Separate `{' and `r' commands by
960 newline for portability.
961 * tests/torture.at (Torturing config.status): Also test 100
962 AC_SUBST_FILE invocations. Fix test to actually verify the
963 AC_CONFIG_FILES output.
964 * doc/autoconf.texi (Limitations of Usual Tools): Document HP-UX
965 command, label, and read-file `r' limits. Unify HP-UX spelling.
967 * tests/Makefile.am (edit, $(wrappers)): Do not use `$<' in
969 ($(TESTSUITE_GENERATED_AT)): Use `$(srcdir)` for the benefit of
971 (autoconfdir, $(AUTOCONF_FILES)): Likewise.
972 * tests/mktests.sh: Small shell portability fixes.
974 2006-03-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
976 * doc/autoconf.texi (Caching Results): Fix the examples to use a
977 recommended quoting style and discard unwanted output.
979 2006-03-05 Paul Eggert <eggert@cs.ucla.edu>
981 * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
982 (AT_INIT): Use it, to remove arbitrary limit of 999,999 test
983 cases, and to work around Tru64 expr bug.
985 2006-03-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
987 * doc/autoconf.texi (Limitations of Usual Tools): Mention Tru64
988 expr bug that turns the result of a regex match into a number if
991 2006-03-04 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
993 * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Work around
994 HPUX compiler bug, similarly to AC_CHECK_SIZEOF, as documented
995 in section `Specific Compiler Characteristics'.
997 2006-03-04 Eric Blake <ebb9@byu.net>
999 * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R): Avoid unused
1002 2006-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1004 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Force correct
1005 order of variable initialization, so even the Solaris 2.6 shell
1006 can create a config header correctly. Fixes lots of test suite
1009 2006-02-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1011 * doc/autoconf.texi (Text processing Macros): New node to
1012 document the m4sugar macros m4_re_escape, m4_tolower,
1013 m4_toupper, m4_split, m4_normalize, m4_append, m4_append_uniq.
1015 2006-02-22 Paul Eggert <eggert@cs.ucla.edu>
1017 * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Fix typo:
1018 XrmInitialize (0) -> XrmInitialize ().
1019 Reported by Toshio Kuratomi.
1021 2006-02-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1023 * lib/m4sugar/m4sh.m4 (AS_IF): Extend to allow more than one
1024 test, as in `if tests; then cmd1; elif ...; else ...; fi'.
1025 * doc/autoconf.texi (Programming in M4sh): Adjusted.
1026 * tests/m4sh.at (AS_IF and AS_CASE): Test this. Also make sure
1027 both macros are defun'ed so that required macros are evaluated
1030 * doc/autoconf.texi (Prerequisite Macros): State more precisely
1031 where a required macro will be expanded.
1032 (Coding Style): Another reason not to use `m4_define'.
1034 2006-02-21 Eric Blake <ebb9@byu.net>
1036 * lib/autoconf/general.m4 (_AC_LIBOBJ): Minor optimization.
1038 2006-02-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1040 * doc/autoconf.texi (Looping constructs): New node, to
1041 document m4_for, m4_foreach, m4_foreach_w, and mention
1042 obsolete AC_FOREACH.
1043 (Obsolete Macros): Document AC_FOREACH.
1044 * lib/m4sugar/m4sugar.m4 (_m4_for): Fix declaration comment.
1045 (m4_for): Fix to never loop (almost) endlessly, work correctly
1046 with arithmetic expressions in arguments, a step of zero or
1047 non-integer multiple of the interval, and avoid integer
1049 * tests/m4sugar.at: New test for m4_for, m4_foreach, and
1052 2006-02-20 Romain Lenglet <rlenglet@users.forge.objectweb.org>
1054 Add basic support for Erlang, both for configuring Erlang/OTP
1055 tools, and Erlang as a conf test language.
1056 * lib/autoconf/erlang.m4: New file.
1057 * lib/autoconf/autoconf.m4: Add erlang.m4.
1058 * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Likewise.
1059 * lib/freeze.mk (autoconf_m4f_dependencies): Likewise.
1060 * NEWS: Add short description of new macros.
1061 * THANKS: Add Romain Lenglet.
1063 2006-02-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1065 * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
1066 native /bin/sh may not set KSH_VERSION (seen on OpenBSD).
1068 2006-02-15 Eric Blake <ebb9@byu.net>
1070 * lib/autoconf/general.m4 (AC_CHECK_DECL): Avoid unused variable
1073 2006-02-15 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1075 * lib/m4sugar/m4sh.m4 (AS_CASE): New macro.
1076 (_AS_CASE): Private helper macro.
1077 * tests/m4sh.at: Basic tests for AS_IF and AS_CASE.
1078 * doc/autoconf.texi (Programming in M4sh): Document AS_CASE.
1079 Fix syntax of AS_IF description
1080 (Prerequisite Macros): Mention AS_IF and AS_CASE as workarounds
1081 for the AC_REQUIRE mess.
1082 * NEWS: Mention AS_CASE, AS_BOURNE_COMPATIBLE, and
1085 2006-02-14 Paul Eggert <eggert@cs.ucla.edu>
1087 * doc/autoconf.texi: Minor style cleanup.
1088 Be consistent about spaces after commas.
1089 Insert [] where empty args look a bit funny.
1090 Fix some "i.e." and "e.g." usages.
1091 Try to avoid "X/Y" usages.
1092 Don't be pedantic about "ISO C99"; just say C99.
1093 Prefer GNU style for spaces in front of parens.
1094 (Function Portability): Comment about C89 versus C99
1095 signed integer division.
1096 (Particular Headers): Use current gnulib style for dirent
1099 2006-02-14 Stepan Kasal <kasal@ucw.cz>
1100 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1102 * bin/autoupdate.in (handle_autoconf_macros): Fix updating of
1103 macros without parameters.
1104 * lib/autoconf/autoupdate.m4 (AU_ALIAS): Likewise.
1105 * doc/autoconf.texi (Obsoleting Macros): Document AU_ALIAS.
1106 * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS
1108 (autoupdate): Updated to match AU_ALIAS fix.
1110 2006-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1111 and Paul Eggert <eggert@cs.ucla.edu>
1113 * doc/autoconf.texi (Programming in M4sh): Document
1114 AS_BOURNE_COMPATIBLE and AS_SHELL_SANITIZE.
1116 2006-02-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1118 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Renamed to..
1119 (AS_BOURNE_COMPATIBLE): ..this.
1120 (_AS_RUN, AS_SHELL_SANITIZE): Adjusted all callers.
1122 2006-02-12 Paul Eggert <eggert@cs.ucla.edu>
1124 * doc/install.texi (Defining Variables): Tighten up the
1125 CONFIG_SHELL wording.
1127 2006-02-12 Paul Eggert <eggert@cs.ucla.edu>
1128 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1130 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Look at the output
1131 of (set -o) rather than testing whether (set -o posix) succeeds,
1132 to work around a bug in the AIX 5.3 shell. Problem originally
1133 reportd by Howard Chu for libtool.
1135 2006-02-10 J.T. Conklin <jtc@acorntoolworks.com>
1137 * doc/autoconf.texi (Running the Compiler, Running the Linker):
1138 Changes the macro arguments in summaries to match the
1141 2006-02-04 Stepan Kasal <kasal@ucw.cz>
1143 * doc/install.texi (Defining Variables): Classify the `CONFIG_SHELL'
1144 hint as ``a workaround for a bug.''
1146 2006-01-31 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1148 * bin/autoreconf.in: New option `--no-recursive'.
1149 Improve wording for subpackages a bit.
1150 * doc/autoconf.texi (autoreconf Invocation): Updated.
1153 * doc/install.texi (Defining Variables): Put `CONFIG_SHELL'
1154 in environment of `configure', not the command line.
1155 Reported by Howard Chu <hyc@highlandsun.com>.
1157 2006-01-25 Paul Eggert <eggert@cs.ucla.edu>
1159 * doc/autoconf.texi (Limitations of Builtins): Document the
1160 problem with "trap -".
1162 2006-01-23 Steven G. Johnson <stevenj@fftw.org>
1164 * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN):
1165 (_AC_FC_MAIN, __AC_FC_NAME_MANGLING): Use _AC_LANG in check
1166 messages to differentiate Fortran and Fortran 77 tests.
1167 (AC_FC_SRCEXT, AC_FC_FREEFORM): Use AC_LANG_PUSH/POP instead of
1168 AC_LANG_ASSERT, to allow use in mixed-language projects.
1170 2006-01-23 Paul Eggert <eggert@cs.ucla.edu>
1172 * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Prefer "defined
1173 FOO" to "defined (FOO)".
1174 * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Likewise.
1175 * lib/autoconf/headers.m4 (AC_HEADER_STAT): Likewise.
1176 * lib/autoconf/specific.m4 (AC_XENIX_DIR): Likewise.
1177 * tests/tools.at (ifnames): Likewise.
1179 2006-01-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1181 * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Do not pass `-q' to mktemp.
1182 * lib/Autom4te/General.pm (mktmpdir): Likewise.
1183 (END): Improve error message a bit.
1184 Reported by Bruce Korb <bkorb@gnu.org>.
1186 2006-01-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1188 * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
1189 `-LIST:' and `-LNO:', for PathScale 2.3 compilers.
1191 2006-01-11 Stepan Kasal <kasal@ucw.cz>
1193 * doc/autoconf.texi (Header Portability): On Solaris 8, sys/ptem.h
1194 requires sys/stream.h. Reported by Oliver Kiddle.
1196 2006-01-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1197 Stepan Kasal <kasal@ucw.cz>
1199 * lib/autotest/general.m4 (AT_INIT): When ensuring writability
1200 before the removals of test dirs, use `find' to avoid modification
1201 of symlinked directories.
1203 2006-01-11 Steven G. Johnson <stevenj@alum.mit.edu>
1205 * lib/autoconf/fortran.m4 (AC_F77_DUMMY_MAIN, AC_FC_DUMMY_MAIN):
1206 Don't ignore the macro arguments.
1208 2006-01-11 David Thompson <dthompsn@vizsolutions.com>
1210 * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Add `exit'
1211 declaration that works for MSVC.
1213 2006-01-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1215 * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT):
1216 Add `*.map' and `.inf' for Green Hills compiler.
1217 Reported by Stefan Seefeld <stefan@codesourcery.com>.
1219 * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Handle quadrigraphs
1220 correctly: pad with spaces after FIRST_PREFIX if necessary,
1221 and compute string lenghts with `m4_qlen' instead of `m4_len'.
1222 * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Comments updated.
1223 * tests/m4sh.at (AS_HELP_STRING): Test extended.
1225 Reported by numerous people, numerous times.
1227 2006-01-05 Paul Eggert <eggert@cs.ucla.edu>
1229 * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in
1230 * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in:
1231 * lib/autoconf/general.m4, lib/autoconf/status.m4:
1232 * lib/autotest/general.m4, tests/local.at:
1233 Update copyright year to 2006.
1235 * Makefile.maint (sc_root_tests): Use the recommended style s/a/b/ for
1237 * doc/autoconf.texi (Installation Directory Variables): Use s|a|b|
1238 for file names, again. Reported by Noah Misch.
1239 (Coding Style): Explain that s|a|b| is preferred for file names.
1240 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer s/a/b/.
1241 (AC_OUTPUT_MAKE_DEFS): Likewise.
1242 * lib/autotest/general.m4 (AT_INIT): Likewise.
1243 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise.
1244 * tests/local.at (AT_CHECK_AUTOM4TE): Likewise.
1246 Fix Posix-conformance bugs re use of { command in sed scripts,
1247 and improve the sed-related documentation a bit.
1248 * doc/autoconf.texi (Installation Directory Variables): Use
1249 our own style advice re 's,a,b,' versus 's|a|b|'. Use "Sed"
1250 rather than "sed" when talking about Sed in general.
1251 (Particular Programs): Likewise.
1252 (Coding Style): y is like s with respect to / and ,.
1253 (Limitations of Usual Tools): Document the weird restrictions
1254 that Posix has about { }. Use better quoting.
1255 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_HEADER):
1256 Rewrite to conform to Posix rules about { } in sed scripts.
1257 * lib/m4sugar/m4sh.m4 (AS_DIRNAME_SED, AS_BASENAME_SED): Likewise.
1258 * tests/foreign.at (Libtool): Likewise.
1259 * tests/semantics.at (AC_CHECK_PROG & AC_CHECK_PROGS):
1260 Use our own style advice re 's,a,b,' versus 's|a|b|'.
1262 2006-01-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1264 * lib/autoconf/status.m4: Fix typo.
1266 * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
1267 singly- or doubly-quoted arguments to `-cmdline', `-ignore',
1268 `-def', for the benefit of Portland `pgf90 -Mipa'.
1269 Reported by Christopher Hulbert <cchgroupmail@gmail.com>.
1271 2006-01-04 Paul Eggert <eggert@cs.ucla.edu>
1273 * doc/autoconf.texi: Update copyright (and other) dates to 2006.
1274 * doc/autoconf.texi (Shellology): Mac OS X 10.2 changed the default
1275 shell from zsh to bash.
1277 2005-12-31 Stepan Kasal <kasal@ucw.cz>
1279 * lib/autoconf/programs.m4 (_AC_PROG_GREP): Use $PATH_SEPARATOR;
1280 ":" caused problems on OS/2-EMX. Suggested by Andrew Belov.
1282 2005-12-29 Paul Eggert <eggert@cs.ucla.edu>
1284 * doc/autoconf.texi (Shell Substitutions): Warn about unbalanced
1285 parentheses in $(...). Problem reported by Eric Blake.
1287 2005-12-12 Paul Eggert <eggert@cs.ucla.edu>
1289 * doc/autoconf.texi (Limitations of Usual Tools):
1290 Mention which characters can be escaped with \ in portable regular
1291 expressions used in grep, sed, expr. Mention the leading ^ problem
1292 with expr. Clean up some confusing wording. Mention which
1293 grep options are portable.
1295 2005-12-09 Stepan Kasal <kasal@ucw.cz>
1297 * tests/local.at (AT_CHECK_AUTOM4TE): Fix typo in the comment.
1299 2005-12-02 Paul Eggert <eggert@cs.ucla.edu>
1301 * doc/autoconf.texi (Limitations of Builtins): Fix typos in previous
1302 patch, noted by Ralf Wildenhues.
1304 2005-12-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1306 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
1307 posix' unconditionally, for pdksh in `native sh' emulation.
1309 2005-12-01 Paul Eggert <eggert@cs.ucla.edu>
1311 * doc/autoconf.texi (Shellology): Document eval $? problem
1313 (Limitations of Builtins): Likewise.
1315 2005-11-10 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1317 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Pass
1318 CONFIG_SHELL in the environment of the configure rerun.
1319 * doc/autoconf.texi (Here-Documents, config.status Invocation):
1320 Suggest passing CONFIG_SHELL absolute, and in the environment
1321 rather than as option.
1323 2005-11-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1325 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
1326 Fix quoting of output line (triggered for many AC_SUBST_FILEs).
1327 Fix macro quoting. Fix output for n * 98 substituted variables.
1329 2005-11-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1331 * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Initialize
1332 `tmp' to avoid file removal race.
1334 2005-11-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1336 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
1337 ac_clean_files and LIBOBJS.
1339 2005-11-06 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1341 * lib/autoconf/programs.m4 (AC_CHECK_PROG, AC_PATH_PROG):
1342 Factor functionality to..
1343 (_AC_CHECK_PROG, _AC_PATH_PROG): these new macros, but only
1344 `AC_SUBST($1)' in the public version.
1345 (AC_CHECK_TOOL, AC_PATH_TOOL, AC_PATH_TARGET_TOOL)
1346 (AC_CHECK_TARGET_TOOL): Use internal versions for ac_ct_* and
1349 2005-11-01 Stepan Kasal <kasal@ucw.cz>
1351 * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove the comment about 8+3
1354 2005-11-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1356 * NEWS: Move AH_HEADER mention to right place.
1358 2005-10-27 Stepan Kasal <kasal@ucw.cz>
1360 * lib/autoconf/c.m4 (AC_PROG_CC_C_O): "conftst2" -> "conftest2"
1361 * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1363 2005-10-25 Stepan Kasal <kasal@ucw.cz>
1365 * lib/autoconf/c.m4 (AC_PROG_CC_C_O): rm -f conftst2.*, not only
1366 conftst2.$ac_objext.
1367 * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1369 2005-10-24 Stepan Kasal <kasal@ucw.cz>
1371 * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Use conftst2.o instead of
1372 conftest.o, to see whether the compiler really obeys; rm the object
1373 file before and after the test and register it with ac_clean_files.
1374 * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1376 2005-10-21 Stepan Kasal <kasal@ucw.cz>
1378 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When determining,
1379 the delimiter CEOF$ac_eof: fix quoting of CEOF[0-9]* and modify the
1380 code so that the most common case requires less forks.
1382 2005-10-20 Stepan Kasal <kasal@ucw.cz>
1384 * doc/autoconf.texi (Shell Substitutions}: Document that ${10} is
1385 not portable; thanks to Paul Eggert and Alexandre.
1387 * NEWS: Fix an old typo.
1389 2005-10-20 Jim Meyering <jim@meyering.net>
1391 * doc/autoconf.texi: Typo: s/feature/features/ in ``the features of
1392 the latter'', in two places.
1394 2005-10-19 Paul Eggert <eggert@cs.ucla.edu>
1396 * doc/autoconf.texi (Generating Sources): AC_LANG_PROGRAMS ->
1397 AC_LANG_PROGRAM, fixing a typo. Don't give details about
1398 the inner workings of AC_LANG_FUNC_LINK_TRY.
1399 * lib/autoconf/c.m4 (AC_LANG_CALL(C)): Reformat to match
1400 AC_LANG_FUNC_LINK_TRY. This involves returning the value returned
1401 by the function rather than ignoring it.
1402 (AC_LANG_FUNC_LINK_TRY(C)): Call the function rather than simply
1403 comparing its address. Intel's interprocedural optimization was
1404 outsmarting the old heuristic. Problem reported by
1407 2005-10-19 Stepan Kasal <kasal@ucw.cz>
1409 * lib/autoconf/general.m4 (AC_SUBST): Remove an obsolete comment.
1411 2005-10-05 Paul Eggert <eggert@cs.ucla.edu>
1413 * lib/m4sugar/m4sugar.m4 (_m4_map): New macro.
1414 (m4_map, m4_map_sep): Use it. Handle the empty list correctly.
1416 2005-10-04 Stepan Kasal <kasal@ucw.cz>
1418 * lib/autotest/general.m4 (AT_INIT): Really make the subtree writable
1419 before removing it (chmod -R u+rwx); there are three instances of this.
1421 2005-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1422 Stepan Kasal <kasal@ucw.cz>
1424 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Balance parentheses.
1425 * lib/autotest/general.m4 (AT_INIT): If the test dir already exists,
1426 make its content writable before removing it. Remove an errorneous
1427 comment from the end, where the logs of the failed tests are copied
1428 to the main log file.
1430 2005-09-27 Stepan Kasal <kasal@ucw.cz>
1432 * tests/semantics.at (AC_C_BIGENDIAN): Pass --force to autoheader,
1433 in case the computer is too quick. Double quote the configure.ac
1436 * tests/local.at (AT_CHECK_AUTOCONF): Always pass --force to prevent
1437 problems if the testsuite were running too fast.
1439 2005-09-18 Paul Eggert <eggert@cs.ucla.edu>
1441 * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
1442 and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
1443 (which belong to Xt, not X itself). See Debian bug 327655.
1444 * NEWS: Mention this.
1446 2005-09-07 Stepan Kasal <kasal@ucw.cz>
1448 * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Remove an incorrect comment.
1450 2005-09-06 Paul Eggert <eggert@cs.ucla.edu>
1452 * config/move-if-change: Don't output "$2 is unchanged";
1453 suggested by Ben Elliston. Handle weird characters correctly.
1455 2005-09-06 Stepan Kasal <kasal@ucw.cz>
1457 * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Merge the two AC_LINK_IFELSE
1458 calls, so that the final expansion of this macro is shorter.
1459 Create the conftest.$ac_ext outside the `for' loop, to speed the run.
1460 Do not use `break' in the argument to AC_LINK_IFELSE, it would skip
1461 the cleanup there. Use AS_VAR_* macros, to be more general.
1462 * tests/semantics.at (AC_SEARCH_LIBS): Check for the cleanup.
1464 * lib/autoconf/general.m4: Use AS_IF where appropriate.
1466 * lib/m4sugar/m4sh.m4 (AS_IF): Use m4_default.
1468 2005-09-01 Stepan Kasal <kasal@ucw.cz>
1470 * doc/autoconf.texi (Configuration Headers): Add an index entry
1473 2005-08-26 Pavel Roskin <proski@gnu.org>
1475 * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use shell variable
1476 XMKMF to locate xmkmf. Make XMKMF precious. Export CC when
1479 2005-08-26 Paul Eggert <eggert@cs.ucla.edu>
1481 * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
1482 The previous patch didn't work, so try a better one.
1484 2005-08-26 Stepan Kasal <kasal@ucw.cz>
1486 * doc/autoconf.texi (Programming in M4sh) <AS_TR_CPP>: Fix m4 quoting
1487 in the example. Reported by Bruno Haible.
1488 <AS_TR_SH>: Likewise. Also modify the example to be more convincing:
1489 "if $undefined_var;" succeeds with my shell.
1491 * lib/autoconf/general.m4 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST,
1492 AC_CANONICAL_TARGET): Define by AC_DEFUN, no need to use AC_DEFUN_ONCE;
1493 but change the m4_divert_text to m4_divert_once.
1495 2005-08-25 Paul Eggert <eggert@cs.ucla.edu>
1497 * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
1498 Work around bug in Solaris /usr/xpg4/bin/awk.
1499 The bug is present in at least Solaris 8 through 10.
1501 2005-08-24 Stepan Kasal <kasal@ucw.cz>
1503 * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Simplify; rejecting
1504 some evil values and relying on the fact that $* concatenates the
1505 parameters by the first character from IFS.
1507 2005-08-23 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>,
1508 Stepan Kasal <kasal@ucw.cz>
1510 * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER_DEST): When the
1511 first header appears, define AH_HEADER.
1512 * doc/autoconf.texi (Configuration Headers): Document AH_HEADER.
1513 Update limitations about when to call AC_CONFIG_HEADERS.
1514 (Configuration Commands): Document that AC_CONFIG_COMMANDS_PRE
1515 parameter can call AC_SUBST, AC_DEFINE, or AC_CONFIG_FOOS; explain
1516 that AC_CONFIG_COMMANDS_PRE and AC_CONFIG_COMMANDS_POST are not
1517 ``Configuration Actions''; fix their index entries.
1519 * lib/autotest/general.m4 (AT_INIT): Process multiple keywords
1520 options correctly. Process N-M as M-N if M is smaller than N.
1521 Process ranges correctly so that N-N will run only N.
1522 Sort and uniquify the tests that will be run. If there is more
1523 than one test, reinsert the banners for the tests.
1524 * tests/autotest.at (Keywords): Unmark XFAIL.
1526 2005-08-23 Stepan Kasal <kasal@ucw.cz>
1528 * lib/autoconf/general.m4 (_AC_DEFINE_Q): Strip the parameter list
1529 before passing the macro name to AH_TEMPLATE.
1531 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): config.status
1532 now opens log after option processing; in particular, --version
1533 and --help do not touch config.log.
1535 * Makefile.maint: Revert the change from 2005-08-12.
1537 2005-08-22 Stepan Kasal <kasal@ucw.cz>
1539 * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Factor out
1541 (_AC_ENABLE_IF, _AC_ENABLE_IF_ACTION): ... these new macros.
1543 2005-08-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1545 * doc/autoconf.texi (Using Autotest, testsuite Scripts)
1546 (Autotest Logs, Writing testsuite.at, testsuite Invocation):
1549 * doc/autoconf.texi (Defining Symbols, Changed Results):
1550 Prepend to LIBS, not append, in examples.
1552 2005-08-16 Stepan Kasal <kasal@ucw.cz>
1554 When building in place, set srcdir="."; suggested by Tim Van Holder.
1556 * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Do this; to recognize
1557 build in place, we need ac_pwd, and thus have to AC_REQUIRE ...
1558 (_AC_INIT_DIRCHECK): ... this macro and AC_DEFUN both of them.
1559 * lib/autoconf/status.m4 (_AC_SRCDIRS): Fix a comment: srcdir="."
1560 does not mean "no --srcdir option".
1562 2005-08-15 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1564 * tests/autoscan.at (autoscan): New file.
1565 * tests/suite.at: Use it.
1566 * tests/Makefile.am (TESTSUITE_HAND_AT): Add it.
1567 Reported against Libtool by Gideon Go <gideon.go@gmail.com>.
1569 * tests/autotest.at (Keywords): Test keywords combinations.
1571 2005-08-12 Stepan Kasal <kasal@ucw.cz>
1573 * Makefile.maint (GZIP_ENV): When checking the help text of gzip,
1574 add "2>&1"; gzip 1.2.4 prints help on stderr.
1576 2005-07-27 Stepan Kasal <kasal@ucw.cz>
1578 * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): The symbol at_reason
1579 was pushdef'ed twice while popped only once. Push it only once.
1580 (_AT_CHECK): Cosmetic changes to the "case $at_status" command.
1582 2005-07-26 Stepan Kasal <kasal@ucw.cz>
1584 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
1585 prefixed by mere "===", not "configure: === ".
1587 2005-07-25 Paul Eggert <eggert@cs.ucla.edu>
1589 * Makefile.maint: Update from Bison.
1591 * lib/m4sugar/m4sugar.m4 (m4_strip): Comment fix---change tab to
1592 "<tab>" in comment, so that the point is understandable.
1594 2005-07-25 Stepan Kasal <kasal@ucw.cz>
1596 Rewrite substantial part of lib/autoconf/status.m4.
1597 The main change is that CONFIG_FILES, CONFIG_HEADERS, CONFIG_LINKS,
1598 and CONFIG_COMMANDS are not processed in four separate loops.
1599 Instead, there is one main loop. This alows that the common code
1600 is expanded only once, thus config.status (and configure) is smaller.
1602 The registration mechnism in AC_CONFIG_FILES and cousins also changed;
1603 the AC_LIST_FILES and cousins macros are no longer used.
1605 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS,
1606 _AC_OUTPUT_LINKS, _AC_OUTPUT_COMMANDS): Renamed to ...
1607 (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER, _AC_OUTPUT_LINK,
1608 _AC_OUTPUT_COMMAND): ..., respectively. These macros no longer
1609 contain the initialization, nor the for loop, nor the associated
1610 commands; all these go to ...
1611 (_AC_OUTPUT_MAIN_LOOP): ... this new macro, called from
1612 _AC_OUTPUT_CONFIG_STATUS.
1613 (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST, _AC_CONFIG_SPLIT_FILE_IN):
1614 Nuked; the code was merged into _AC_OUTPUT_MAIN_LOOP.
1615 (_AC_OUTPUT_FILE): The creation of the sed script ...
1616 (AC_OUTPUT): ... and the setup of ac_vpsub goes to ...
1617 (_AC_OUTPUT_FILES_PREPARE): ... a new macro, also called from
1618 _AC_OUTPUT_MAIN_LOOP.
1619 (_AC_CONFIG_FILES, _AC_CONFIG_HEADERS, _AC_CONFIG_LINKS,
1620 _AC_CONFIG_COMMANDS): Use ...
1621 (_AC_CONFIG_FOOS): ... this new macro, which uses these ...
1622 (_AC_CONFIG_REGISTER, _AC_CONFIG_REGISTER_DEST): ... new macros.
1623 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER, _AC_CONFIG_LINK,
1624 _AC_CONFIG_COMMAND, _AC_CONFIG_DEPENDENCIES): No longer needed.
1625 (_AC_CONFIG_DEPENDENCY): Update, it uses these ...
1626 (_AC_CONFIG_DEPENDENCY_DEFAULT, _AC_FILE_DEPENDENCY_TRACE_COLON):
1628 (_AC_CONFIG_UNIQUE): Update.
1629 (AC_LIST_FILES, AC_LIST_HEADERS, AC_LIST_LINKS, AC_LIST_COMMANDS):
1630 Replaced by this ...
1631 (_AC_LIST_TAGS): ... new common macro.
1632 (AC_LIST_FILE_COMMANDS, AC_LIST_HEADER_COMMANDS, AC_LIST_LINK_COMMANDS,
1633 AC_LIST_COMMAND_COMMANDS): Replaced by this ...
1634 (_AC_LIST_TAG_COMMANDS): ... new common macro.
1635 (_AC_CONFIG_COMMANDS_INIT): Moved top to the `registration' section;
1636 this didn't belong to the `config commands' section.
1637 (_AC_OUTPUT_COMMANDS_INIT): Don't initialize, m4_ifdef is our friend.
1638 (AC_CONFIG_COMMANDS_PRE, AC_OUTPUT_COMMANDS_PRE,
1639 AC_CONFIG_COMMANDS_POST): Moved to a new section, these didn't belong
1640 to the `config commands' section either.
1641 (AC_CONFIG_SUBDIRS): Don't touch diversion DEFAULTS.
1642 (_AC_LIST_SUBDIRS): Don't initialize, m4_ifdef is our friend.
1644 ... and many changes to the comments nearby.
1646 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): At the end of the day,
1647 set ac_subdirs_all='_AC_LIST_SUBDIRS'.
1648 * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
1649 AC_CONFIG_COMMANDS(command:input,...) is no longer allowed.
1650 (#define header templates): The comment at the top of the generated
1651 header now includes the name(s) of the source file(s).
1653 Several unrelated small changes:
1655 * lib/autoconf/general.m4 (AC_CACHE_VAL): Be didactic, quote the first
1656 parameter to AC_DIAGNOSE.
1657 * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
1658 (_AC_LINK_FILES_CNT): Don't AU_DEFUN this; it causes confusing messages
1659 with autoupdate; use m4_define_default inside AU_DEFUNed AC_LINK_FILES.
1660 (AC_OUTPUT): In the compatibility code, use m4_ifvaln, to be consistent
1662 (AU::AC_OUTPUT): Don't double-quote $2 and $3, the compatibility code
1663 in AC_OUTPUT doesn't double-quote it either.
1664 * tests/tools.at (autoupdate): AU::AC_OUTPUT no longer double-quotes the
1667 2005-07-10 Stepan Kasal <kasal@ucw.cz>
1669 * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Document which
1670 versions of Portland Group compiler produce single- and double-quoted
1671 -cmdline argument. Reported by Steven G. Johnson <stevenj@fftw.org>
1672 and Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
1674 2005-07-07 Paul Eggert <eggert@cs.ucla.edu>
1676 * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
1677 This is a corrected version of yesterday's patch.
1679 2005-07-07 Stepan Kasal <kasal@ucw.cz>
1681 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
1682 path, too; insert a "===" to emphasize the line.
1684 * lib/autoconf/general.m4 (AC_CANONICAL_BUILD): Rename
1685 ac_cv_build_alias to ac_build_alias.
1686 (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Simplify.
1688 On 2005-02-24, an unintentional AC_SUBST([CC]) was introduced; this
1689 change eliminates it. Problem reported by Alexandre Duret-Lutz.
1690 * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Move the AC_SUBST ...
1691 (AC_ARG_VAR): ... here.
1692 (_AC_INIT_PREPARE): Call AC_SUBST for build_alias, host_alias and
1695 Keep a list of all precious variables and process them with one simple
1696 for loop, instead of expanding all commands, or, OTOH, complicated
1697 processing of output of "set".
1698 * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Acumulate the
1699 variable names in new macro...
1700 (_AC_PRECIOUS_VARS): ... which will be assigned to ac_precious_vars.
1701 (_AC_ARG_VAR_STORE): New macro which writes to diversion PARSE_ARGS
1702 a loop to assign all ac_env_* and ac_cv_env_* variables.
1703 (_AC_ARG_VAR_VALIDATE): Use shell variable ac_precious_vars, divert
1705 (_AC_INIT_DEFAULTS): At the end, if _AC_PRECIOUS_VARS is set, assign
1706 its value to shell variable ac_precious_vars and call
1707 _AC_ARG_VAR_STORE and _AC_ARG_VAR_VALIDATE.
1708 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't call
1709 _AC_ARG_VAR_VALIDATE.
1711 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Move AC_LANG_PUSH(C)
1712 and the AC_SUBSTs ...
1713 (AC_INIT): ... here.
1715 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Changed the title of
1716 the ac_subst_files section in config.log.
1718 * tests/local.at (AT_CONFIG_CMP): Revert Paul's previous change.
1720 2005-07-06 Paul Eggert <eggert@cs.ucla.edu>
1722 * NEWS: New macro AC_C_TYPEOF.
1723 * doc/autoconf.texi (C Compiler): Document AC_C_TYPEOF.
1724 * lib/autoconf/c.m4 (AC_C_TYPEOF): New macro.
1725 * tests/c.at (C keywords): Test AC_C_TYPEOF.
1727 Fix problems reported by Nicolas Joly.
1728 * tests/base.at (Input/Output): Ignore 'loading site script' chatter.
1729 * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
1730 They are generated by the Tru64 v5.1B shell.
1732 2005-07-05 Stepan Kasal <kasal@ucw.cz>
1734 Fix my changes from 2005-07-01; reported by Noah Misch.
1735 * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES): Fix the
1736 description, the macro now accepts only a single tag.
1737 (_AC_CONFIG_UNIQUE): Likewise; s/AC_File/[$1]/
1739 Fix cases when the varsions of Autoconf and Autotest don't match.
1740 Reported by Noah Misch.
1741 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Set also
1742 at_top_builddir, for compatibility with older autotest.
1743 * lib/autotest/general.m4 (AT_INIT): If at_top_build_prefix
1744 is not set, use at_top_builddir, for compatibility with older
1745 versions of autoconf.
1747 2005-07-04 Paul Eggert <eggert@cs.ucla.edu>
1749 * bin/autom4te.in ($m4): Catch usages like --nesting-limit=2048.
1750 Problem reported by Patrick Welche.
1752 2005-07-03 Paul Eggert <eggert@cs.ucla.edu>
1754 * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use &, not |, in
1755 sed substitution command, so that we allow | in program prefixes
1756 and program suffixes. (& is a problem anyway; we're not fixing
1758 * lib/autoconf/status.m4 (AC_CONFIG_FILES): Likewise, for
1759 configure_input, top_builddir, srcdir, etc.
1760 * lib/autotest/general.m4 (AT_INIT): Likewise, for
1761 PATH_SEPARATOR in AUTOTEST_PATH.
1763 2005-07-02 Alexandre Duret-Lutz <adl@gnu.org>
1765 * lib/autoconf/general.m4 (AC_SITE_LOAD): Rewrite the
1766 for loop over config.site files using `set', to allow
1767 directory names containing IFS characters.
1769 2005-07-01 Paul Eggert <eggert@cs.ucla.edu>
1771 * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Remove the tests for
1772 directories with weird names. Apparently some people like living
1773 on the edge. However, improve the test that "pwd" actually does
1774 report a name for the working directory.
1775 * NEWS: Remove the claim that we test for funny chars in dir names.
1777 2005-07-01 Stepan Kasal <kasal@ucw.cz>
1779 * lib/autoconf/general.m4 (AC_FOREACH): Make obsolete; it's
1781 * lib/m4sugar/m4sugar.m4 (m4_foreach_w): ... by this new macro.
1782 * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES, _AC_CONFIG_UNIQUE):
1783 Now accept a single tag, not whitespace separated list.
1784 (AC_CONFIG_SUBDIRS): Call _AC_CONFIG_UNIQUE in a m4_foreach_w loop.
1786 2005-06-30 Stepan Kasal <kasal@ucw.cz>
1788 * doc/autoconf.texi (Configuration Headers): Change the explanation
1789 about #include <config.h>.
1790 (Generic Functions): Mention the Gnulib project.
1791 (Limitations of Usual Tools) <sed>: Another minor rephrasing.
1793 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use a here
1794 document to output the default config_* lists to config.status.
1795 Don't recognize option --file, if the functionality is not there.
1796 Likewise for --header; moreover, recognize --he and --h as shortcuts
1797 for --help in that case.
1799 * lib/autoconf/status.m4: Fix the order of the "sections", so that it
1800 matches the order of execution. No code changed.
1802 2005-06-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1804 * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Fix also for
1805 single-quoted -cmdline argument in Portland Group compiler.
1806 Reported against LAM by Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
1808 2005-06-30 Alexandre Duret-Lutz <adl@gnu.org>
1810 * lib/autom4te.in (Automake-preselections): Preselect AC_SUBST_TRACE.
1812 2005-06-29 Stepan Kasal <kasal@ucw.cz>
1814 * doc/autoconf.texi (File Descriptors): ksh doesn't pass open file
1815 descriptors to child processes; reported by Norman Gray.
1817 2005-06-29 Stepan Kasal <kasal@ucw.cz>
1819 * lib/autoconf/general.m4 (AC_ARG_VAR): Move next to _AC_ARG_PRECIOUS.
1821 * lib/autoconf/general.m4 (AC_SUBST_TRACE): New macro, to be traced
1822 instead of AC_SUBST; proposed by Alexandre Duret-Lutz.
1823 (AC_SUBST): Call it.
1824 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Call AC_SUBST_TRACE for
1825 the directory specific variables; but don't call it for configure_input.
1827 2005-06-28 Derek Price <derek@ximbiot.com>
1829 * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Reword recent
1832 2005-06-23 Paul Eggert <eggert@cs.ucla.edu>
1834 * NEWS: Don't worry about spaces in bindir etc. Only srcdir and working
1835 directory have inherent problems with special characters like spaces,
1836 due to limitations in Make syntax. Problem reported by Alexandre
1838 * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Implement the above.
1839 Also, fix Tru64 porting problem with shell patterns,
1840 reported by Ralf Wildenhues.
1842 2005-06-23 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1844 * doc/autoconf.texi (Subdirectories): Fix markup typos.
1846 2005-06-23 Paul Eggert <eggert@cs.ucla.edu>
1848 * tests/local.at (AT_CHECK_ENV): Simplify regexp slightly.
1850 Fix some more shell quoting problems. Prompted by a bug report
1851 from Justace Clutter.
1852 * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Put name of invalid
1853 variable into diagnostic. Make the diagnostic an error, not a warning,
1854 because we really don't support spaces and suchlike in dir names.
1855 (_AC_INIT_SRCDIR): Allow special characters in $ac_unique_file.
1856 Don't worry about backslashes in srcdir; it can't happen now.
1857 (_AC_INIT_PARSE_ARGS): Allow weird characters in ac_optarg.
1858 Simplify ac_optarg handling.
1859 (_AC_ARG_VAR_VALIDATE): Remove unnecessary and inconsistent quotes.
1861 2005-06-22 Stepan Kasal <kasal@ucw.cz>
1863 Fix AT_CONFIG_CMP for Solaris hosts; idea from Ralf Menzel.
1864 * configure.ac: Call AC_PROG_EGREP and AC_PROG_SED.
1865 * tests/atlocal.in: Propagate $EGREP and $SED.
1866 * tests/local.at (AT_CHECK_ENV): Use $EGREP, not $GREP -E.
1867 (AT_CONFIG_CMP): Use sed instead of grep plumbing.
1869 * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
1870 that '\|' is not allowed in BREs; recommend using newline separated
1871 list of patterns instead of multiple -e options.
1873 * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Remove an old comment.
1875 * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Use AC_SUBST/2.
1877 2005-06-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1879 * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Fix typo.
1881 2005-06-21 Stepan Kasal <kasal@ucw.cz>
1883 * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Document that
1884 b, t, r, w commands require single space, while : cannot have any.
1885 (Special Shell Variables): Fix sed code this in the example.
1886 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Likewise; and fix a typo.
1887 * lib/autotest/general.m4 (AT_ARG_OPTION): Fix typo in the description.
1889 * lib/m4sugar/m4sugar.m4 (m4_split): If the parameter is empty,
1890 expand to the empty list. Don't use two pairs of m4_changequote,
1893 2005-06-20 Derek Price <derek@ximbiot.com>
1895 * lib/m4/programs.m4 (AC_PROG_YACC): Declare YACC & YFLAGS precious.
1897 2005-06-17 Paul Eggert <eggert@cs.ucla.edu>
1899 * lib/m4sugar/m4sh.m4 (as_awk_strverscmp): Port to Solaris /bin/awk.
1900 * doc/autoconf.texi:
1901 Don't mention Solaris versions so much, if a
1902 problem is common to all extant versions of Solaris. Say "SunOS
1903 4" instead of "SunOS" for SunOS 4.
1904 (awk): Mention more of the limitations of traditional Awk.
1905 (cat): Don't talk about cat -v.
1907 2005-06-16 Paul Eggert <eggert@cs.ucla.edu>
1909 * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE): New macro.
1910 (AS_VERSION_COMPARE): New macro. The API is taken from CVS,
1911 but the implementation is entirely different and is designed
1912 to be compatible with glibc strverscmp.
1913 * tests/m4sh.at (AS_VERSION_COMPARE): New test.
1915 * doc/autoconf.texi (Limitations of Usual Tools): Mention expr bug
1916 on Mac OS X 10.4 reported by Peter O'Gorman in:
1917 http://lists.gnu.org/archive/html/autoconf-patches/2005-06/msg00041.html
1918 * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT):
1919 Use shell builtins rather than 'expr', to work around expr bug.
1921 2005-06-10 Paul Eggert <eggert@cs.ucla.edu>
1923 * doc/autoconf.texi: "filesystem" -> "file system".
1924 "behaviour" -> "behavior".
1925 Warn about \(...\)* in Solaris sed (written by Ralf Menzel).
1926 * lib/autoconf/general.m4: Omit blank after ":" sed command,
1928 * lib/m4sugar/m4sh.m4: Likewise.
1929 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Work around problem
1930 with Solaris sed. Fix by Ralf Menzel and Stepan Kasal.
1932 * man/Makefile.am (MOSTLYCLEANFILES): Add $(srcdir)/*.t.
1933 (.x.1): Ignore the time stamp in the .TH line when deciding whether
1934 to update the man page. That way, we don't have to check in new
1935 man pages every month.
1937 * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Work even if $1 contains
1938 quotes and backslashes. Patch from Derek Price.
1940 2005-06-10 Derek Price <derek@ximbiot.com>
1942 * doc/autoconf.texi (Programming in M4sh): Document AS_TR_CPP &
1945 2005-06-08 Paul Eggert <eggert@cs.ucla.edu>
1947 * lib/autotest/general.m4 (AT_INIT): Don't accept Solaris 9's diff
1948 -u, since it outputs chatter if the input files are the same.
1949 Problem reported by Ralf Menzel.
1951 2005-06-08 Derek Price <derek@ximbiot.com>
1953 * lib/m4sugar/m4sugar.m4: Undefine include & sinclude rather than
1954 renaming them since they are about to be redefined anyhow.
1956 2005-06-08 Derek Price <derek@ximbiot.com>
1958 * doc/autoconf.texi (Redefined M4 Macros): Add index entries for most
1959 redefined M4 macros to this node. Document m4_include & m4_sinclude.
1960 Move m4_undefine to alphabetical order.
1962 2005-06-07 Paul Eggert <eggert@cs.ucla.edu>
1964 * README: Recommend GNU M4 1.4.3 or later.
1965 * doc/autoconf.texi (Introduction): Likewise.
1966 Reword to avoid some formatting glitches.
1967 Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days.
1968 Clarify explanation of HP compiler bug.
1969 Redo example output tp match current CVS snapshot.
1970 Use @example.org in email addresses when the examples
1971 might get inadvertently cut-and-pasted into user code.
1972 Remove example of autom4te usage that doesn't seem to work now.
1973 Use modern AC_INIT (except when the example is meant to be
1974 shown with Autoconf 2.13).
1975 Update ksh info for Solaris 9 and later.
1977 Modernize description of Automake versions a bit.
1978 Don't claim a future version of Autoconf is near.
1979 * doc/install.texi: Reword to avoid some formatting glitches.
1981 2005-06-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1983 * doc/autoconf.texi: Add [] to examples, so that the manual
1984 follows its own advice about quoting better.
1985 Reword to avoid some formatting glitches.
1986 * doc/installt.exi: Reword to avoid some formatting glitches.
1988 * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
1989 Tru64 ksh pattern matching bug. Reported against Libtool by
1990 Albert Chin <libtool@mlists.thewrittenword.com> and
1991 Nicolas Joly <njoly@pasteur.fr>.
1993 2005-06-06 Stepan Kasal <kasal@ucw.cz>
1995 m4_cdr of one-member list was [[]] (one-member list containing an
1996 empty string) instead of [] (an empty list. Callers were skewed to
1997 match this misbehaviour. As a consequence of this:
1998 - m4_foreach([x], [], [foo]) expanded to `foo', while
1999 - the expansion of m4_foreach([x], [[]], [foo]) was empty.
2000 This bug has been fixed:
2002 * lib/m4sugar/m4sugar.m4 (m4_cdr): If only one argument is given,
2003 expand to an empty string; print error msg if called without
2005 (m4_foreach, m4_map, m4_map_sep): Don't expect the previous
2006 misbehaviour; handle [] and [[]] correctly.
2008 2005-06-06 Stepan Kasal <kasal@ucw.cz>
2010 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Nuke ac_max_here_lines.
2011 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Simplify the sed
2012 scripts created and the loop applying them, use _AC_SED_CMD_LIMIT.
2014 2005-06-06 Ralf Menzel <menzel@ls6.cs.uni-dortmund.de> (trivial change)
2016 * doc/autoconf.texi (Limitations of Usual Tools): Solaris' awk cannot
2017 swallow records with more than 99 fields.
2018 * lib/autotest/general.m4 (AT_INIT): Use the awk builtin `split' to
2019 parse the long line.
2021 2005-06-04 Stepan Kasal <kasal@ucw.cz>
2023 * doc/autoconf.texi (Limitations of Usual Tools): AIX awk cannot
2024 swallow literals longer than 399. Reported by Ralf Wildenhues.
2025 * lib/autotest/general.m4 (AT_INIT): Pass $at_groups though stdin,
2026 to workaround this limitation.
2028 2005-06-03 Steven G. Johnson <stevenj@alum.mit.edu>
2030 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Find g95 in addition
2031 to gfortran, and make these the first two compiler names
2032 checked (following the general autoconf preference for gcc).
2034 2005-06-03 Stepan Kasal <kasal@ucw.cz>
2036 * tests/Makefile.am (check_SCRIPTS): Set to $(wrappers).
2037 (DISTCLEANFILES): Remove $(check_SCRIPTS).
2038 (testsuite): Make sure autotest.m4f is up-to-date before using it.
2040 2005-06-02 Paul Eggert <eggert@cs.ucla.edu>
2042 * lib/autotest/general.m4 (AT_INIT): Don't create a regular
2043 expression of unbounded size when processing the --list
2044 option. This runs afoul of a limit of 399 bytes per regular
2045 expression on AIX. Problem reported by Ralf Wildenhues.
2047 2005-06-01 Paul Eggert <eggert@cs.ucla.edu>
2049 * NEWS: Note yesterday's changes to AC_SUBST and AC_SUBST_FILE.
2050 * doc/autoconf.texi (Particular Headers): Reword example
2051 for multiline stdbool replacement.
2052 (Setting Output Variables): Reword text a bit. Don't
2053 give all the details about |#_!!_#|.
2054 Reword description of line replacement.
2056 2005-05-31 Dan Manthey <dan_manthey@partech.com>
2058 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Output variables may
2059 now contain newlines, and substituted files must be referenced on
2060 a line alone; the sed scripts to substitute them are now very
2062 (_AC_SED_CMD_LIMIT): Added; single place to store limit on how many
2063 commands can be put in a sed script portably.
2064 * doc/autoconf.texi (Setting Output Variables): Document above
2065 changes. (Particular Header Checks) <AC_HEADER_STDBOOL>: Give exaple
2066 use of multiline substitution.
2067 * tests/torture.at: No longer expect substitution of newline to fail.
2069 2005-05-27 Paul Eggert <eggert@cs.ucla.edu>
2071 * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
2072 From Ralf Menzel (trivial change).
2074 2005-05-25 Paul Eggert <eggert@cs.ucla.edu>
2076 * tests/local.at: Don't attempt to check for negated character
2077 classes in shell scripts. The test was too brittle.
2079 2005-05-25 Stepan Kasal <kasal@ucw.cz>
2081 * bin/autoconf.as: Don't use "shift 2"; it's not portable enough.
2082 * doc/autoconf.texi (Limitations of Builtins): Document this
2085 2005-05-24 Stepan Kasal <kasal@ucw.cz>
2087 * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): New macro to factor out
2088 common code; used in many places in the tree.
2089 (AS_ESCAPE): Make the pattern a bit simpler; use \& insetad of \1.
2090 (_AS_ECHO_UNQUOTED): Move the macro lower; no code change.
2092 * lib/m4sugar/m4sugar.m4 (m4_ifset): Use m4_ifval.
2094 * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Merge the two error
2095 messages when ac_unique_file is not found.
2096 (AC_CONFIG_MACRO_DIR): Simplify the `if' at the end.
2097 (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo
2098 commands, for consistency with AC_MSG_ERROR and such.
2100 * bin/autoconf.as: Make more use of "shift 2" in option processing.
2102 * bin/Makefile.am: Merge the two rules for creating scripts.
2104 2005-05-23 Stepan Kasal <kasal@ucw.cz>
2106 * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED): Make
2107 obsolete; it was never documented.
2108 (AC_CACHE_CHECK): Use AC_MSG_RESULT instead.
2110 2005-05-20 Stepan Kasal <kasal@ucw.cz>
2112 * NEWS: @top_builddir@ is now a dirname, ac_top_builddir will follow.
2113 * lib/autoconf/status.m4 (_AC_SRCDIRS): Rename ...
2114 (ac_top_builddir): ... this ...
2115 (ac_top_build_prefix): ... to this; the old name is also kept, for
2116 backward compatibility.
2117 (ac_top_builddir_sub): New variable, without the trailing slash,
2119 (_AC_OUTPUT_FILES): s/@top_builddir@/$ac_top_builddir_sub/
2120 * doc/autoconf.texi (Configuration Actions): Rename
2121 ac_top_builddir to ac_top_build_prefix.
2122 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Rename
2123 at_top_builddir to at_top_build_prefix.
2124 * lib/autotest/general.m4 (AT_INIT): Likewise.
2126 2005-05-20 Stepan Kasal <kasal@ucw.cz>
2128 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Simplify the init
2131 2005-05-17 Stepan Kasal <kasal@ucw.cz>
2133 * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't m4_quote the second
2134 argument to m4_foreach. I guess it was necessary in the past,
2135 but I think it's a no-op now.
2137 2005-05-17 Stepan Kasal <kasal@ucw.cz>
2139 * lib/autoconf/general.m4 (_AC_INIT_HELP): Merge two consecutive
2140 ``cat <<_ACEOF'' commands to one.
2141 (_AC_CANONICAL_SPLIT): Use expr, not ``echo|sed.''
2142 * lib/autoconf/status.m4: On various places, use expr instead of
2144 (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST):
2145 (_AC_CONFIG_SPLIT_FILE_IN): New macros, to factor out common code.
2146 * lib/autotest/general.m4 (AT_INIT): Use expr to get the numbers from
2148 * tests/local.at (AT_CHECK_SHELL_SYNTAX): Use awk to search for
2149 the wrong patterns between ``case'' and ``esac.'' The previous
2150 code had false positives.
2152 2005-05-14 Alexandre Duret-Lutz <adl@gnu.org>
2154 * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Prepend ${LIBOBJDIR},
2156 * doc/autoconf.texi (Particular Functions) <AC_FUNC_ALLOCA>:
2159 2005-05-13 Paul Eggert <eggert@cs.ucla.edu>
2161 * AUTHORS, BUGS, COPYING, ChangeLog, ChangeLog.0, ChangeLog.1,
2162 ChangeLog.2, GNUmakefile, HACKING, Makefile.am, Makefile.cfg,
2163 Makefile.maint, NEWS, README, README-alpha, TODO, configure.ac,
2164 bin/Makefile.am, bin/autoconf.as, bin/autoheader.in,
2165 bin/autom4te.in, bin/autoreconf.in, bin/autoscan.in,
2166 bin/autoupdate.in, bin/ifnames.in, config/Makefile.am,
2167 config/config.guess, config/config.sub, config/elisp-comp,
2168 config/m4.m4, config/mdate-sh, config/missing, config/texinfo.tex,
2169 doc/Makefile.am, doc/fdl.texi, lib/Makefile.am, lib/autom4te.in,
2170 lib/freeze.mk, lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
2171 lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
2172 lib/Autom4te/FileUtils.pm, lib/Autom4te/General.pm,
2173 lib/Autom4te/Request.pm, lib/Autom4te/Struct.pm,
2174 lib/Autom4te/XFile.pm, lib/autoconf/Makefile.am,
2175 lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
2176 lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
2177 lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
2178 lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
2179 lib/autoconf/general.m4, lib/autoconf/headers.m4,
2180 lib/autoconf/lang.m4, lib/autoconf/libs.m4,
2181 lib/autoconf/oldnames.m4, lib/autoconf/programs.m4,
2182 lib/autoconf/specific.m4, lib/autoconf/status.m4,
2183 lib/autoconf/types.m4, lib/autoscan/Makefile.am,
2184 lib/autoscan/autoscan.list, lib/autoscan/autoscan.pre,
2185 lib/autotest/Makefile.am, lib/autotest/autotest.m4,
2186 lib/autotest/general.m4, lib/emacs/Makefile.am,
2187 lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
2188 lib/m4sugar/Makefile.am, lib/m4sugar/m4sh.m4,
2189 lib/m4sugar/m4sugar.m4, man/Makefile.am, tests/Makefile.am,
2190 tests/atlocal.in, tests/autotest.at, tests/base.at, tests/c.at,
2191 tests/compile.at, tests/foreign.at, tests/fortran.at,
2192 tests/local.at, tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
2193 tests/semantics.at, tests/suite.at, tests/tools.at,
2194 tests/torture.at, tests/wrapper.as:
2195 Update FSF postal mail address.
2197 2005-05-13 Stepan Kasal <kasal@ucw.cz>
2199 * lib/autoconf/general.m4 (AC_CONFIG_LIBOBJ_DIR): Remove the broken
2201 * lib/m4sugar/m4sugar.m4 (m4_bmatch): Halt with error if we don't get
2202 enough arguments, similarly as in m4_bpatsubsts.
2204 2005-05-12 Stepan Kasal <kasal@ucw.cz>
2206 * lib/autoconf/status.m4 (_AC_SRCDIRS): Simplify the computation
2209 2005-05-11 Stepan Kasal <kasal@ucw.cz>
2211 * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Make the check
2212 for absolute directory names in one loop.
2213 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle
2214 abbreviations of --version and --debug.
2216 2005-05-10 Paul Eggert <eggert@cs.ucla.edu>
2218 * doc/autoconf.texi (Autoconf Language): Be more precise about
2219 quoting rules. Problems noted by Stepan Kasal.
2220 Also, throughout this document, be more careful about white space.
2221 "blank", "white space", and "space" all have different meanings
2222 and we should be careful to say what we mean.
2224 2005-05-05 Paul Eggert <eggert@cs.ucla.edu>
2226 Fix C++ related problems reported by Werner Lemberg.
2227 * doc/autoconf.texi (C++ Compiler): Mention .cpp extension.
2228 * lib/autoconf/c.m4 (AC_LANG(C++)): Set ac_ext to .cpp, not .cc.
2229 * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Simplify test, to
2230 avoid problems with C++ and throw.
2231 * tests/compile.at: .cpp, not .cc.
2233 * tests/semantics.at: Prepend LIBOBJDIR, as per 2005-05-02 change.
2235 2005-05-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2237 * doc/autoconf.texi (Generic Functions): Typos.
2239 2005-05-02 Gary V. Vaughan <gary@gnu.org>
2241 * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Prepend each
2242 object named in LIBOBJS and LTLIBOBJS with the ${LIBOBJDIR}, as
2243 set by latest automake.
2245 2005-05-01 Paul Eggert <eggert@cs.ucla.edu>
2247 * doc/autoconf.texi (Limitations of Usual Tools): "expr '' \| ''"
2248 outputs 0 on GNU/Linux these days.
2250 2005-04-29 Paul Eggert <eggert@cs.ucla.edu>
2252 * doc/autoconf.texi (Autoconf Language): Add more description
2253 about quoting heuristics.
2254 (Limitations of Builtins): Describe "set -" problems.
2256 2005-04-29 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2258 * lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
2261 * doc/autoconf.texi (External Software): Replace AC_DEFINE_UNQUOTED
2262 by AC_DEFINE; it was a mistake.
2263 From bug reported against libtool by Dalibor Topic <robilad@kaffe.org>.
2265 2005-04-25 Stepan Kasal <kasal@ucw.cz>
2267 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): A tiny optimization.
2269 2005-04-22 Stepan Kasal <kasal@ucw.cz>
2271 * doc/autoconf.texi (External Software): Quadrigraphs are not
2272 processed correctly in AS_HELP_STRING; avoid this in the examples.
2273 * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Add a FIXME about quadrigraphs.
2274 * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Likewise; and rephrase the
2275 comment and reduce m4_default([foo], []) to [foo].
2276 (m4_strip): Update the explanation.
2278 2005-04-19 Paul Eggert <eggert@cs.ucla.edu>
2280 * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
2281 Remove core.conftest.* too; it's generated by Tru64 5.1.
2282 Problem reported by Jennis Pruett.
2283 * lib/autoconf/functions.m4
2284 (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
2285 Don't bother to remove core files; AC_RUN_IFELSE should do that
2288 2005-04-19 Stepan Kasal <kasal@ucw.cz>
2290 * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Add the b- to comment, too.
2292 2005-04-19 Alexandre Duret-Lutz <adl@gnu.org>
2294 * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle --docdir.
2295 Report from Horst Wente.
2297 2005-04-15 Stepan Kasal <kasal@ucw.cz>
2299 * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Fixed a typo in
2302 2005-04-14 Gregorio Guidi <greg_g@gentoo.org>
2304 * doc/autoconf.texi (External Software, Package Options): Add
2305 examples showing how to implement --with-* and --enable-* options.
2307 2005-04-13 Paul Eggert <eggert@cs.ucla.edu>
2309 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
2310 as well as configure.in. Problem reported by Gregorio Guidi.
2312 2005-04-10 Paul Eggert <eggert@cs.ucla.edu>
2314 * doc/autoconf.texi (Particular Functions): Use gnulib's current
2315 pattern for alloca snippet.
2317 2005-04-04 Stepan Kasal <kasal@ucw.cz>
2319 * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix a typo.
2321 2005-04-01 Stepan Kasal <kasal@ucw.cz>
2323 * doc/autoconf.texi (Generic Programs): Fix a typo.
2325 2005-04-01 Paul Eggert <eggert@cs.ucla.edu>
2327 * lib/autotest/general.m4 (AT_INIT): Don't assume that "date +%s"
2328 fails if %s isn't supported. Problem reported by Ralf Wildenhues.
2330 2005-03-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2332 * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS):
2333 Merge `-z option' as well for the benefit of Solaris link flags. Pass
2334 whole-archive (-zallextract, -zdefaultextract) options in the hope of
2335 unique libraries, for the Sun Fortran 95 8.0 compiler. Bug reported
2336 against Libtool by Yury Puhalsky <pooh@cryptopro.ru>.
2338 2005-03-22 Paul Eggert <eggert@cs.ucla.edu>
2340 * NEWS: The configure command now warns you if you attempt to use
2341 a directory whose name contains a special character like space,
2343 * doc/autoconf.texi (Installation Directory Variables): Allow
2344 "," in file names. Do not use \@; it's not a portable regexp.
2345 * bin/Makefile.am (edit): Likewise.
2346 * lib/Makefile.am (edit): Likewise.
2347 * tests/Makefile.am (edit): Likewise.
2348 * tests/semantics.at: Likewise.
2349 * tests/torture.at: Likewise.
2350 * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Likewise.
2351 * lib/autoconf/status.m4 (_AC_SRCDIRS): Likewise.
2352 * doc/autoconf.texi (File System Conventions): Warn about
2353 unportable file names.
2354 * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): New macro.
2356 (_AC_INIT_SRCDIR): Use ac_pwd rather than invoking pwd.
2357 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Propagate
2358 ac_pwd, and quote srcdir.
2359 * lib/autotest/general.m4 (AT_INIT): Quote file name args.
2361 * doc/autoconf.texi: Fix some systematic formatting problems.
2362 ".)" needs a following @: if not at the end of a sentence, and
2363 similarly for "!)". "etc." should be preceded by a comma.
2364 "n-th" -> "@var{n}th". pdksh is still buggy, so update its date.
2366 2005-03-22 Bruno Haible <bruno@clisp.org>
2368 * doc/autoconf.texi (Input): Mention that AC_CONFIG_AUX_DIR's
2369 argument is often called 'build-aux'.
2371 2005-03-07 Stepan Kasal <kasal@ucw.cz>
2373 * doc/autoconf.texi (Quotation Rule Of Thumb): Mention that the
2374 macro AC_TRY_LINK is obsolete.
2375 (Installation Directory Variables): Change `AC_OUTPUT_FILES' to
2378 2005-02-24 Stepan Kasal <kasal@ucw.cz>
2380 * lib/autoconf/c.m4 (AC_PROG_CC): Be more careful to skip
2381 `/usr/ucb/cc'; use `cl.exe' to distinguish the MS compiler
2382 from a Common Lisp's `cl'.
2383 (AC_PROG_CXX): Behave according to the documentation: don't
2384 search for $ac_tool_prefix$CCC and $CCC, just set CXX=$CCC;
2385 make the variable CCC precious; use `cl.exe', not `cl'.
2387 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
2388 Alexandre Duret-Lutz <adl@gnu.org>
2390 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin from
2391 /dev/null, as "configure" shouldn't read stdin, and this insulates
2392 us from problems (e.g., when testing for "cl"). Also, do this
2393 redirection before invoking "hostname" or "uname", and keep the
2394 original input stream available via...
2395 (AS_ORIGINAL_STDIN_FD): ... this new macro.
2396 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't
2397 bother with "</dev/null" since it's now done at the top of
2399 * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Likewise.
2400 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2401 * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
2402 * doc/autoconf.texi (File Descriptor Macros): New section.
2403 (Printing Messages): Mention it.
2404 * tests/base.at (Input/Output): New test.
2406 2005-02-23 Paul Eggert <eggert@cs.ucla.edu>
2408 * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Don't set ECHO_C to
2409 newline if neither \c nor -n work, as that would output two
2410 newlines. Prefer -n to \c. Reported by Stepan Kasal.
2412 2005-02-12 Stepan Kasal <kasal@ucw.cz>
2414 * lib/m4sugar/m4sh.m4 (AS_IF): Define by m4_defun, not m4_define.
2415 This causes that any required macros inside will get before the if.
2416 * doc/autoconf.texi (autom4te.cache): A typo.
2418 2005-02-12 Paul Eggert <eggert@cs.ucla.edu>
2420 Undo previous change, except keep the change to
2421 lib/autoconf/programs.m4 that replaced grep with shell
2422 pattern-matching. This is because net-snmp configure reads stdin.
2423 Reported by Noah Misch.
2425 2005-02-11 Paul Eggert <eggert@cs.ucla.edu>
2427 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin
2428 from /dev/null, as "configure" shouldn't read stdin, and this
2429 insulates us from problems (e.g., when testing for "cl").
2430 Suggested by Alexandre Duret-Lutz. Also, do this redirection
2431 before invoking "hostname" or "uname".
2432 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
2433 _AC_LINK_IFELSE): Undo previous change, as it's no longer needed.
2434 * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Don't bother with
2435 "</dev/null" since it's now done at the top of 'configure'.
2436 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2437 * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
2438 Also, replace grep with shell pattern-matching, to save a process.
2440 2005-02-10 Paul Eggert <eggert@cs.ucla.edu>
2442 * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
2443 _AC_LINK_IFELSE): Redirect stdin to /dev/null, in an attempt to
2444 avoid thinking that Allegro Common Lisp's "cl" command is a C++
2447 2005-02-09 Paul Eggert <eggert@cs.ucla.edu>
2449 * doc/autoconf.texi (Limitations of Usual Tools): Document that
2450 grep -q isn't portable. Improve grep -s explanation.
2451 Problem reported by Dan Manthey.
2453 2005-02-08 Paul Eggert <eggert@cs.ucla.edu>
2455 * doc/autoconf.texi (Special Shell Variables): Clarify
2456 PATH_SEPARATOR wording; fix typo in IFS. Reported by Gary V. Vaughan.
2458 2005-02-07 Paul Eggert <eggert@cs.ucla.edu>
2460 * doc/autoconf.texi: Use @acronym for DJGPP.
2461 Fix some @code's that should have been @env's, and vice versa.
2462 Sort environment variable names.
2463 Mention that shells no longer inherit IFS.
2464 Don't recommend PATH_SEPARATOR=';' so strongly.
2465 Mention that $RANDOM might expand to the empty string.
2466 "symlink" and "soft link" -> "symbolic link".
2467 Improve mktemp description (reported by Bruno Haible).
2469 2005-02-05 Paul Eggert <eggert@cs.ucla.edu>
2471 * tests/foreign.at (Libtool): Don't overquote AT_SETUP arg.
2472 * tests/m4sh.at (AS_DIRNAME, AS_BASENAME, AS_MKDIR_P, AS_HELP_STRING):
2474 * tests/semantics.at (AC_C_BIGENDIAN, AC_PATH_PROG & AC_PATH_PROGS):
2477 2005-02-04 Paul Eggert <eggert@cs.ucla.edu>
2479 * NEWS: Mention AT_COPYRIGHT.
2481 * tests/local.at (AT_CMP): Use diff directly on input files rather
2484 * lib/autoconf/programs.m4 (AC_PROG_SED): Don't look in
2485 /usr/xpg4/bin since that sed dumps core (at least on Solaris 8).
2487 2005-02-04 Noah Misch <noah@cs.caltech.edu>
2488 and Paul Eggert <eggert@cs.ucla.edu>
2490 * tests/autotest.at (Empty test suite): New test.
2491 * tests/torture.at (Substitute and define special characters)
2492 (Substitute a 2000-byte string, Define to a 2000-byte string)
2493 (Substitute a newline, Define a newline): New tests.
2495 2005-02-04 Noah Misch <noah@cs.caltech.edu>
2497 * lib/m4sugar/m4sugar.m4 (m4_re_string, m4_re_word): Revert 2002-03-04.
2498 * tests/local.at (AT_CHECK_M4SUGAR): Add `m4sugar' to keywords.
2499 (AT_CHECK_ENV): Ignore LTLIBOBJS, FC variables, EGREP, FGREP, and SED.
2500 * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, AT_CHECK_M4RE): New macros.
2501 (Standard regular expressions): New test.
2502 (m4_warn, m4_require: circular dependencies, m4_text_wrap): Strip
2503 excess test name quoting.
2504 * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADERS_NEW): Pass
2505 CPPFLAGS to `configure' instead of setting it in `configure'.
2507 * lib/m4sugar/m4sh.m4 (AS_UNAME): Try only /usr/bin/hostinfo, not
2508 any `hostinfo' in $PATH, since hostinfo.exe is a popular file name
2511 * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_FC_SRCEXT):
2512 s/FC_SRCEXT/ac_fc_srcext/; s/FCFLAGS_SRCEXT/ac_fcflags_srcext/.
2514 * tests/local.at (AT_CMP): New macro.
2515 (AT_DATA_AUTOCONF): Do not call AC_PROG_GREP.
2516 (AC_SAVE_STATE): Move environment grep...
2517 (AT_CHECK_ENV): to here. Filter out `'$''. Use AT_CMP.
2518 (AT_CONFIG_CMP): New macro.
2519 (AT_CHECK_MACRO): Run `configure' twice with cache and compare results.
2520 * tests/c.at (Extensions): Do not exit early.
2521 * tests/atlocal.in: Inherit $GREP.
2523 * lib/autoconf/c.m4 (_AC_C_STD_TRY): New macro.
2524 (_AC_PROG_CC_C89, _AC_PROG_CC_C99): Use it.
2526 * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Update for 2005.
2527 (AC_COPYRIGHT): Factor header comment portion out and move into...
2528 * lib/m4sugar/m4sh.m4 (AS_COPYRIGHT): This.
2529 * lib/autotest/general.at (AT_COPYRIGHT): New macro.
2530 (AT_INIT): Add Autotest copyright notice. Display copyright notices in
2532 * tests/local.at: Add Autoconf test suite copyright notice.
2533 * doc/autoconf.texi (Writing testsuite.at): Document AT_COPYRIGHT.
2535 2005-02-04 Bruno Haible <bruno@clisp.org>
2536 and Paul Eggert <eggert@cs.ucla.edu>
2538 * doc/autoconf.texi (Limitations of Usual Tools): New mkstemp entry.
2540 2005-02-03 Paul Eggert <eggert@cs.ucla.edu>
2542 * lib/m4sugar/m4sugar.m4 (m4_re_escape): Escape ?, ^, \, $ too;
2543 this fixes a bug tickled by the AT_CAPTURE_FILE change noted below.
2545 Try not to generated lines of unlimited length, as POSIX places a
2546 2047-byte limit on line length of portable text files.
2547 * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILE):
2548 Use newline as a separator, not space.
2549 * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Likewise.
2550 (AT_CAPTURE_FILE): Use space-backslash-newline as a separator, not
2553 2005-02-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2555 * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Move func_* to
2556 as_func_*. Add test to check whether positional parameters
2557 are restored after function return.
2559 2005-02-02 Paul Eggert <eggert@cs.ucla.edu>
2561 * doc/autoconf.texi (Special Shell Variables): Mention _,
2562 BIN_SH, DUALCASE. Say that variables other than "status" are safe
2563 if they contain a lower-case letter. The DUALCASE problem was
2564 reported by Ralf Wildenhues.
2566 * bin/autoconf.as: Don't exit with status 0 after write failure
2567 with --help or --version.
2568 * lib/autoconf/general.m4 (_AC_INIT_HELP, _AC_INIT_VERSION): Likewise.
2569 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
2571 2005-02-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2573 * doc/autoconf.texi (Limitations of Usual Tools):
2574 Unicos 9 sed limitations.
2575 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Try cf77 before fort77
2576 to get the option-enhanced interface on older Crays. Try ftn for
2577 Fortran 95 (newer Crays).
2579 2005-02-01 Paul Eggert <eggert@cs.ucla.edu>
2581 * man/Makefile.am (.x.1): Go back to the simple solution, but take
2582 care to echo the commands, so the user knows what's going on.
2583 Modified from a suggestion by Stepan Kasal.
2585 * doc/autoconf.texi (autoreconf Invocation): Mention autopoint,
2586 with a cross reference. Derived from a suggestion by Bruce Korb.
2588 2005-01-31 Paul Eggert <eggert@cs.ucla.edu>
2590 * doc/autoconf.texi (config.status Invocation): Warn about
2591 discrepancy between CONFIG_SHELL and shell used to invoke 'configure'.
2592 * doc/install.texi (Defining Variables): Likewise.
2593 Based on a proposed patch by Ralf Wildenhues.
2595 * man/Makefile.am (.x.1): Make sure the required generated files
2596 are up to date. Problem and original solution proposed by Stepan Kasal.
2597 $(dist_man_MANS:.1=-bin-prereq), $(dist_man_MANS:.1=-tests-prereq),
2598 implicit-man-prerequisites): New rules, used by the above.
2600 * doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
2601 * config/config.guess, config/config.sub, config/install-sh: Likewise.
2602 * config/missing, config/texinfo.tex: Likewise.
2604 2005-01-29 Stepan Kasal <kasal@ucw.cz>
2606 Simplify the implementation of m4_require (a.k.a. AC_REQUIRE).
2607 Update the long comment explaining it.
2609 m4_require no longer writes an ``is required by'' line to the
2610 execution stack. It contains only one bit of non-redundant
2611 information: that the macro was required, not called. And even
2612 this bit is useless in most situations: have you ever met a macro
2613 which both calls and requires the same macro?
2615 * lib/m4sugar/m4sugar.m4 (_m4_defun_pro): Don't push a diversion...
2616 (_m4_defun_pro_outer): ... only via this macro, for the outermost
2618 (_m4_defun_epi, _m4_defun_epi_outer): Complementarily.
2619 (m4_expansion_stack_pop): Remove the misplaced comment.
2620 (m4_require): Don't put the ``is required by'' line to the
2621 execution stack; slightly improve the out-of-a-defun error message.
2622 (_m4_divert_grow): New macro, counter for the temporary diversions.
2623 (_m4_require_call): Use it.
2624 * tests/m4sugar.at (m4_require): Expect output without the
2625 ``is required by'' messages.
2627 2005-01-28 Paul Eggert <eggert@cs.ucla.edu>
2629 * doc/autoconf.texi (Limitations of Usual Tools): Recommend X
2630 rather than x for expr.
2632 * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT): Avoid subshells when
2634 * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): Likewise.
2635 * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
2636 * lib/autotest/general.m4 (AT_INIT): Likewise.
2637 * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Likewise.
2638 * tests/mktests.sh: Likewise.
2640 2005-01-27 Akim Demaille <akim@epita.fr>
2642 Have autoheader honor --force.
2644 * doc/make-stds.texi, doc/standards.texi: Update from masters.
2645 * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm
2646 * lib/Autom4te/FileUtils.pm, lib/Autom4te/XFile.pm: Update
2647 from masters, so that FileUtils.pm's update_file provide --force
2649 * bin/autoheader.in: Pass $force to update_file so that
2650 config.h.in is always recreated when --force.
2652 2005-01-24 Stepan Kasal <kasal@ucw.cz>
2654 * doc/autoconf.texi (Introduction): Update Peter Simons' address.
2656 2005-01-21 Paul Eggert <eggert@cs.ucla.edu>
2658 * doc/autoconf.texi (Limitations of Builtins): Clarify that
2659 "if test ! -d foo; ..." is portable. Suggested by Stepan Kasal.
2661 2005-01-20 Paul Eggert <eggert@cs.ucla.edu>
2663 * doc/autoconf.texi (Shell Substitutions): Fix typo in case statement.
2664 Warn about newline stripping in `` and $(). Update Solaris
2666 (Limitations of Builtins): Use expr "X...", not expr "x...", as
2667 X insulates us from future changes to Posix.
2668 (Limitations of Usual Tools): For AS_DIRNAME, warn about newline
2671 2005-01-19 Stepan Kasal <kasal@ucw.cz>
2673 * doc/autoconf.texi (Defining Symbols): Delete the false comment that
2674 you cannot use AC_DEFINE to define macros containing `[' or `]'.
2676 2005-01-13 Paul Eggert <eggert@cs.ucla.edu>
2678 * doc/autoconf.texi (Limitations of Usual Tools): Document bug
2679 in Solaris 8 join. Problem reported by Tomohiro Suzuki on
2680 bug-tar mailing list.
2682 2005-01-05 Stepan Kasal <kasal@ucw.cz>
2684 * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
2686 2005-01-05 Paul Eggert <eggert@cs.ucla.edu>
2688 * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
2689 ulongval to be static, to avoid unwanted GCC warning. Problem
2690 reported by Michael Jennings via Daniel Reed; see
2691 <https://bugzilla.redhat.com/beta/show_bug.cgi?id=143852>.
2693 2005-01-05 Alexandre Duret-Lutz <adl@gnu.org>
2695 * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Define datarootdir,
2696 docdir, htmldir, dvidir, pdfdir, psdir, and localdir. Update
2697 datadir, infodir, and mandir. Adjust argument parsing code.
2698 (_AC_INIT_HELP): Update help text.
2699 * doc/autoconf.texi (Installation Directory Variables): Document
2702 2005-01-04 Noah Misch <noah@cs.caltech.edu>
2704 * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): If the Make program does
2705 not seem to work, assume it does set $(MAKE).
2706 * doc/autoconf.texi (AC_PROG_MAKE_SET): Update.
2708 2005-01-03 Stepan Kasal <kasal@ucw.cz>
2710 * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Add a comment about nesting.
2712 2005-01-03 Stepan Kasal <kasal@ucw.cz>
2714 A cleanup of the diversion support in m4sugar.
2716 * lib/m4sugar/m4sugar.m4 (_m4_divert): A typo in description.
2717 (_m4_divert_n_stack): New macro; the expansion is
2718 <newline>m4_divert_stack, if m4_divert_stack is defined, and void
2720 (m4_divert, m4_divert_push, m4_divert_pop, m4_init): Use it.
2721 (m4_divert_push, m4_divert_pop, _m4_defun_epi): Don't expand the word
2722 stored in _m4_divert_diversion or _m4_divert_dump.
2723 (m4_divert_pop): When the parameter is given, compare the symbolic
2724 name with the last diversion pushed on the stack. Previously, the
2725 current diversion was compared with the numeric value of the
2726 diversion given as the parameter.
2727 (m4_require): If the macro hasn't been expanded yet, call ...
2728 (_m4_require_call): this new macro.
2730 2005-01-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2732 * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_ARG_VAR_VALIDATE):
2733 Workarounds for documented `case' limitations.
2735 2005-01-03 Paul Eggert <eggert@cs.ucla.edu>
2737 * doc/autoconf.texi (Limitations of Usual Tools): Warn about
2738 sed 'command1;command2'. Problem reported by Ralf Wildenhues.
2740 2005-01-02 Paul Eggert <eggert@cs.ucla.edu>
2742 * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
2743 bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
2744 bin/ifnames.in, tests/mktests.sh: Update copyright date to 2005.
2746 Patch from Roger Leigh (with some minor changes) as follows:
2747 * NEWS: New macros AC_PROG_CC_C89, AC_PROG_CC_C99.
2748 Resurrect AC_PROG_CC_STDC.
2749 * doc/autoconf.texi (C Compiler): Add AC_PROG_CC_STDC,
2750 AC_PROG_CC_C89, AC_PROG_CC_C99.
2751 (Obsolete Macros): Remove AC_PROG_CC_STDC; it's no longer obsolete.
2752 * lib/autoconf/c.m4 (_AC_PROG_CC_C89, _AC_PROG_CC_C99, AC_PROG_CC_C89,
2753 AC_PROG_CC_C99): New macros.
2754 (AC_PROG_CC_STDC): Use them.
2755 (_AC_PROG_CC_STDC): Remove.
2756 (AC_C_PROTOTYPES): Use ac_cv_prog_cc_c89, not ac_cv_prog_cc_stdc.
2757 * THANKS: Add Roger Leigh.
2759 2004-12-30 Noah Misch <noah@cs.caltech.edu>
2761 * bin/autoreconf.in (autoreconf_current_directory): AM_INIT_AUTOMAKE
2762 signals that the package uses Automake; a `Makefile.am' is typical but
2763 not essential. Reported by Magnus Therning.
2764 * tests/torture.at (autoreconf.): New banner.
2765 (autoreconf and non-AC configure): Rename to `Non-Autoconf
2767 (autoreconf an empty directory): Rename to `Empty directory'.
2768 (Unusual Automake input files): New test.
2770 2004-12-30 Noah Misch <noah@cs.caltech.edu>
2772 * lib/autotest/general.m4 (AT_CAPTURE_FILE): New macro.
2773 (AT_SETUP): Clear AT_capture_files.
2774 (_AT_CHECK): On failure, log each of AT_capture_files. Fix comment.
2775 (AT_KEYWORDS): Fix comment typo.
2776 * tests/autotest.at (AT_CHECK_AT): Use AT_CAPTURE_FILE.
2777 * tests/local.at (AT_CHECK_CONFIGURE): Use AT_CAPTURE_FILE.
2778 * doc/autoconf.texi (Writing testsuite.at): Document AT_CAPTURE_FILE.
2780 2004-12-29 Albert Chin-A-Young <china@thewrittenword.com>
2782 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
2783 If the variable to set is already set, set ac_cv_path_$1
2784 to the preset value so caller can assume ac_cv_path_$1
2785 is available. (trivial change)
2787 2004-12-27 Noah Misch <noah@cs.caltech.edu>
2789 * BUGS (Minor Problems): Warn about makefile limitations.
2790 * Makefile.am: Find and update `INSTALL' in $(srcdir).
2791 * man/Makefile.am: Find and update manual pages in $(srcdir).
2793 2004-12-24 Eric Blake <ebb9@byu.net>
2795 * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Test candidate
2796 shells in subshell, to avoid noise from ash. (trivial change)
2798 2004-12-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2800 * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
2801 problems with SunOS ksh and backslash escaping, Bourne shells and
2802 closing brackets (both within character classes). Bug reported
2803 against Libtool by Alexander Kurz <alexander.kurz@qsc.de>.
2804 <read>: New entry. Mention non-availability of -r.
2806 2004-12-21 Akim Demaille <akim@epita.fr>
2808 * lib/autotest/general.m4 (AT_LINE): Don't add srcdir here, to
2809 avoid cluttering displayed messages. Rather, prepend srcdir where
2810 AT_LINE is used for log files.
2812 2004-12-21 Stepan Kasal <kasal@ucw.cz>
2814 * lib/autoconf/status.m4: Quote ``$tmp'' in many places.
2815 * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Fix the comment, as traps are
2816 no longer part of the macro, quote the occurrence of ``$tmp''.
2817 * doc/autoconf.texi (Forbidden Patterns): Typo.
2819 2004-12-21 Akim Demaille <akim@epita.fr>
2821 * lib/autotest/general.m4 (AT_INIT): Make sure the "ok" etc. are
2822 separated from the test title by forcing a white space.
2824 2004-12-21 Akim Demaille <akim@epita.fr>
2826 Enable Emacs navigation within testsuite.log files.
2828 * lib/autotest/general.m4 (AT_CLEANUP): Add an hint for Emacs to
2829 use the compilation mode.
2830 (AT_LINE): Point to the srcdir.
2832 2004-12-19 Noah Misch <noah@cs.caltech.edu>
2834 * tests/Makefile.am (installcheck-local): Use $(bindir).
2835 (check-local, installcheck-local): Pass TESTSUITEFLAGS.
2836 * doc/autoconf.texi (Making testsuite Scripts): Recommend the same
2837 Makefile.am scheme Autoconf now uses.
2839 2004-12-18 Noah Misch <noah@cs.caltech.edu>
2841 * lib/m4sugar/m4sugar.m4 (m4_qlen, m4_qdelta): New macros.
2842 * lib/autotest/general.m4 (AT_SETUP): Use m4_qdelta.
2844 2004-12-18 Noah Misch <noah@cs.caltech.edu>
2846 * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): New macro.
2847 (_AT_CHECK): Use it.
2848 * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): Remove.
2849 (AS_ESCAPE): Fix comment.
2850 * tests/autotest.at: Adjust section banner comments.
2851 (AT_CHECK_AT): Accept STATUS and STDERR.
2852 (AT_CHECK_AT_TEST): Likewise.
2853 (Invalid brace-enclosed parameter expansion)
2854 (Multiline command from M4 expansion)
2855 (Double-M4-quoted command): New tests.
2857 2004-12-17 Paul Eggert <eggert@cs.ucla.edu>
2859 * doc/autoconf.texi: Update GNU FDL version from 1.1 to 1.2.
2861 2004-12-17 Akim Demaille <akim@epita.fr>
2863 * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILES): Pass $1 to
2865 Suggested by Alexandre Duret-Lutz.
2866 * doc/autoconf.texi (Setting Output Variables): Catch up.
2868 2004-12-17 Stepan Kasal <kasal@ucw.cz>
2870 * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix comment.
2872 2004-12-17 Stepan Kasal <kasal@ucw.cz>
2874 * lib/autoconf/general.m4 (_AC_LIBOBJ): We can use AC_SUBST/2,
2875 remove the comment which said we cannot.
2877 2004-12-17 Stepan Kasal <kasal@ucw.cz>
2879 Add a specialized check for resolv.h. Thanks to Gerrit P. Haase,
2880 Reini Urban and Paul Eggert for reporting the dependencies.
2882 * lib/autoconf/headers.m4 (AC_HEADER_RESOLV): New macro.
2883 * doc/autoconf.texi (AC_HEADER_RESOLV): Document it.
2884 (AC_HEADER_STAT): @cvindex{STAT_MACROS_BROKEN}, not @acindex.
2886 2004-12-17 Stepan Kasal <kasal@ucw.cz>
2888 * bin/autoscan.in: Open autoscan.log only after ``parse_args'';
2889 so that eg. ``autoscan --help'' doesn't truncate it.
2891 2004-12-15 Nicolas Joly <njoly@pasteur.fr>
2893 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
2894 generated conftest files.
2896 2004-12-13 Noah Misch <noah@cs.caltech.edu>
2898 * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Do not enable shell
2899 tracing on commands with possibly-escaped newlines.
2900 * doc/autoconf.texi (Writing testsuite.at): Delete documentation of the
2901 discontinued behavior and its implications.
2902 * tests/autotest.at (BS-newline in command, ^BS-newline in command)
2903 (BSx641-newline in command, BS-BS-newline in command)
2904 (BSx640-newline in command, Newline-CODE-BS-newline in command)
2905 (Single-quote-BS-newline in command)
2906 (Single-quote-newline-BS-newline in command): New tests.
2908 2004-12-13 Stepan Kasal <kasal@ucw.cz>
2910 * lib/m4sugar/m4sh.m4 (AS_EXECUTABLE_P): Use test -f && test -x
2911 on platforms where it works.
2912 (_AS_TEST_PREPARE): Test for ``test -x''.
2913 (_AS_BROKEN_TEST_PREPARE): Nuke.
2915 2004-12-13 Stepan Kasal <kasal@ucw.cz>
2917 * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Move the trap commands ...
2918 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): ... here;
2919 give only 4-letter prefix to AS_TMPDIR, comment fixed.
2920 * lib/autoconf/programs.m4 (_AC_PATH_PROG_FEATURE_CHECK): Don't
2921 create the temporary directory.
2922 (_AC_FEATURE_CHECK_LENGTH): Work in current directory.
2924 2004-12-12 Kelley Cook <kcook@gcc.gnu.org>
2926 * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found.
2929 2004-12-12 Alexandre Duret-Lutz <adl@gnu.org>
2931 * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>: Typo.
2933 2004-12-11 Noah Misch <noah@cs.caltech.edu>
2935 * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Rework a shell pattern
2936 to avoid using a negated character class. Reported by Nicolas Joly.
2937 * tests/local.at (AT_CHECK_SHELL_SYNTAX): Check for similar constructs.
2939 2004-12-10 Paul Eggert <eggert@cs.ucla.edu>
2941 * man/Makefile.am (autoconf.1, autoheader.1, autom4te.1, autoreconf.1,
2942 autoscan.1, autoupdate.1, ifnames.1, config.guess.1, config.sub.1):
2943 Don't depend on .x file explicitly, since "make" does that for us.
2944 Suggested by Stepan Kasal.
2946 * bin/Makefile.am (MOSTLYCLEANFILES): Renamed from CLEANFILES.
2948 (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate,
2949 ifnames): Factor common code. And they said it couldn't be done!
2951 2004-12-09 Paul Eggert <eggert@cs.ucla.edu>
2953 * bin/.cvsignore: Add autoconf.in.
2954 * tests/.cvsignore: Add wrapper.in.
2955 * lib/autotest/general.m4: Escape '$' in case pattern.
2957 2004-12-09 Noah Misch <noah@cs.caltech.edu>
2959 * man/Makefile.am (autoconf.1): Regenerate when `autoconf.as' changes.
2961 * lib/autotest/general.m4 [--trace] (AT_INIT): Do not `set -v'.
2963 * tests/autotest.at: New file.
2964 * tests/suite.at: Include it.
2965 * tests/Makefile.am: Distribute it.
2967 * lib/autotest/general.m4 [--trace] (_AT_CHECK): Do not enable
2968 shell tracing on a command that could contain multiple lines.
2969 * doc/autoconf.text: Document that fact and its implications.
2970 * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): New macro.
2971 * tests/autotest.at (Multiline backquote command substitution,
2972 Multiline parameter expansion, Literal multiline command,
2973 Multiline parenthetical command substitution): Remove XFAIL.
2975 2004-12-09 Paul Eggert <eggert@cs.ucla.edu>
2977 * doc/autoconf.texi (Libraries): Clarify problems with AC_CHECK_LIB
2978 and suggest AC_SEARCH_LIBS. Suggested by Noah Misch and Stepan Kasal.
2980 2004-12-08 Noah Misch <noah@cs.caltech.edu>
2982 * configure.ac (test suite): Cease to generate wrapper scripts.
2983 * configure: Regenerate.
2984 * lib/freeze.mk (MY_AUTOM4TE): Wrap the uninstalled autom4te directly.
2985 (m4f_dependencies): Adjust accordingly.
2986 * tests/Makefile.am (Wrappers): Generate wrapper scripts.
2987 (wrapper.in): Generate it in the build directory.
2988 (MAINTAINERCLEANFILES): Delete wrapper.in.
2989 (CLEANFILES): Add wrapper.in.
2990 * tests/wrapper.as: Move AS_INIT to very top, preserving copyright in
2991 the output. Replace each $as_me with a @wrap_program@.
2992 * tests/wrapper.in: Delete it; we always build it.
2994 * bin/Makefile.am (autoconf.in): Generate it in the build directory.
2995 (EXTRA_DIST): Remove autoconf.in.
2996 (CLEANFILES): Add autoconf.in.
2997 (autoconf): Find autoconf.in in the build directory.
2998 * bin/autoconf.in: Delete it; we always build it.
3000 2004-12-08 Noah Misch <noah@cs.caltech.edu>
3002 * lib/autotest/general.m4 (AT_INIT): Replace a `tr' with a `sed'. Join
3003 PATH members so as to not prepend an empty element. Move a comment.
3004 * Makefile.am (SUBDIRS): Build in `tests' last.
3005 * tests/Makefile.am (installcheck-local): Add check-local dependencies.
3007 2004-12-08 Paul Eggert <eggert@cs.ucla.edu>
3009 * lib/mdate-sh: Don't use "set - x`$ls_command /`", as zsh mishandles
3010 the spaces inside $ls_command. Problem reported by Loulou Pouchet in
3011 <http://lists.gnu.org/archive/html/autoconf/2004-12/msg00074.html>.
3012 Don't use "set - x"; plain "set x" is enough, and simplifies debugging.
3014 2004-12-07 Stepan Kasal <kasal@ucw.cz>
3016 * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Fix typo in previous
3019 2004-12-06 Paul Eggert <eggert@cs.ucla.edu>
3021 * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Check libc before
3022 looking elsewhere for getmntent. Problem reported by Mark D. Baushke.
3023 * doc/autoconf.texi (Particular Functions): Mention new behavior.
3025 2004-12-03 Stepan Kasal <kasal@ucw.cz>
3027 * lib/autoconf/general.m4 (AC_DEFINE, AC_DEFINE_UNQUOTED): Factor
3028 out the common code to ...
3029 (_AC_DEFINE_Q): ... a new macro; simplify the condition about the
3030 value of the #define--default to 1, iff the macro was called
3031 with exactly one parameter.
3033 2004-12-02 Paul Eggert <eggert@cs.ucla.edu>
3035 * lib/autoconf/functions.m4 (AC_FUNC_MEMCMP): Use
3036 "char c = '\200';" rather than "char c = 0x80;" as the
3037 latter doesn't conform to the strict C standard due to
3038 overflow on signed char hosts.
3040 * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Prefer -qlanglvl=extc89
3041 to -qlanglvl=ansi. We don't want to disable extensions.
3043 2004-11-29 Paul Eggert <eggert@cs.ucla.edu>
3045 * doc/autoconf.texi (Particular Programs): @code{$PATH} -> @env{PATH}.
3046 (Using Autotest, testsuite Scripts, Writing testsuite.at):
3047 Reword slightly to avoid some English-language problems noted
3048 by Ralf Wildenhues in:
3049 http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00027.html
3051 2004-11-29 Stepan Kasal <kasal@ucw.cz>
3053 * NEWS: Add ^L above each release.
3055 2004-11-28 Paul Eggert <eggert@cs.ucla.edu>
3057 Fix documentation problems reported by Russ Boylan in
3058 <http://lists.gnu.org/archive/html/bug-autoconf/2004-11/msg00056.html>,
3059 along with some nearby cruft.
3060 * doc/autoconf.texi (Libtool): Libtool can be used without
3061 Automake (not without Autoconf).
3062 (Introduction): Mention lists.gnu.org.
3063 * BUGS: Don't mention bugs.gnu.org.
3064 Remove mention of ancient libtool compatibility problem.
3065 * NEWS: Mention that bugs.gnu.org is kaput.
3066 * README: Likewise. Mention where mailing list archives can be found.
3068 2004-11-28 Stepan Kasal <kasal@ucw.cz>
3070 * HACKING: Refer to "coreutils", not "File, Shell or Text utils".
3071 * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): A typo in the comment.
3073 2004-11-26 Paul Eggert <eggert@cs.ucla.edu>
3075 * doc/autoconf.texi (Pretty Help Strings): Go back to
3076 single-quoting assignments to cache variables.
3078 2004-11-23 Stepan Kasal <kasal@ucw.cz>
3080 * doc/autoconf.texi (Pretty Help Strings): Fix quoting issues
3081 with the examples; fix the bug in MY_ARG_WITH example reported
3082 by Alexandre Duret-Lutz.
3083 * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_ENABLE): Enable
3084 expansion of $1 in the comment emitted to configure.
3086 2004-11-23 Paul Eggert <eggert@cs.ucla.edu>
3088 * doc/autoconf.texi (Pretty Help Strings): Fix typo
3089 in my editing of the previous patch. Problem reported
3090 by Alexandre Duret-Lutz.
3092 2004-11-22 Stepan Kasal <kasal@ucw.cz>
3094 * doc/autoconf.texi (Autoconf Language): Explain that
3095 ``descriptions'' may not be double quotes.
3096 (Quotation Rule Of Thumb): Likewise.
3097 (Pretty Help Strings): Likewise; remove the wrong comment;
3098 simplify the examples and improve their quoting.
3100 2004-11-13 Stepan Kasal <kasal@ucw.cz>
3102 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't check
3103 the $1_found variable, don't test whether the file is executable;
3104 Both things are checked ...
3105 (_AC_PATH_PROG_FEATURE_CHECK): ... here; AS_EXECUTABLE_P replaces
3106 the former ``test -f''.
3107 * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix a typo.
3109 2004-11-10 Paul Eggert <eggert@cs.ucla.edu>
3111 * doc/autoconf.texi (Limitations of Usual Tools): Avoid cp -r;
3114 2004-11-10 Derek R. Price <derek@ximbiot.com>
3116 * doc/autoconf.texi (Limitations of Usual Tools): Note `cp -r'
3117 limitations. Reorder paragraphs for clarity.
3119 2004-10-11 Paul Eggert <eggert@cs.ucla.edu>
3121 * doc/autoconf.texi: Standardize spelling of "Posix" (as opposed
3122 to "POSIX" or "@acronym{POSIX}"), and similarly for "DOS
3123 variants", "Unix", and some related minor wording fixups.
3125 (Shellology, Special Shell Variables): Document that the Zsh
3126 problem with NULLCMD was fixed in zsh 3.1.6-dev-18. Thanks
3127 to Alexandre Duret-Lutz for this info.
3129 2004-10-10 Alexandre Duret-Lutz <adl@gnu.org>
3131 * doc/autoconf.texi (One-Shot Macros): New node.
3133 2004-09-28 Paul Eggert <eggert@cs.ucla.edu>
3135 * doc/autoconf.texi (Function Portability): Fix misdescription
3136 of putenv. Problem reported by Michael Wardle.
3138 2004-09-22 Paul Eggert <eggert@cs.ucla.edu>
3140 * doc/autoconf.texi (auindex): New macro.
3141 (AU_DEFUN): Use it to fix the bug when the index contained AC_AU_DEFUN.
3142 Problem reported by Stepan Kasal.
3144 2004-09-05 Paul Eggert <eggert@cs.ucla.edu>
3146 Fix problems reported by Andreas Buening in:
3147 http://lists.gnu.org/archive/html/autoconf-patches/2004-04/msg00004.html
3148 * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Set SHELL=/bin/sh
3150 * lib/autotest/general.m4 (AT_INIT): Don't assume /dev/null is
3151 readable; it's not true in OS/2-emx.
3153 2004-09-04 Paul Eggert <eggert@cs.ucla.edu>
3155 * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): If xmkmf returns
3156 "/usr/include", clear ac_x_includes instead of leaving it as "no"
3157 (trivial change). Problem and patch reported by Andrew Church in:
3158 http://lists.gnu.org/archive/html/bug-autoconf/2004-04/msg00016.html
3160 2004-09-03 Paul Eggert <eggert@cs.ucla.edu>
3162 * doc/autoconf.texi: Give AC_DEFINE and AC_DEFINE_UNQUOTED
3163 three args in examples. Problem reported by Frederik Fouvry in:
3164 http://lists.gnu.org/archive/html/bug-autoconf/2004-09/msg00017.html
3165 Also, fix some minor spacing and punctuation bugs.
3167 2004-09-02 Akim Demaille <akim@epita.fr>
3169 * doc/autoconf.texi (Limitations of Builtins): Swap "cd" and
3170 "case" to restore ordering.
3171 Reported by Stepan Kasal.
3173 2004-08-26 Akim Demaille <akim@epita.fr>
3175 * doc/autoconf.texi: Minor typos and stylos.
3177 2004-08-20 Paul Eggert <eggert@cs.ucla.edu>
3179 * configure.ac (AC_INIT): Bump to 2.59c.
3181 2004-08-20 Paul Eggert <eggert@cs.ucla.edu>
3185 * README: Add advice about m4 1.4.2.
3187 * Makefile.cfg (wget_files): Remove config.guess, config.sub,
3188 texinfo.tex for now (done by hand now).
3189 * Makefile.maint (wget_files, cvs_files):
3190 Remove ansi2knr.c; nobody uses it.
3191 (ansi2knr.c-url_prefix): Remove.
3192 (cvs-update): Fix test for failure. I don't know why it ever
3195 * doc/autoconf.texi: Update URLs, some of which went stale.
3196 Use @uref rather than @href.
3198 * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Have configure
3199 handle "--" as per POSIX. Suggested by Paul Pogonyshev.
3201 * config/config.guess, config/config.sub, config/elisp-comp,
3202 config/install-sh, config/mkinstalldirs, config/texinfo.tex,
3203 doc/fdl.texi, doc/standards.texi: Sync with master copy.
3205 * NEWS, TODO, configure.ac, bin/autoscan.in,
3206 bin/autoupdate.in, bin/ifnames.in, doc/autoconf.texi,
3207 doc/install.texi, lib/Autom4te/Configure_ac.pm,
3208 lib/Autom4te/FileUtils.pm, lib/autoconf/general.m4,
3209 lib/autoconf/programs.m4, lib/autoconf/status.m4,
3210 lib/autotest/general.m4, lib/m4sugar/m4sh.m4,
3211 lib/m4sugar/m4sugar.m4, tests/local.at, tests/m4sh.at,
3212 tests/tools.at, tests/torture.at:
3213 Use "file name" rather than "filename" or "path",
3214 to be consistent with the terminology of the GNU coding standards.
3216 2004-08-19 Paul Eggert <eggert@cs.ucla.edu>
3218 * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C),
3219 AC_C_LONG_DOUBLE): Undo 2004-06-04 change, as it didn't work with
3220 HP-UX 11.23 cc/aCC or Tru64 4.0 cc. Problem reported by Noah Misch in
3221 <http://lists.gnu.org/archive/html/autoconf/2004-07/msg00004.html>.
3223 More fixes to support spaces in the name of the build directory.
3224 This isn't a complete fix but it's an improvement.
3226 * bin/autoconf.as (autom4te_options): New var.
3227 Use it instead of appending to AUTOM4TE, so that we can allow
3228 spaces in the build directory's absolute name.
3229 * bin/autoheader.in ($autoconf): Allow spaces in file names.
3230 * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP, _AT_CHECK,
3231 AT_CHECK_NOESCAPE): Likewise.
3232 * tests/wrapper.as (testdir, AUTOM4TE_CFG, autom4te_perllibdir,
3233 main program): Likewise.
3235 2004-08-18 Paul Eggert <eggert@cs.ucla.edu>
3237 * lib/autoconf/general.m4 (_AC_INIT_HELP): Quote $ac_popdir uses.
3238 From Ralf Corsepius in:
3239 http://lists.gnu.org/archive/html/autoconf-patches/2004-08/msg00014.html
3241 2004-08-12 Paul Eggert <eggert@cs.ucla.edu>
3243 * doc/autoconf.texi (Function Portability): Document isinf and
3244 and isnan. From a suggestion by Kevin Ryde.
3246 * lib/Autom4te/General.pm (END): Return correct exit status even
3247 if unlink succeeds and sets $?. Needed with Solaris 8's perl 5.00503.
3249 2004-08-09 Paul Eggert <eggert@cs.ucla.edu>
3251 * tests/torture.at (Deep Package): Use configure.in, not configure.ac,
3252 for compatibility with Automake 1.4. Reported by J C Fitzgerald in
3253 <http://lists.gnu.org/archive/html/bug-autoconf/2003-08/msg00051.html>.
3255 2004-08-04 Alexandre Duret-Lutz <adl@gnu.org>
3257 * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE): New empty macro.
3258 (AC_CANONICAL_BUILD): Call it to require config.sub and config.guess.
3259 * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Likewise for install-sh.
3260 * doc/autoconf.texi (Input): Document AC_REQUIRE_AUX_FILE.
3261 * lib/autom4te.in (Automake-preselections): Preselect
3262 AC_REQUIRE_AUX_FILE. Automake 1.10 will trace it.
3264 2004-08-02 Alexandre Duret-Lutz <adl@gnu.org>
3266 * lib/autom4te.in (Automake-preselections): Preselect
3267 AC_CANONICAL_BUILD and AC_CANONICAL_TARGET. Automake 1.9.1 will
3270 2004-07-29 Paul Eggert <eggert@cs.ucla.edu>
3272 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Set BIN_SH, for
3274 * doc/autoconf.texi (Shellology): Mention BIN_SH.
3275 Document problem with "`""`" in pdksh POSIX mode.
3277 2004-07-27 Paul Eggert <eggert@cs.ucla.edu>
3279 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Use "set -o posix"
3280 with pdksh, too. Problem reported by Patrick Welche via
3282 * doc/autoconf.texi (Shellology): Note that set -o posix is
3283 useful for pkdsh, too.
3285 2004-06-24 Paul Eggert <eggert@cs.ucla.edu>
3287 * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Require
3288 _AS_UNSET_PREPARE, so that we can use $as_unset directly.
3289 Don't fail if ENV or BASH_ENV is readonly.
3290 (AS_SHELL_SANITIZE): Don't fail if ENV, MAIL, MAILPATH, LC_ALL,
3291 etc. are read only. Problem reported by Ludovic Courtes.
3293 2004-06-23 Noah Misch <noah@cs.caltech.edu>
3295 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
3296 zsh, disable GLOB_SUBST to avoid backslash handling problems.
3299 2004-06-04 Paul Eggert <eggert@cs.ucla.edu>
3301 * doc/autoconf.texi (File System Conventions): Warn about
3302 names like "aux". Problem reported by Eric Blake.
3304 * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY (C)): Use division
3305 by zero instead of array size, so that we can use any arithmetic
3306 constant expression (instead of requiring an integer constant
3307 expression). This allows us to test expressions like DBL_MAX <
3308 LDBL_MAX, which didn't conform to the C standard using the old
3310 (AC_C_LONG_DOUBLE): Put back in the tests for LDBL_MAX and LDBL_EPSILON,
3311 now that we can do floating-point tests at compile time.
3313 2004-06-02 Paul Eggert <eggert@cs.ucla.edu>
3315 * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Don't check LDBL_MAX
3316 and LDBL_EPSILON, as the resulting expression isn't an
3317 integer constant expression and violates the C standard.
3318 Problem reported by Nelson H. F. Beebe. Also, check
3319 for "L" suffix, and check that long double doesn't have
3320 worse range or precision than double, that mixed-mode
3321 arithmetic doesn't generate a diagnostic, that double
3322 constants fit in long double.
3324 2004-06-03 Kevin Ryde <user42@zip.com.au>
3326 * doc/autoconf.texi (Function Portability): Add notes on free(NULL),
3327 malloc(0) and realloc(NULL,size).
3329 * doc/autoconf.texi (Shell Substitutions): Spelling error reported by
3332 2004-05-31 Paul Eggert <eggert@cs.ucla.edu>
3334 * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Detect _Bool bug
3335 in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003]. Problem reported
3338 2004-05-26 Paul Eggert <eggert@cs.ucla.edu>
3340 * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
3341 can be rewritten using if-then-else. Suggested by Bruno Haible.
3343 2004-05-25 Paul Eggert <eggert@cs.ucla.edu>
3345 * doc/autoconf.texi (testsuite Scripts): Fix typo.
3346 Problem reported by Stepan Kasal.
3348 2004-05-24 Paul Eggert <eggert@cs.ucla.edu>
3350 * tests/Makefile.am (autoconfdir): Fix to match comment (trivial
3351 change). Patch reported by Ralf Wildenhues in
3352 <http://mail.gnu.org/archive/html/bug-autoconf/2004-05/msg00092.html>.
3354 * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): Don't assume that a
3355 function F exists if the compiler and linker let you compile an
3356 expression like (F != 0). Recent versions of GCC optimize away
3357 the reference to F in that case, since every function address must
3358 be nonzero, so the link succeeds even if F does not exist.
3359 Problem reported by Manu in
3360 <http://mail.gnu.org/archive/html/bug-gnu-utils/2004-05/msg00060.html>.
3362 * doc/autoconf.texi (Systemology): Standardize on the spelling of
3363 "Unix". Many uses changed.
3364 (Limitations of Builtins): Explain better why the ! command isn't
3367 2004-05-22 Alexandre Duret-Lutz <adl@gnu.org>
3369 * lib/autom4te.in (Automake-preselections): Preselect
3370 LT_SUPPORTED_TAG in lieu of AC_LIBTOOL_TAGS.
3372 2004-05-19 Kevin Ryde <user42@zip.com.au>
3374 * doc/autoconf.texi (Function Portability): Add strerror_r, cross
3375 referencing AC_FUNC_STRERROR_R.
3377 * doc/autoconf.texi (Particular Functions): In AC_FUNC_CLOSEDIR_VOID,
3378 note pessimistic assumption when cross compiling.
3380 2004-05-16 Paul Eggert <eggert@cs.ucla.edu>
3382 * doc/autoconf.texi (Limitations of Make): Note that BSD make
3383 (until 2004) invoked subcommands with sh -e, contra POSIX.
3384 Reported by Kevin Ryde.
3386 2004-05-10 Eric Sunshine <sunshine@sunshineco.com>
3388 * programs.m4 (_AC_PROG_GREP): Fixed bug where PATH argument handed to
3389 _AC_PATH_PROG_FEATURE_CHECK contained leading whitespace (i.e.
3390 " $PATH:/usr/xpg4/bin"). This resulted in bogus tests, such as
3391 `test -f " /usr/bin/grep"', which _always_ failed.
3392 (AC_PROG_SED): Ditto bogus PATH fix.
3393 * autoconf.texi (AC_PROG_GREP): Properly document that this macro
3394 requires that grep correctly supports _multiple_ `-e' options, rather
3395 than stating only that grep should accept `-e'.
3397 2004-05-03 Paul Eggert <eggert@cs.ucla.edu>
3399 Port to C99, which requires that 'exit' be declared.
3401 * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Use AC_INCLUDES_DEFAULT
3402 to ensure that stdlib.h is included.
3403 * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_SETPGRP,
3404 AC_FUNC_STRTOD, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_FORK, _AC_FUNC_FORK,
3405 _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
3406 * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
3407 * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
3408 * lib/autoconf/headers.m4 (AC_HEADER_STDC): Include <stdlib.h>
3409 when using 'exit' in a test; C99 requires that 'exit' be declared.
3411 2004-05-02 Paul Eggert <eggert@cs.ucla.edu>
3413 * doc/autoconf.texi (Particular Programs): AC_PROG_GREP
3414 now prefers 'grep' implementations that accept -e.
3415 (Limitations of Usual Tools): Describe problems of traditional
3416 egrep and fgrep with long input lines, and of traditional grep
3418 * lib/autoconf/programs.m4 (AC_PROG_GREP): Check for -e, too.
3419 (_AC_PROG_GREP): Assume 3rd arg is properly quoted for the shell.
3420 All callers changed. Append /usr/xpg4/bin to the PATH, for
3422 (_AC_FEATURE_CHECK_LENGTH): Discard stderr, so we don't bother
3423 the user with complaints about multiple -e options.
3424 * tests/local.at (AC_STATE_SAVE): Use $GREP, not grep.
3425 Define it with AC_PROG_GREP.
3426 * configure.ac (AC_PROG_GREP): Add.
3427 * lib/freeze.mk (GREP): New macro.
3429 2004-05-02 Eric Sunshine <sunshine@sunshineco.com>
3431 * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Consult $SHELL as
3432 a possible candidate only after all others fail, rather than
3433 consulting it first. This improves backward compatibility by
3434 better reflecting the way shell selection occurred in previous
3435 versions of Autoconf, and should help to avoid triggering latent
3436 problems in other packages, such as the one in Automake where zsh
3437 is not handled robustly:
3438 http://mail.gnu.org/archive/html/automake/2004-04/msg00095.html
3439 Although it is not Autoconf's responsibility to work around
3440 problems in Automake, it nevertheless makes sense to avoid
3441 introducing unnecessary incompatibilites.
3443 2004-04-22 Albert Chin-A-Young <china@thewrittenword.com>,
3444 Gary V. Vaughan <gary@gnu.org>
3446 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't guess
3447 how deeply nested we are when a suitable tool is found, set the
3448 ac_path_TOOL_found flag.
3449 (_AC_PATH_PROG_FEATURE_CHECK): Encapsulate knowledge of how deeply
3450 nested we are in this macro. Break out of all 3 nested loops if
3451 ac_path_TOOL_found is set.
3453 2004-04-21 Gary V. Vaughan <gary@gnu.org>
3455 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Break out
3456 of the _AS_PATH_WALK loop too if GNU flavor is found.
3458 2004-04-21 Alexandre Duret-Lutz <adl@gnu.org>
3460 * doc/autoconf.texi (Limitations of Make): Update documentation
3461 for `$<'. New entry `Long lines', based on a report from Simon
3462 Josefsson. Augment the documentation for SHELL = @SHELL@ with a
3463 paragraph about DJGPP, based on a mail from Richard Dawe.
3465 2004-04-20 Paul Eggert <eggert@twinsun.com>
3467 * tests/c.at (C keywords): Don't assume that GCC supports
3468 "restrict" and "inline", as sufficiently-old GCC versions do not
3469 (also, GCC configured to be in pedantic C89 mode does not).
3470 Problem reported by Sumit Pandya in:
3471 http://mail.gnu.org/archive/html/autoconf/2004-04/msg00092.html
3473 * lib/autoconf/c.m4 (_AC_PROG_CC_G, _AC_PROG_CXX_G): Don't
3474 consider -g to work if it generates warnings when plain compiles
3475 don't. Problem reported by Braden McDaniel in:
3476 http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00014.html
3478 * doc/autoconf.texi (Slashes): New section, to document a problem
3479 reported by Jim Meyering in:
3480 http://mail.gnu.org/archive/html/bug-coreutils/2004-02/msg00060.html
3482 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Remove potential
3483 linker output files before linking, to work around IRIX 6 linker bug.
3484 Problem reported by Rainer Orth in:
3485 http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00007.html
3487 2004-04-20 Gary V. Vaughan <gary@gnu.org>
3489 * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Make the
3490 best tool so far counter rely on the tool path variable name to
3491 avoid checks for one tool being affected by the results of running
3492 the length check on a previous tool.
3494 * lib/autoconf/programs.m4 (_AC_PROG_GREP): Take an additional
3495 match expression argument, as different greps have different
3496 regular expression flavours.
3497 (AC_PROG_FGREP): Pass 'FGREP'. fgrep treats all match chars as
3499 (AC_PROG_EGREP): Pass 'EGREP$'.
3500 (AC_PROG_GREP): Pass 'GREP$'.
3502 2004-04-20 Albert Chin-A-Young <china@thewrittenword.com>
3504 * lib/autoconf/programs.m4 (AC_PROG_GREP): Cache variable
3505 is `ac_cv_path_GREP', not `oc_cv_path_GREP'.
3507 2004-03-29 Paul Eggert <eggert@twinsun.com>
3509 * doc/autoconf.texi (Particular Headers, Particular Types, Generic
3510 Types, Specific Compiler Characteristics, System Services,
3511 Obsolete Macros): Use 'long int', 'short int', 'unsigned int'
3512 etc. consistently instead of 'long', 'short', 'unsigned' etc.
3513 * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN): Likewise.
3514 * lib/autoconf/functions.m4 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES):
3516 * lib/autoconf/headers.m4 (AC_HEADER_SYS_WAIT): Likewise.
3517 * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS, AC_TYPE_SIZE_T,
3518 AC_TYPE_OFF_T): Likewise.
3519 * tests/semantics.at (AC_CHECK_TYPES: backward compatibility):
3522 * tests/foreign.at (Libtool): Create an empty aclocal.m4, to
3523 pacify libtool 1.5.2. Fix quoting problems in sed command.
3525 2004-03-28 Paul Eggert <eggert@twinsun.com>
3527 * doc/autoconf.texi (Particular Structures): AC_STRUCT_TIMEZONE
3528 now defines HAVE_DECL_TZNAME if it is declared, when
3529 HAVE_STRUCT_TM_TM_ZONE is not defined.
3530 * lib/autoconf/types.m4 (AC_STRUCT_TIMEZONE): Implement this.
3531 Do not assume atoi. Rely on HAVE_DECL_TZNAME when testing
3534 2004-03-28 Steven G. Johnson <stevenj@fftw.org>
3536 * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Corrected
3537 superfluous backslashing of quotes (") in sed expressions;
3538 thanks to Paul Eggert.
3540 2004-03-26 Steven G. Johnson <stevenj@alum.mit.edu>
3542 * lib/autoconf/fortran.m4 (_AC_PROG_FC): new name of Intel
3543 Fortran compiler is ifort, also added pghpf; thanks to Nelson
3544 H. F. Beebe for the bug report.
3546 2004-03-26 Steven G. Johnson <stevenj@fftw.org>
3548 * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): fix for
3549 quoted -cmdline argument in Portland Group compiler (bug
3550 reported by Jeffrey J. Barteet).
3552 2004-03-25 Kevin Ryde <user42@zip.com.au>
3554 * doc/autoconf.texi (Specifying Names): Move cross_compiling ovindex to
3555 (Run Time): ... here, where it's now mentioned.
3557 2004-03-19 Alexandre Duret-Lutz <adl@gnu.org>
3559 * doc/autoconf.texi (autom4te Invocation): Language Autoconf
3560 inherits from language Autoconf-without-aclocal-m4.
3561 (Customizing autom4te): Adjust example; the cache must now be
3562 disabled for language Autoconf-without-aclocal-m4.
3564 2004-03-16 Paolo Bonzini <bonzini@gnu.org>
3565 Nathanael Nerode <neroden@twcny.rr.com>
3567 * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL,
3568 AC_CHECK_TOOLS): Warn if a cross-tool is found without
3570 (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
3571 AC_CHECK_TARGET_TOOLS): New macros.
3572 * doc/autoconf.texi (Generic Programs): Document
3573 (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
3574 AC_CHECK_TARGET_TOOLS, and warn for future changes
3575 in the behavior of AC_PATH_TOOL, AC_CHECK_TOOL and
3577 (Specifying Names): Document the reason for these future
3579 * tests/mktests.sh: Do not generate tests for the
3581 * NEWS: Document these changes.
3583 * doc/autoconf.texi: Avoid macros with unbraced arguments,
3584 they make TeX hang up.
3586 2004-03-15 Paul Eggert <eggert@bogus.example.com>
3588 * NEWS: New macro AC_CHECK_ALIGNOF.
3589 * doc/autoconf.texi (Generic Compiler Characteristics): Document it.
3590 * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use long int rather than
3591 int; avoid "a `$1'" since this isn't grammatical if $1 begins with a
3593 (AC_CHECK_ALIGNOF): New macro.
3594 * tests/mktests.sh (ac_exclude_list): Exclude AC_CHECK_ALIGNOF.
3595 * tests/semantics.at (AC_CHECK_ALIGNOF): Add tests similar to
3598 2004-03-03 Paul Eggert <eggert@twinsun.com>
3600 * bin/Makefile.am (edit): Don't use $< in a context where
3601 POSIX doesn't require support for it. Use $@.in instead.
3602 Problem reported by Anthony N. Frasso in
3603 <http://mail.gnu.org/archive/html/autoconf/2004-03/msg00008.html>.
3604 * bin/autoscan.in, bin/autoupdate.in: Add @configure_input@ comment.
3606 2004-02-23 Gary V. Vaughan <gary@gnu.org>
3608 * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT
3609 from the next generation of Libtool.
3610 * lib/autom4te.in (Autoreconf-preselections): Ditto.
3612 2004-02-20 Alexandre Duret-Lutz <adl@gnu.org>
3614 * doc/autoconf.texi (Limitations of Usual Tools) <mkdir>: `mkdir -p'
3615 is not always thread-safe. Report from Nathanael Nerode.
3617 2004-02-18 Paul Eggert <eggert@twinsun.com>
3619 Fix a dependencies problem, stemming from a Autoconf 2.59 build
3620 problem on QNX reported by Stephen Rasku in
3621 <http://mail.gnu.org/archive/html/bug-autoconf/2004-02/msg00066.html>.
3623 * bin/Makefile.am ($(srcdir)/autoconf.in): Depend on
3624 $(m4sh_m4f_dependencies); this removes a FIXME.
3625 * tests/Makefile.am ($(srcdir)/wrapper.in): Likewise.
3626 (MAINTAINERCLEANFILES): Split into pieces,
3627 one per related section. Add $(srcdir)/wrapper.in.
3629 2004-02-09 Paul Eggert <eggert@twinsun.com>
3631 * doc/autoconf.texi (Setting Output Variables): Emphasize that
3632 AC_SUBST provides no portable way to escape literal newlines.
3634 * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore all
3635 flags of the form -lcrt*.o, not just -lcrt[01].o and -lcrtbegin.o.
3636 Darwin uses -lcrt2.o and there's little point to cataloging all
3637 the system variants. Partial fix reported by Andreas Waechter in:
3638 http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00006.html
3639 for bug reported by Nelson H. F. Beebe in:
3640 http://mail.gnu.org/archive/html/bug-autoconf/2003-12/msg00090.html
3642 2004-02-04 Paolo Bonzini <bonzini@gnu.org>
3644 * doc/autoconf.texi (AU_DEFUN): Fix English,
3645 suggested by Paul Eggert.
3646 * lib/autoconf/autoupdate.m4: Correct reference to
3647 acobsolete.m4, suggested by Alexandre Duret-Lutz.
3649 2004-02-02 Paolo Bonzini <bonzini@gnu.org>
3651 * bin/autoupdate.in: Define __file__ so that warnings
3652 refer to the correct file.
3653 * doc/autoconf.texi (AU_DEFUN): Describe more correctly
3654 the behavior of the third argument.
3655 * lib/autoconf/autoupdate.m4 (AU_DEFUN): Describe more
3656 correctly the behavior of the third argument. Document
3657 what the three macros that AU_DEFUN defines do. Fix
3658 warning message when the third argument includes $0
3659 (reported by Alexandre Duret-Lutz).
3661 2004-01-30 Paolo Bonzini <bonzini@gnu.org>
3662 Eric Sunshine <sunshine@sunshineco.com>
3663 Paul Eggert <eggert@twinsun.com>
3665 * lib/m4sugar/m4sh.m4 (M4SH-SANITIZE): New diversion.
3666 (AS_INIT): Output shell initialization there. Removed optional
3667 parameter. Expand _AS_SHELL_FN_SPY.
3668 (AS_INIT_WITH_SHELL_FN): Removed.
3669 (_AS_SHELL_FN_SPY): New macro.
3670 (AS_DETECT_REQUIRED, AS_DETECT_SUGGESTED): New
3672 (AS_SHELL_SANITIZE): Remove loop to find better shell
3673 and documentation for the parameter.
3674 (_AS_DETECT_BETTER_SHELL): Move it here.
3675 (_AS_SHELL_FN_WORK): Remove shell invocation, reformat.
3676 (_AS_RUN): Move it here, support testing with eval.
3677 (AS_REQUIRE_SHELL_FN): Require shell functions when
3679 (_AS_LINENO_WORKS): Put around braces, we do not
3680 trigger the bash bug anymore.
3681 * lib/autotest/general.m4: Document M4SH-SANITIZE, do not
3682 use AS_INIT_WITH_SHELL_FN.
3683 * bin/autoconf.in, tests/wrapper.in: Regenerated.
3685 2004-01-30 Paolo Bonzini <bonzini@gnu.org>
3687 * bin/autoupdate.in: Trace AU_DEFINE instead of AU_DEFUN.
3688 * doc/autoconf.texi: Don't say that the third parameter
3690 * lib/autoconf/autoupdate.m4 (AU_DEFINE): New dummy macro.
3691 (AU_DEFUN): Honor the third parameter, create autoupdate
3692 macros with AU_DEFINE.
3693 * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H,
3694 AC_DIR_HEADER): Use AU_DEFUN's third parameter.
3695 * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
3696 * lib/autoconf/programs.m4 (AC_RSH): Likewise.
3697 * lib/autoconf/specific.m4 (AC_HAVE_POUNDBANG,
3698 AC_ARG_ARRAY, AC_CYGWIN, AC_EMXOS2, AC_MINGW32,
3699 AC_XENIX_DIR): Likewise.
3700 * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS,
3701 AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_RDEV): Likewise.
3702 * lib/autoconf/status.m4: Remove FIXME.
3703 * tests/local.at (AT_CHECK_AU_MACRO): Ignore stderr, check
3704 that the macro is not present anymore in the updated
3706 * tests/tools.at (autoupdate AC_LINK_FILES): Ignore stderr
3709 2004-01-28 Paul Eggert <eggert@twinsun.com>
3711 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add 2004 to
3713 * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Add 1992 thorugh
3714 2003 (except 1997) to the list of copyright years. This undoes
3715 the 2003-05-22 change, which removed the older years from the list.
3716 * lib/autoconf/status.m4 (AC_OUTPUT): Update copyright date to 2004.
3718 2004-01-27 Gary V. Vaughan <gary@gnu.org>
3719 Albert Chin-A-Young <china@thewrittenword.com>
3721 * lib/autoconf/programs.m4 (AC_PROG_GREP): New macro to test for a
3722 grep or ggrep program in PATH that accepts as long lines as
3724 * lib/autoconf/programs.m4 (_AC_PROG_GREP): Factor out the core of
3726 (AC_PROG_EGREP, AC_PROG_FGREP): Use it to find best available
3727 egrep and fgrep respectively if $GREP -E/-F don't work.
3728 (_AC_PATH_PROG_FEATURE_CHECK): Factor out the common core of
3729 _AC_PROG_GREP, and AC_PROG_SED.
3730 (_AC_FEATURE_CHECK_LENGTH): New helper macro for finding the
3731 longest input length accepted by a command.
3732 (AC_PROG_SED): Use it.
3733 * doc/autoconf.texi (Particular Programs): Document the changes.
3736 2004-01-27 Paul Eggert <eggert@twinsun.com>
3738 * bin/autoconf.as ($version): Update copyright from 2003 to 2004.
3739 * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
3740 bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in: Likewise.
3741 * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
3743 * Makefile.in, aclocal.m4, configure, bin/Makefile.in,
3744 bin/autoconf.in, config/Makefile.in, config/config.guess,
3745 config/config.sub, config/install-sh, config/mdate-sh,
3746 config/mkinstalldirs, config/texinfo.tex, doc/Makefile.in,
3747 lib/Makefile.in, lib/Autom4te/Makefile.in,
3748 lib/autoconf/Makefile.in, lib/autoscan/Makefile.in,
3749 lib/autotest/Makefile.in, lib/emacs/Makefile.in,
3750 lib/m4sugar/Makefile.in, man/Makefile.in, man/autoconf.1,
3751 man/autoheader.1, man/autom4te.1, man/autoreconf.1,
3752 man/autoscan.1, man/autoupdate.1, man/config.guess.1,
3753 man/config.sub.1, man/ifnames.1, tests/Makefile.in,
3754 tests/acc.at, tests/acfortran.at, tests/acfunctions.at,
3755 tests/acgeneral.at, tests/acheaders.at, tests/aclang.at,
3756 tests/aclibs.at, tests/acspecific.at, tests/acstatus.at,
3757 tests/actypes.at: Regenerate and/or sync with original
3760 2004-01-26 Paul Eggert <eggert@twinsun.com>
3762 * doc/autoconf.texi (Default Includes): Include <stdint.h> even if
3763 HAVE_INTTYPES_H is defined. This is needed on Tru64 5.1b with
3764 Compac C V6.5-207 (dtk), which defines uintmax_t in <stdint.h> but
3765 not <inttypes.h>. Problem reported by Tim Mooney in
3766 <http://mail.gnu.org/archive/html/bug-coreutils/2004-01/msg00147.html>.
3767 * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
3770 * lib/autoconf/programs.m4 (AC_PROG_SED): Use diff, not sed;
3771 otherwise "make check" fails because it forbids cmp (I guess
3772 because cmp treats files as binary on DOS-like systems).
3774 * tests/mktests.sh: Update copyright date to 2004, since some tests
3775 have changed in 2004.
3777 2004-01-23 Gary V. Vaughan <gary@gnu.org>
3779 * lib/autoconf/programs.m4 (AC_PROG_SED): New macro to test for a
3780 non-truncating sed or gsed program in PATH.
3781 * tests/acprograms.at: Add it.
3782 * doc/autoconf.texi (Particular Programs): Document it.
3785 2004-01-15 Paul Eggert <eggert@twinsun.com>
3787 * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Try -std, not -std1, since
3788 -std1 disables some useful extensions on Tru64. Problem reported
3790 <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00100.html>.
3792 2004-01-14 Paul Eggert <eggert@twinsun.com>
3794 * doc/autoconf.texi (Programming in M4sh): Document that
3795 AS_MKDIR_P succeeds if the destination is a symbolic link
3796 to an existing directory.
3797 (Limitations of Usual Tools): Note that mkdir -p might not
3798 succeed on symlinks to directories.
3800 2004-01-13 Paul Hilfinger <hilfinger@CS.Berkeley.EDU>
3802 * lib/autoconf/autoupdate.m4 (AU_DEFUN): Grammar fix in comment.
3803 * bin/autoheader.in: Grammar fix in message.
3804 * lib/m4sugar/m4sh.m4 (AS_MKDIR_P):
3805 Test for dir before calling mkdir -p. (trivial changes)
3807 2004-01-13 Eric Blake <ebb9@byu.net>
3809 * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
3810 AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/. (trivial change)
3812 2004-01-10 Jim Meyering <jim@meyering.net>
3814 * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
3816 2004-01-09 Paul Eggert <eggert@twinsun.com>
3818 * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
3819 with `autoconf -Wall,error'. Bug reported by Eric Blake in:
3820 http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
3821 (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
3822 AC_COMPILE_IFELSE, since we now assume our caller invokes
3823 AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
3824 (_AC_COMPUTE_INT_RUN): Likewise, for _AC_RUN_IFELSE instead
3825 of AC_RUN_IFELSE; this avoids the warning mentioned above.
3826 (_AC_COMPUTE_INT): Invoke AC_LANG_COMPILER_REQUIRE.
3828 2004-01-07 Paul Eggert <eggert@twinsun.com>
3830 * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Avoid \$ inside
3831 `"'...'"`, as it's confusing (and I suspect it may not work on
3832 some platforms). The code was incorrect anyway, as it assumed
3833 that \$ evaluated to itself in that context. Reported by
3834 Alexandre Duret-Lutz.
3836 2004-01-07 Alexandre Duret-Lutz <adl@gnu.org>
3838 * lib/autom4te.in (Automake-preselections): Preselect AC_LIBTOOL_TAGS
3839 and _LT_AC_TAGCONFIG.
3841 2004-01-06 Paul Eggert <eggert@twinsun.com>
3843 * doc/autoconf.texi (One Macro Call): Fix an incorrect
3844 example, and add more examples. Reported by Eric Sunshine.
3846 2004-01-05 Paul Eggert <eggert@twinsun.com>
3848 * doc/autoconf.texi (Limitations of Usual Tools):
3849 Remove warning against "rm -fr" introduced yesterday; it
3852 * bin/Makefile.am (autoconf, autoheader, autom4te, autoreconf,
3853 autoscan, autoupdate, ifnames): Don't use chmod -w.
3854 * lib/Makefile.am (autom4te.cfg): Likewise.
3855 * doc/autoconf.texi (Limitations of Usual Tools): Warn against
3858 2004-01-04 Paul Eggert <eggert@twinsun.com>
3859 Paolo Bonzini <bonzini@gnu.org>
3861 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Speed up sed scripts
3862 by doing lineno substitution only on lines containing "$LINENO".
3864 2004-01-04 Paul Eggert <eggert@twinsun.com>
3866 * lib/autoconf/general.m4 (AC_ARG_PROGRAM):
3867 Use "rm -f" to remove conftest.sed, not plain "rm".
3868 Bug reported by David Relson in
3869 <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00011.html>.
3871 * Makefile.am (autom4te-update):
3872 Replace "rm -rf" and "rm -fr" with "rm -f -r", as POSIX requires.
3873 * Makefile.maint (my-distcheck, do-po-update): Likewise.
3874 * doc/autoconf.texi (Guidelines): Likewise.
3875 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Likewise.
3876 * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
3877 * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
3878 * lib/autotest/general.m4 (AT_INIT): Likewise.
3879 * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
3880 * tests/Makefile.am (clean-local): Likewise.
3881 * tests/tortue.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS,
3883 * doc/autoconf.texi (Limitations of Usual Tools):
3884 Warn against "rm -fr".
3886 2004-01-03 Paul Eggert <eggert@twinsun.com>
3888 * doc/autoconf.texi (Limitations of Usual Tools): Mention that cc
3889 -c -o might not work. From a suggestion by Kevin Ryde.
3890 (C Compiler, Generating Sources, Limitations
3891 of Usual Tools, Limitations of Make, Making testsuite Scripts):
3892 Don't put '-o' after non-options, as POSIX doesn't allow this.
3893 Mention that cc's name might be gcc or c89 or whatever.
3895 2004-01-04 Kevin Ryde <user42@zip.com.au>
3897 * doc/autoconf.texi: Add various further index entries.
3899 2003-12-29 Paul Eggert <eggert@twinsun.com>
3901 * bin/autoreconf.in (autoreconf_current_directory):
3902 Fix typo: mkdir without umask arg.
3904 2003-12-27 Alexandre Duret-Lutz <adl@gnu.org>
3906 * doc/autoconf.texi (Limitations of Make) <Automatic rule rewriting>:
3907 Documents OSF1/Tru64 make behavior. Replace `VPATH = ../src' by
3908 `VPATH = ../pkg/src' in examples to make the OSF1/Tru64 make
3909 explanation clearer.
3911 2003-12-24 Andreas Schwab <schwab@suse.de>
3913 * doc/autoconf.texi (Default Includes): Fix misspelling of
3914 AC_INCLUDES_DEFAULT.
3916 2003-12-03 Paolo Bonzini <bonzini@gnu.org>
3918 * configure.ac: Test if sh -n works.
3919 * configure: Regenerate.
3920 * tests/atlocal.in: Store the result here.
3921 * tests/local.at (AT_CHECK_SHELL_SYNTAX): Extracted from
3922 tools.at, looking in atlocal's ac_cv_sh_n_works instead
3923 of explicitly testing.
3924 (AT_CHECK_PERL_SYNTAX): Moved from tools.at.
3925 (AT_CHECK_AUTOCONF): Test for the configure script syntax.
3926 * tests/tools.at (Syntax of the shell scripts): Simplify
3927 using AT_CHECK_SHELL_SYNTAX.
3928 (Syntax of the Perl scripts): Remove definition of
3929 AT_CHECK_PERL_SYNTAX.
3931 2003-12-03 Paolo Bonzini <bonzini@gnu.org>
3933 * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Redirect
3934 stderr to /dev/null.
3935 * bin/autoconf.in: Regenerate.
3936 * bin/wrapper.in: Regenerate.
3938 2003-11-26 Paolo Bonzini <bonzini@gnu.org>
3940 * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE):
3941 Extracted from AS_SHELL_SANITIZE.
3942 (_AS_SHELL_FN_WORK, AS_INIT_WITH_SHELL_FN): New
3944 (AS_SHELL_SANITIZE): Move reinvocation code from
3945 _AS_LINENO_WORKS, use it to find out if shell
3947 (_AS_LINENO_WORKS): Don't find another shell if $LINENO
3949 (AS_INIT): Pass parameter down to AS_SHELL_SANITIZE.
3950 (AS_REQUIRE_SHELL_FN): Test that AS_INIT_WITH_SHELL_FN
3952 * lib/autotest/general.m4: Use AS_INIT_WITH_SHELL_FN.
3953 * bin/autoconf.in: Regenerate.
3954 * tests/wrapper.in: Regenerate.
3955 * tests/tools.at: Test the syntax of tests/autoconf
3956 and tests/testsuite.
3958 2003-11-24 Akim Demaille <akim@epita.fr>
3960 * config/announce-gen (&print_locations, &print_signatures)
3963 No longer rely on Gnus to inline the list of signatures: compute
3966 2003-11-24 Akim Demaille <akim@epita.fr>
3968 * doc/autoconf.texi (Particular Programs): AC_PROG_LEX can
3969 override some files.
3970 (Input): AC_CONFIG_AUX_DIR(aux) is a bad idea on DOS.
3971 From Debian Autoconf 2.58.
3973 2003-11-24 Akim Demaille <akim@epita.fr>
3975 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote $ac_popdir
3977 From Debian Autoconf 2.58.
3979 2003-11-24 Paolo Bonzini <bonzini@gnu.org>
3981 * TODO: Remove already done things. Update the part about finding
3982 tools for the target.
3984 2003-11-24 Paolo Bonzini <bonzini@gnu.org>
3986 * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H, AC_DIR_HEADER):
3987 Make wording more consistent.
3988 * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
3989 Explain the transition better.
3990 * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS): Explain
3991 the transition better.
3993 2003-11-24 Paolo Bonzini <bonzini@gnu.org>
3995 * doc/autoconf.texi (Obsoleting Macros): Don't document the third
3996 parameter of AU_DEFUN.
3997 * lib/autoconf/autoupdate.m4 (AU_DEFINE): Remove.
3998 (AU_DEFUN): Remove the third parameter, it was not used.
3999 Use AC_DEFUN directly, not AU_DEFINE.
4000 * lib/autoconf/status.m4 (AC_LINK_FILES): Move the message into
4001 the expanded body, consistently with other macros such as AC_USG.
4003 2003-11-17 Paul Eggert <eggert@twinsun.com>
4005 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put at least 14 bytes
4006 into the initial confdefs.h, to work around a bug in NextStep 3.3
4007 patch 3 reported by Eric Sunshine.
4009 2003-11-15 Kevin Ryde <user42@zip.com.au>
4011 * doc/autoconf.texi (Using System Type): Revise, showing $host rather
4012 than $target since the latter is not usual, add guidelines on when to
4013 use or not use the system type.
4015 2003-11-12 Derek Price <derek@ximbiot.com>
4017 * doc/autoconf.texi (Limitations of Usual Tools): Fix what looks like a
4018 typo misrepaired by an auto-spellcheck.
4020 2003-11-12 Akim Demaille <akim@epita.fr>
4022 * bin/autoreconf.in (&parse_args): Don't call automake with
4023 --force-missing unless it actually supports it.
4024 From Debian #219336.
4026 2003-11-12 Akim Demaille <akim@epita.fr>
4028 * configure.ac: Bump to 2.59a.
4031 2003-11-06 Akim Demaille <akim@epita.fr>
4035 2003-11-05 Alexandre Duret-Lutz <adl@gnu.org>
4037 * lib/autoconf/status.m4 (_AC_SRCPATHS): Fix use of AS_SET_CATFILE
4038 so that ac_abs_builddir, ac_abs_top_builddir, ac_abs_srcdir,
4039 and ac_abs_top_srcdir are absolute paths.
4040 * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Remove misleading comment.
4042 2003-11-05 Akim Demaille <akim@epita.fr>
4044 * configure.ac: Bump to 2.58a.
4046 2003-11-05 Kevin Ryde <user42@zip.com.au>
4048 * doc/autoconf.texi (Using Autotest): Avoid @strong{Note: ...}, since
4049 it provokes a warning from makeinfo about looking like a cross
4050 reference in info output.
4052 * doc/autoconf.texi (Function Portability): Add notes on signal
4053 handler return type, as per AC_TYPE_SIGNAL.
4055 2003-11-04 Akim Demaille <akim@epita.fr>
4058 * doc/standards.texi: Update from master.
4060 * tests/mktests.sh (ac_exclude_list): Add AC_FC_FREEFORM.
4062 2003-11-04 Akim Demaille <akim@epita.fr>
4064 AC_CONFIG_FILE([d1/foo:d2/foo]) triggers error messages when
4065 computing the absolute path to d1 in the source hierarchy: it may
4066 not exist at all. So don't cd into it.
4067 From Alexandre Duret-Lutz.
4068 http://mail.gnu.org/archive/html/bug-autoconf/2003-10/msg00205.html
4070 * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): New.
4071 From Paul Eggert, but named after Perl's IO::Spec->catfile.
4072 * doc/autoconf.texi (Programming in M4sh): Document.
4073 * lib/autoconf/status.m4 (_AC_SRCPATHS): Use it.
4075 2003-11-03 Pavel Roskin <proski@gnu.org>
4077 * doc/autoconf.texi (Generic Structure Checks): Describe
4078 action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
4080 2003-10-31 Akim Demaille <akim@epita.fr>
4082 * tests/fortran.at (GNU Fortran 77): Don't run FC macros.
4084 * doc/autoconf.texi (Language Choice): Document.
4085 * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Assert
4086 the current language is Fortran.
4088 2003-10-31 Akim Demaille <akim@epita.fr>
4090 * bin/autom4te.in (&freeze): Use a less likely warning separator
4091 than `\n\n', so that `\n\n\n' is valid in warnings.
4092 Reported by Steve Huston.
4094 2003-10-28 Akim Demaille <akim@epita.fr>
4096 * Makefile.cfg (local_updates, executable-update): Tweak to be
4097 robust to parallel makes.
4098 Suggested by Alexandre Duret-Lutz.
4100 2003-10-27 Akim Demaille <akim@epita.fr>
4102 * Makefile.cfg (executable-update): New.
4103 (local_updates): Call it.
4105 2003-10-27 Akim Demaille <akim@epita.fr>
4107 * lib/autoconf/general.m4 (_AC_RUN_IFELSE, _AC_INIT_PREPARE):
4108 Don't remove core.* as it may remove valid user files.
4109 * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED)
4110 (AC_FUNC_UTIME_NULL): Likewise.
4112 2003-10-23 Akim Demaille <akim@epita.fr>
4115 * config/config.guess, config/config.sub: Upgrade from masters.
4117 2003-10-23 Akim Demaille <akim@epita.fr>
4119 * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Functions using
4120 AC_COMPILE_IFELSE that use break skip the clean up. So do it by
4123 2003-10-23 Akim Demaille <akim@epita.fr>
4125 * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_COMPILE_IFELSE):
4126 Don't forget to remove conftest.err.
4128 2003-10-23 Akim Demaille <akim@epita.fr>
4130 * lib/autoconf/general.m4 (_AC_LIBOBJ): Don't insert twice the
4131 same object file in $LIBOBJS.
4132 Reported by Alexandre Duret-Lutz & Derek Robert Price.
4133 * doc/autoconf.texi (Generic Functions): Adjust.
4135 2003-10-20 Paul Eggert <eggert@twinsun.com>
4137 * lib/m4sugar/m4sh.m4 (_AS_TR_SH_PREPARE, _AS_TR_CPP_PREPARE):
4138 Use 'eval', so that the resulting configure scripts work even if
4139 the current directory has a weird file name like 'y%s+%pp%;s%@%_%g'.
4141 2003-10-20 Daniel Jacobowitz <drow@mvista.com>
4143 * lib/autoconf/lang.m4 (AC_LANG_WERROR): New macro.
4144 * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_PREPROC_IFELSE)
4145 (_AC_LINK_IFELSE): Check the werror flag.
4146 * doc/autoconf.texi (Generic Compiler Characteristics): Document
4150 2003-10-20 Daniel Jacobowitz <drow@mvista.com>
4152 * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Override
4153 _AC_COMPILER_EXEEXT to attempt a link. If linking fails,
4154 override AC_LINK_IFELSE.
4156 2003-10-15 Paul Eggert <eggert@twinsun.com>
4158 * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug in
4159 pdksh 5.2.14. Bug reported by Ralf Corsepius.
4160 * doc/autoconf.texi (Shellology): Mention the Korn shell and pdksh.
4161 Mention /usr/dt/bin/dtksh on Solaris.
4162 (Shell Substitutions): Warn about $((...)).
4163 (Parentheses): New section.
4165 2003-10-15 Kevin Ryde <user42@zip.com.au>
4167 * doc/autoconf.texi (Function Portability): Add @prindex for exit.
4168 Add putenv and unsetenv. Add sysconf _SC_PAGE_SIZE.
4170 2003-10-13 Nathanael Nerode <neroden@gcc.gnu.org>
4172 * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork
4175 2003-10-11 Steven G. Johnson <stevenj@alum.mit.edu>
4177 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official
4178 name for the GNU Fortran 95+ compiler, 'gfortran', not 'g95'.
4180 2003-10-10 Andreas Schwab <schwab@suse.de>
4182 * bin/autoheader.in: Avoid empty first line in --version and
4184 * bin/ifnames.in: Likewise.
4186 2003-10-09 Paul Eggert <eggert@twinsun.com>
4188 * lib/Autom4te/XFile.pm: Don't assume -j is solo.
4189 Issue a more-informative diagnostic.
4190 Problems reported by Eric Sunshine.
4192 2003-10-08 Steven G. Johnson <stevenj@alum.mit.edu>
4194 * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Omit quoted
4195 -mGLOB_options_string stuff for Intel ifc, which can cause
4196 _AC_FC_LIBRARY_LDFLAGS to fail. Use (faster) case for
4197 pattern-matching instead of grep.
4199 2003-10-08 Steven G. Johnson <stevenj@alum.mit.edu>
4201 * doc/autoconf.texi: Document new FC Fortran macros.
4203 2003-10-08 Gary V. Vaughan <gary@gnu.org>
4205 * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Stub out a macro
4206 that future autopoint/aclocal/automake/autoreconf will be able
4207 to trace to find where to install local m4 macros.
4208 * doc/autoconf.texi (Input): Document it.
4211 2003-10-06 Gary V. Vaughan <gary@gnu.org>
4213 * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add
4214 -lcrtbegin.o to list of ignored flags and fix underquoting of
4217 2003-10-04 Steven G. Johnson <stevenj@ab-initio.mit.edu>
4219 * lib/autoconf/fortran.m4 (_AC_PROG_FC_G): Use language-specific
4220 cache variable instead of $G77 to decide whether to include -O2,
4221 since $G77 is specific to Fortran 77.
4223 2003-10-03 Steven G. Johnson <stevenj@alum.mit.edu>
4225 * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Support Absoft "-f
4226 free" flag. Re-order flags tested into rough order of popularity.
4228 2003-10-03 Steven G. Johnson <stevenj@alum.mit.edu>
4230 * lib/autoconf/fortran.m4 (AC_PROG_FC): Reverse the order of the
4231 arguments so that it can be used with syntax identical to
4232 AC_PROG_F77, and so that we can more easily decide to
4233 remove/deprecate the DIALECT optional argument in the future if it
4235 (AC_FC_FREEFORM): Exit 77 upon failure to fix test suite for
4236 non-freeform-supporting compilers. Document freeform flags.
4238 2003-10-03 Akim Demaille <akim@epita.fr>
4240 * configure.ac: Look for emacs, not macs.
4241 Reported by Eric Sunshine.
4243 2003-10-03 Akim Demaille <akim@epita.fr>
4245 * lib/autom4te.in (Autoreconf-preselections): Trace AC_CONFIG_AUX_DIR.
4246 * bin/autoreconf.in (autoreconf_current_directory): Create the
4247 AUX_DIR if needed, for sake of automake --add-missing etc.
4248 Suggested by Alexandre Duret-Lutz.
4250 2003-10-03 Akim Demaille <akim@epita.fr>
4252 * configure.ac: Quotation and formatting changes.
4253 (EMACS): Don't set it if it is not recent enough to support
4257 2003-10-02 Akim Demaille <akim@epita.fr>
4259 * bin/ifnames.in (&scan_file): Skip C++ comments.
4262 2003-10-01 Pavel Roskin <proski@gnu.org>
4264 * doc/autoconf.texi (Particular Structure Checks):
4265 Fix misspelling of HAVE_STRUCT_STAT_ST_BLOCKS.
4267 2003-10-01 Akim Demaille <akim@epita.fr>
4271 2003-09-30 Paul Eggert <eggert@twinsun.com>
4273 * lib/Autom4te/XFile.pm: Use Errno.
4274 (lock): Ignore ENOLCK errors. Problem reported Andreas Schwab in
4275 <http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.
4277 2003-09-30 Akim Demaille <akim@epita.fr>
4279 * config/announce-gen (&print_news_deltas): Extracted from...
4280 (&print_changelog_deltas): here.
4281 (&news_file): Rename as...
4284 2003-09-30 Nicolas Joly <njoly@pasteur.fr>
4286 * lib/autoconf/fortran.m4 (_AC_PROG_FC): Remove files which might
4287 have been created when invoking the compiler.
4288 * tests/fortran.at (GNU Fortran 77): Quote $G77.
4290 2003-09-29 Akim Demaille <akim@epita.fr>
4294 * config/mkinstalldirs: Upgrade.
4296 2003-09-28 Paul Eggert <eggert@twinsun.com>
4298 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set DUALCASE=1, for MKS sh.
4299 Problem reported by Lars J. Aas in
4300 <http://mail.gnu.org/archive/html/autoconf/2003-07/msg00042.html>.
4301 (_AS_MKDIR_P_PREPARE): Change "rm -fr ./-p" to the more-conservative
4302 "test -d ./-p && rmdir ./-p". Suggested by Andreas Schwab in:
4303 http://mail.gnu.org/archive/html/autoconf-patches/2003-09/msg00039.html
4305 2003-09-26 Akim Demaille <akim@epita.fr>
4307 * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Make sure the
4308 directory for AC_CONFIG_COMMANDS' first argument exists.
4309 This makes valid the invocation of _AC_SRCPATH that follows.
4310 Reported by Eric Sunshine.
4311 * doc/autoconf.texi (Configuration Commands): Adjust.
4313 2003-09-26 Akim Demaille <akim@epita.fr>
4315 * bin/autoscan.in (Autom4te::FileUtils): Use it for find_file.
4316 Reported by Ralf Corsepius.
4318 2003-09-26 Akim Demaille <akim@epita.fr>
4320 * lib/autoconf/general.m4 (AC_HELP_STRING): Don't overquote the
4322 Actually, use AU_ALIAS.
4325 2003-09-26 Paul Eggert <eggert@twinsun.com>
4327 * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): If mkdir -p . fails,
4328 rm -fr ./-p to remove junk left behind on NextStep and OpenStep.
4329 Problem reported by Eric Sunshine in:
4330 http://mail.gnu.org/archive/html/autoconf-patches/2002-12/msg00014.html
4332 2003-09-26 Akim Demaille <akim@epita.fr>
4334 The test suite are sometimes assigning timings incorrectly.
4335 Reported by Henk Krus.
4336 Diagnosed by Nicolas Joly.
4338 * lib/autotest/general.m4 (AT_CLEANUP): Rename AT_help as
4340 Instead of making AT_help a sequence of assignments to grow
4341 $at_help_all, just make AT_help_all be the growing contents of
4342 $at_help_all, and make a single assignment in...
4344 (at_times_skip): Flip the meaning and rename as...
4346 (AT_INIT): When summarizing the test that ran, remove
4347 $at_times_file after use, and check it is present before trying to
4350 2003-09-25 Akim Demaille <akim@epita.fr>
4354 * bin/Makefile.am (edit): Handle '@configure_input@'.
4355 (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate)
4356 (ifnames): chmod -w.
4357 * tests/wrapper.as (AUTOCONF, AUTOM4TE, ): Point to tests/
4358 executables, not bin/ executables! Otherwise all the magic needed
4359 to find non installed files is turned off. This caused a failure
4360 of test 40 and 41 that ran aclocal 1.8 which in turn ran autom4te
4361 as found in its environment (sent by tests/autoreconf): pointing
4362 to bin/autom4te that could not find its files.
4363 * tests/mktests.sh: Force the replacement of generated files, for
4364 the sake of "mv" program that are interactive when overwriting a
4366 * config/install-sh: Upgrade from CVS Automake.
4368 2003-09-23 Paul Eggert <eggert@twinsun.com>
4370 * doc/autoconf.texi (Limitations of Builtins): Document test -h
4371 versus test -L issues.
4373 2003-09-23 Daniel Jacobowitz <drow@mvista.com> and
4374 Paul Eggert <eggert@twinsun.com>
4376 Trivial change to support GCC's configuration procedure.
4377 * lib/autoconf/c.m4 (AC_PROG_CPP_WERROR): New macro.
4378 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Don't warn
4379 about inconsistency if the preprocessor is set to give errors for
4381 * doc/autoconf.texi (C Compiler Characteristics): Document this.
4383 2003-09-13 Alexandre Duret-Lutz <adl@gnu.org>
4385 * Makefile.am (autom4te-update, autom4te_files): Fetch Struct.pm
4386 and XFile.pm from Automake.
4387 * lib/Autom4te/XFile.pm: Update from Automake.
4389 2003-09-12 Akim Demaille <akim@epita.fr>
4393 2003-09-12 Akim Demaille <akim@epita.fr>
4395 * config/config.guess, config/config.sub, config/missing,
4396 * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm: Update
4399 2003-09-12 Akim Demaille <akim@epita.fr>
4401 * doc/autoconf.texi (Header Portability): Promote linux/types.h,
4404 2003-09-11 Akim Demaille <akim@epita.fr>
4406 * doc/autoconf.texi (Header Portability): linux/random.h.
4407 From Peter Hendrickson.
4409 2003-09-10 Akim Demaille <akim@epita.fr>
4411 * tests/mktests.sh (au_exclude_egrep): Make it harder to be
4412 willing to edit the output files.
4414 2003-09-10 Akim Demaille <akim@epita.fr>
4416 * tests/fortran.at (GNU Fortran 77): Also exercise AC_FC_SRCEXT
4418 * tests/mktests.sh: Skip AC_FC_SRCEXT.
4419 * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Likewise.
4421 2003-09-09 Akim Demaille <akim@epita.fr>
4423 * lib/Autom4te/FileUtils.pm (&update_file): s/cannot not/cannot/g.
4424 Reported by Gary Vaughan.
4425 * bin/autom4te.in (handle_m4): Likewise.
4427 2003-09-09 Akim Demaille <akim@epita.fr>
4429 * lib/Autom4te/FileUtils.pm (&update_file): Be sure not to leave
4432 2003-09-07 Paul Eggert <eggert@twinsun.com>
4434 * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS):
4435 Improve the accuracy of the wording about obsolescence.
4436 From a suggestion by Ian Lance Taylor in
4437 <http://mail.gnu.org/archive/html/autoconf/2003-09/msg00044.html>.
4439 2003-09-05 Paul Eggert <eggert@twinsun.com>
4441 * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Try -ffree-form too,
4442 for the benefit of g77 3.2. Fix suggested by Steven G. Johnson.
4444 2003-09-04 Akim Demaille <akim@epita.fr>
4446 * tests/mktests.sh (ac_exclude_list): Fix the filtering of
4449 2003-09-04 Akim Demaille <akim@epita.fr>
4451 * bin/autom4te.in: Use &fatal where more appropriate than &error.
4452 (freeze): When exiting, use $exit_code.
4453 * lib/autoconf/fortran.m4: Comment changes.
4455 2003-09-04 Akim Demaille <akim@epita.fr>
4457 * tests/mktests.sh (ac_exclude_list): Add AC_FC_FUNC.
4459 2003-09-02 Steven G. Johnson <stevenj@alum.mit.edu>
4461 Add support for newer Fortran dialects. The F77 interface is
4462 unchanged, and continues to support Fortran 77. New FC macros
4463 correspond to all the old F77 macros, with output variables FC,
4464 FCFLAGS, and FCLIBS. AC_PROG_FC defaults to picking the newest
4465 available dialect, but older dialects can be specified. There are
4466 new macros AC_FC_SRCEXT to set the source extension, and
4467 AC_FC_FREEFORM to accept free-form source files.
4469 * lib/autoconf/c.m4 (_AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++)):
4471 (AC_LANG_PROGRAM(C)): Invoke _AC_LANG_PROGRAM_C_FC_HOOKS if defined.
4472 * lib/autoconf/fortran.m4 (AC_LANG(Fortran), _AC_FORTRAN_ASSERT,
4473 _AC_LANG_ABBREV(Fortran), _AC_LANG_PREFIX(Fortran 77),
4474 _AC_LANG_PREFIX(Fortran), _AC_FC, AC_LANG_SOURCE(Fortran),
4475 AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran),
4476 AC_LANG_PREPROC(Fortran), AC_LANG_COMPILER(Fortran),
4477 _AC_FC_DIALECT_YEAR, _AC_F95_FC, _AC_F90_FC, _AC_F77_FC,
4478 _AC_PROG_FC, AC_PROG_FC, _AC_PROG_FC_G, _AC_PROG_FC_C_O,
4479 AC_PROG_FC_C_O, _AC_PROG_FC_V_OUTPUT, _AC_PROG_FC_V,
4480 _AC_FC_LIBRARY_LDFLAGS, AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN,
4481 AC_FC_DUMMY_MAIN, _AC_FC_MAIN, AC_FC_MAIN, __AC_FC_NAME_MANGLING,
4482 _AC_FC_WRAPPERS, AC_FC_WRAPPERS, _AC_FC_FUNC, AC_FC_FUNC,
4483 AC_FC_SRCEXT, AC_FC_FREEFORM):
4485 (AC_PROG_F77, AC_PROG_F77_C_O, AC_F77_LIBRARY_LDFLAGS,
4486 AC_F77_DUMMY_MAIN, AC_F77_MAIN, _AC_F77_NAME_MANGLING,
4487 AC_F77_NAME_MANGLING, AC_F77_WRAPPERS, AC_F77_FUNC):
4488 Rewrite in terms of the above.
4489 (_AC_PROG_F77_G, _AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V): Remove.
4490 * lib/autoconf/lang.m4 (_AC_LANG_PREFIX): New macro.
4491 * tests/acfortran.at: Test AC_FC_FREEFORM, AC_FC_FUNC,
4492 AC_FC_MAIN, AC_FC_SRCEXT, AC_FC_WRAPPERS, AC_PROG_FC_C_O.
4494 2003-09-02 Paul Eggert <eggert@twinsun.com>
4496 * doc/autoconf.texi (Limitations of Usual Tools, Limitations of Make):
4497 Document problems with timestamp resolution that 'make', 'cp -p', and
4500 2003-08-27 Akim Demaille <akim@epita.fr>
4502 * tests/m4sugar.at (cross_warning): Make sure to enable the
4503 output, so that we can track spurious m4sugar output.
4504 * tests/local.at: Require 2.57.
4505 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't m4_default the arguments that
4506 are defaulted by AT_CHECK anyway.
4507 Use AT_CHECK_AUTOM4TE.
4508 * lib/m4sugar/m4sugar.m4: There should be no output at all: add a
4511 2003-08-27 Akim Demaille <akim@epita.fr>
4513 * bin/autoheader.in: Issue the "Using auxiliary..." message only
4514 when -Wobsolete is set.
4515 Set it on by default.
4516 Suggested by Klee Dienes.
4518 2003-08-27 Akim Demaille <akim@epita.fr>
4520 * doc/autoconf.texi (AC_FUNC_FSEEKO, AC_SYS_LARGEFILE): More
4524 2003-08-26 Akim Demaille <akim@epita.fr>
4526 * doc/autoconf.texi (Output): Make clear that one can run code
4529 2003-08-25 Akim Demaille <akim@epita.fr>
4531 * config/announce-gen, GNUmakefile, Makefile.maint: Update from
4534 2003-08-25 Alexandre Duret-Lutz <adl@gnu.org>
4536 * bin/autoreconf.in (parse_args): Do not pass --no-force to
4537 Automake versions prior to 1.8.
4539 2003-08-25 Akim Demaille <akim@epita.fr>
4541 * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
4544 2003-08-24 Akim Demaille <akim@epita.fr>
4546 * configure.ac: Bump to 2.57c.
4548 2003-08-22 Akim Demaille <akim@epita.fr>
4552 * Makefile.cfg (local-checks-to-skip): New.
4553 * Makefile.maint (local-check): Rename as...
4554 (local-checks-available): this.
4557 * Makefile.am (EXTRA_DIST): Add Makefile.cfg.
4558 * configure.ac: Require Automake 1.7.6.
4560 2003-08-22 Akim Demaille <akim@epita.fr>
4562 Output stack traces in warnings.
4564 * lib/m4sugar/m4sugar.m4 (_m4_warn): New.
4565 Replace the former...
4566 (m4_warn): Pass the call stack to _m4_warn.
4567 * bin/autom4te.in: Adjust to output the call stack.
4568 * tests/m4sugar.at (m4@&t@_warn): Adjust.
4570 2003-08-22 Akim Demaille <akim@epita.fr>
4572 * lib/Autom4te/Request.pm, lib/Autom4te/C4che.pm: New.
4573 * bin/autom4te.in: Adjust.
4575 2003-08-21 Akim Demaille <akim@epita.fr>
4577 * lib/Autom4te/General.pm (&file_name_is_absolute): Remove.
4579 (&getopt): Adjust the note and verb channels, depending upon
4581 * bin/autoheader.in, bin/autom4te.in, bin/autoscan.in,
4582 * bin/autoupdate.in: Adjust.
4583 Use &verb, not &verbose.
4585 2003-08-21 Akim Demaille <akim@epita.fr>
4587 * bin/autoheader.in (&parse_args): Use &parse_warnings and
4589 ($help): Use Autom4te::ChannelDefs::usage.
4590 * bin/autoscan.in: Use Autom4te::ChannelDefs.
4591 * lib/Autom4te/General.pm: Don't export error: you don't own it.
4593 2003-08-21 Akim Demaille <akim@epita.fr>
4595 First stab at preserving warnings between calls to autom4te,
4596 including when the cache is used.
4598 There are still several issues: (i) there are too many runs of m4
4599 (one for include, one for warnings, and some more), (ii) warnings
4600 spreading on several lines are not handled gracefully, (iii) the
4601 code meant to have the call stack display for errors does not work
4602 (its handling should move from m4 to autom4te).
4604 * bin/autom4te.in Autom4te::Channels, Autom4te::ChannelDefs):
4606 (@preselect): Add m4_warn.
4607 ($exit_status): Remove, use $exit_code.
4608 ($help): Use Autom4te::ChannelDefs::usage.
4609 (&handle_m4): No longer define the m4_warnings.
4610 At each run, extract and report the warnings.
4611 Always cache the result, including if the exit status is on
4612 failure, since if nothing changes, we should result in the same
4613 failure, hence we can use the cache.
4614 * lib/m4sugar/m4sugar.m4 (m4_warning_ifelse, _m4_warning_ifelse)
4615 (_m4_warning_error_ifelse, __m4_warning_error_ifelse, _m4_warn):
4617 (m4_warn): Redefine as a do-nothing: it is its invocation that
4618 matters, as warnings are now reported via traces.
4619 * lib/autoconf/general.m4 (AC_DIAGNOSE): Don't make it a copy of
4620 the contents of m4_warn: make it _call_ m4_warn, so that tracing
4621 the latter reveals calls to the former.
4625 * tests/m4sugar.at (m4@&t@_warn): Use existing warning categories.
4627 2003-08-21 Akim Demaille <akim@epita.fr>
4629 * bin/autoreconf.pm (Autom4te::Channels, Autom4te::ChannelDefs):
4632 2003-08-21 Akim Demaille <akim@epita.fr>
4634 * lib/Autom4te/FileUtils.pm (&find_file): Walk the @include in
4636 * lib/Autom4te/ChannelDefs.pm: Doc typos.
4637 (&parse_warnings): Accept a list of warning requests.
4638 (&usage): Return a string, not a side effect.
4639 (cross): New warning category.
4641 2003-08-21 Akim Demaille <akim@epita.fr>
4643 * lib/Autom4te/Configure_ac.pm (&find_configure_ac)
4644 (&require_configure_ac): Accept an optional directory argument.
4645 ($configure_ac): Remove.
4646 * lib/Autom4te/General.pm (&find_configure_ac, &canonfile)
4648 * bin/autoheader.in, bin/autoreconf.in, bin/autoupdate.in,
4649 * bin/autoscan.in: Adjust.
4651 2003-08-20 Akim Demaille <akim@epita.fr>
4653 * bin/autoheader.in: Remove duplicate 'use Autom4te::FileUtils'.
4654 Reported by Alexandre Duret-Lutz.
4656 2003-08-20 Akim Demaille <akim@epita.fr>
4658 * bin/autoupdate.in, bin/autoheader.in, bin/autoreconf.in,
4659 * bin/autom4te: Adjust.
4660 In particular, be Autoconf tools are really silent when properly
4661 working, bind the verbosity of the 'note' channel to $verbose.
4662 * lib/Autom4te/General.pm (&find_file, &mtime, &update_file)
4663 (&xsystem, &contents): Remove, since they are exported by...
4664 * lib/Autom4te/FileUtils.pm: this.
4666 * lib/Autom4te/General.pm (&up_to_date_p): Move to...
4667 * lib/Autom4te/FileUtils.pm: here.
4669 2003-08-20 Akim Demaille <akim@epita.fr>
4671 * lib/Autom4te/Channels.pm, lib/Autom4te/ChannelDefs.pm
4672 * lib/Autom4te/Configure_ac.pm, lib/Autom4te/FileUtils.pm: New,
4675 2003-08-20 Akim Demaille <akim@epita.fr>
4677 * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
4678 (autom4te-update): New.
4679 * Makefile.cfg (update): Bind autom4te-update.
4681 2003-08-19 Derek Price <derek@ximbiot.com>
4683 * lib/autotest/general.m4: Comment various HELP_* diversions.
4684 (PARSE_ARGS_BEGIN): New section for option parsing related
4686 (AT_ARG_OPTION,AT_ARG_OPTION_ARG,_AT_ARG_OPTION): New macros to define
4687 package specific options and associated help.
4689 2003-08-19 Akim Demaille <akim@epita.fr>
4691 * config/announce-gen, Makefile.cfg: New.
4692 * Makefile.am: Adjust.
4693 * GNUmakefile, Makefile.maint: Update from CVS Coreutils.
4695 2003-08-19 Alexandre Duret-Lutz <adl@gnu.org>
4697 * lib/autom4te.in (Automake-preselections): Preselect
4698 AC_CONFIG_LIBOBJ_DIR, AC_CONFIG_LINKS, m4_include,
4701 2003-08-19 Alexandre Duret-Lutz <adl@gnu.org>
4703 * lib/autom4te.in (Autoconf): Move all args except aclocal.m4? into ...
4704 (Autoconf-without-aclocal-m4): ... this new language.
4705 * doc/autoconf.texi (autom4te Invocation): Mention
4706 Autoconf-without-aclocal-m4.
4708 2003-08-18 Derek Price <derek@ximbiot.com>
4710 * doc/autoconf.texi (Writing testsuite.at): Document RUN-IF-FAIL &
4711 RUN-IF-PASS optional arguments.
4713 2003-08-18 Derek Price <derek@ximbiot.com>
4715 * doc/autoconf.texi (Programming in M4sh): Add doc for AS_IF.
4717 2003-08-16 Derek Price <derek@ximbiot.com>
4719 * doc/autoconf.texi (Writing testsuite.at): Document defaults for
4720 STDOUT & STDERR arguments.
4722 2003-08-14 Derek Price <derek@ximbiot.com>
4724 * lib/autotestgeneral.m4 (AT_INIT): Reformat test summary line to print
4725 DESCRIPTION rather than FILE and LINE. Shorten result to fit in new,
4726 shorter column three. Add DESCRIPTION to log file content.
4728 2003-08-13 Derek Price <derek@ximbiot.com>
4730 * lib/autotest/general.m4 (AT_INIT): Correct typo in final status
4733 2003-08-12 Derek Price <derek@ximbiot.com>
4735 * lib/autotest/general.m4 (AT_CHECK): Use new _AT_CHECK API.
4736 (AT_CHECK_NOESCAPE): Move core functionality to...
4737 (_AT_CHECK): ...this new macro.
4739 2003-08-07 Derek Price <derek@ximbiot.com>
4741 * lib/autotest/general.m4 (AT_CHECK): Move core functionality...
4742 (AT_CHECK_NOESCAPE): ...to this new macro.
4744 2003-07-31 Paul Eggert <eggert@twinsun.com>
4746 * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug
4747 in Bash 2.01. Problem reported by Brian Gough in
4748 <http://mail.gnu.org/archive/html/bug-autoconf/2003-07/msg00106.html>.
4750 2003-07-25 John W. Eaton <jwe@bevo.che.wisc.edu>
4752 * lib/autoconf/fortran.m4 (AC_F77_LIBRARY_LDFLAGS): Also ignore
4753 -lcrt1.o, for OS X. (trivial change)
4755 2003-07-07 Paul Eggert <eggert@twinsun.com>
4757 * lib/autoconf/c.m4 (AC_C_INLINE): Wrap the '#define inline ...'
4758 inside '#ifndef __cplusplus'. Problem reported by
4761 2003-07-06 Bill Clarke <llib@computer.org>
4763 * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Cast pointer to
4764 'long', not 'int', for benefit of Sun's recent C++ compilers
4765 (trivial change). See:
4766 http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00007.html
4767 (This really should be 'intptr_t', not 'long', but that would
4770 2003-06-25 Akim Demaille <akim@epita.fr>
4772 * lib/Makefile.am (autom4te.cfg): Make it read only.
4773 Depend on Makefile since it contains substitutions.
4775 * lib/autom4te.in (args): Add local.at? for Autotest args.
4776 This change was made on autom4te.cfg which is generated.
4777 Reported by Raja R. Harinath.
4779 2003-06-25 Akim Demaille <akim@epita.fr>
4781 * doc/autoconf.texi (Header Portability): sys/mount.h.
4782 From Gareth McCaughan.
4784 2003-06-23 Akim Demaille <akim@epita.fr>
4786 * lib/autotest/general.m4 (AT_INIT): Report a single config.log,
4787 not all of them. This fixes 1. the fact that when testing
4788 Autoconf there are many many config.log, 2. the incorrect use of
4789 top_srcdir to find config.log.
4790 Don't mix the detailed output of failed test with the summary of
4791 failures. Rather, append detailed log afterwards.
4793 2003-06-23 Akim Demaille <akim@epita.fr>
4795 * tests/local.at (AT_CHECK_CONFIGURE): Adjust to the verbose being
4796 always run: output config.log on $at_group_log.
4798 2003-06-23 Akim Demaille <akim@epita.fr>
4800 * tests/torture.at (#define header templates): Don't use quotes in
4801 C++ comments as it puzzles Emacs' sh font-lock-mode.
4803 2003-06-23 Akim Demaille <akim@epita.fr>
4805 * tests/mktests.sh (au_exclude_egrep): Fix output copyright notice.
4806 * lib/autom4te.cfg (args): Add local.at? for Autotest args.
4807 * tests/atspecific.m4: Rename as...
4808 * tests/local.at: This.
4809 * tests/suite.at: Move the globals into...
4810 * tests/local.at: here.
4811 * tests/Makefile.am: Adjust.
4812 * doc/autoconf.texi (testsuite Scripts): Adjust.
4814 2003-06-21 Kevin Ryde <user42@zip.com.au>
4816 * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Extend test program to get an
4817 error from OSF 4.0 Compaq cc in its default almost-ANSI mode, thereby
4818 ensuring we add -std1 for full-ANSI.
4820 * doc/autoconf.texi (hdrindex): New macro.
4821 Add index entries for portability of various standard header files.
4823 2003-06-20 Akim Demaille <akim@epita.fr>
4825 * configure.ac: Bump to 2.57b.
4827 2003-06-20 Akim Demaille <akim@epita.fr>
4831 2003-06-20 Akim Demaille <akim@epita.fr>
4833 * bin/autom4te.in: Don't rely on $HOME being defined.
4834 Reported by Marc Espie as PR/233.
4836 2003-06-20 Akim Demaille <akim@epita.fr>
4838 * lib/autotest/general.m4: Use at_times_file only if used.
4841 2003-06-20 Akim Demaille <akim@epita.fr>
4843 * config/config.guess, config/config.sub, config/elisp-comp,
4844 * config/install-sh, config/mkinstalldirs, doc/standards.texi:
4845 Update from masters.
4847 2003-06-11 Paolo Bonzini <bonzini@gnu.org>
4849 * doc/autoconf.texi (Writing testsuite.at): Document AT_XFAIL_IF
4850 * lib/autotest/general.m4 (AT_XFAIL_IF): New macro.
4851 (TEST_SCRIPT): New diversion.
4852 (AT_SETUP): Divert output to TEST_SCRIPT and move some code...
4853 (AT_CLEANUP): ...to here. Undivert TEST_SCRIPT.
4854 (AT_INIT): Support for expected failures.
4856 2003-06-02 Akim Demaille <akim@epita.fr>
4858 * bin/autom4te.in, bin/autoscan.in, bin/autoheader.in: White space
4860 * lib/Autom4te/General.pm (&backname): Remove, no longer used by
4861 Autoconf nor Automake.
4862 (&contents): New, from Automake.
4865 2003-05-28 Paul Eggert <eggert@twinsun.com>
4867 * NEWS, doc/autoconf.texi (Particular Functions),
4868 lib/autoconf/functions.m4 (AC_FUNC_MKTIME): Check that mktime
4869 is the inverse of localtime.
4871 2003-05-25 Alexandre Duret-Lutz <adl@gnu.org>
4873 * lib/Autom4te/General.pm (END): Print diagnostics to STDERR.
4874 (handle_exec_errors): New function. Work around $! being
4875 altered by WEXITSTATUS.
4876 (xqx, xsystem): Use handle_exec_errors.
4878 2003-05-23 Alexandre Duret-Lutz <adl@gnu.org>
4880 * lib/Autom4te/General.pm (END): Rewrite exit code processing.
4881 Do not call `_exit()', simply modify `$?'.
4882 (xsystem): Reset $! before running system, and check it afterward.
4883 * tests/tools.at (autoupdating AC_PREREQ): Expect exit status
4884 63 for version mismatches.
4886 2003-05-23 Akim Demaille <akim@epita.fr>
4888 * lib/autoconf/status.m4: Prefer "TAB-SP" to "SP-TAB", because of
4889 Emacs' dangerous whitespace.el behavior (smashing "useless" spaces in
4890 the middle of a line).
4891 * lib/m4sugar/m4sugar.m4: Likewise.
4892 Remove useless spaces in comments.
4894 2003-05-23 Akim Demaille <akim@epita.fr>
4896 * lib/m4sugar/m4sugar.m4 (m4_version_prereq): Failure causes an
4897 exit 63, so that we (or Automake's "missing") can tell the
4898 difference with a plain failure.
4899 * doc/autoconf.texi (Notices): Adjust.
4901 2003-05-23 Akim Demaille <akim@epita.fr>
4903 * Makefile.am, bin/Makefile.am, config/Makefile.am,
4904 * doc/Makefile.am, lib/autoconf/Makefile.am, tests/Makefile.am:
4905 White spaces cleanup.
4907 2003-05-22 Jim Meyering <jim@meyering.net>
4908 Paul Eggert <eggert@twinsun.com>
4910 * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
4911 Remove `#include <stdlib.h>' from the list; we should never
4912 make confdefs.h include <stdlib.h> or <cstdlib>, because the
4913 resulting namespace pollution would cause other tests to fail.
4914 Configure scripts run with some older versions of g++ and HP's
4915 aCC would fail due to such an #include. Problems reported by
4916 Matthew Mueller in <http://bugs.debian.org/120704> and by
4918 <http://mail.gnu.org/archive/html/autoconf/2003-05/msg00063.html>.
4919 In the test, use the test declaration before including <stdlib.h>,
4920 as that's closer to how it'll be used.
4922 2003-05-23 Akim Demaille <akim@epita.fr>
4924 * doc/autoconf.texi (Header Portability): ucred.h.
4927 2003-05-22 Paolo Bonzini <bonzini@gnu.org>
4929 Overhaul Autotest's logging: generate separate log files
4930 in testsuite.dir/NNN/testsuite.log, and append them to
4931 testsuite.log instead of re-running the test verbosely.
4933 * lib/autotest/general.m4 (AT_INIT): Use a single redirected
4934 file descriptor, write 0 to at_status_file instead of setting
4935 at_status=0, initialize some new variables (at_status_file,
4936 at_group_log, at_suite_log, at_tee_pipe). Remove the cruft
4937 to rerun the tests, instead append the at_group_log to the
4938 at_suite_log when a test fails.
4939 (AT_SETUP): pipe the test case's output into at_tee_pipe,
4940 with the AS_MESSAGE_LOG_FD redirected to stdout.
4941 (AT_CLEANUP): save the output status in $at_status_file
4942 and restore it, redirect the AS_MESSAGE_LOG_FD back to
4944 (AT_CHECK): since tests are run with a redirected stdout,
4945 and used to be re-run in verbose mode, turn some $at_verbose
4946 into echo, and don't redirect the output of testing stdout
4949 * lib/autotest/autoconf.texi (testsuite Scripts): Update
4950 the name of the debugging directory and information about
4953 2003-05-22 Paolo Bonzini <bonzini@gnu.org>
4955 * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd
4958 2003-05-22 Akim Demaille <akim@epita.fr>
4960 * lib/autoconf/autotest.m4, lib/autoconf/autoupdate.m4
4961 * lib/autoconf/fortran.m4 lib/autoconf/general.m4
4962 * lib/autoconf/headers.m4 lib/autoconf/oldnames.m4
4963 * lib/autoconf/status.m4: Fix and adjust copyright notices.
4965 2003-05-22 Akim Demaille <akim@epita.fr>
4967 * aclocal.m4, bin/autoconf.as, lib/autoconf/autoconf.m4,
4968 * lib/autoconf/autoheader.m4, lib/autoconf/autoupdate.m4,
4969 * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
4970 * lib/autoconf/general.m4, lib/autoconf/headers.m4,
4971 * lib/autoconf/lang.m4, lib/autoconf/libs.m4,
4972 * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
4973 * lib/autoconf/status.m4, lib/autoconf/types.m4,
4974 * lib/autotest/general.m4, lib/m4sugar/m4sugar.m4,
4975 * tests/atspecific.m4, tests/base.at, tests/compile.at,
4976 * tests/foreign.at, tests/m4sh.at, tests/semantics.at,
4977 * tests/tools.at, tests/torture.at:
4978 Whitespace clean up.
4979 Suggested by Jim Meyering.
4981 2003-05-22 Akim Demaille <akim@epita.fr>
4983 * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Restore smashed
4984 ' \t' as '\t ' so that Emacs' whitespace.el keep it.
4985 Reported by Jim Meyering.
4987 2003-05-22 Akim Demaille <akim@epita.fr>
4989 * doc/autoconf.texi: Replace AC_HELP_STRING AS_HELP_STRING.
4990 Add AC_HELP_STRING to the obsolete macros section.
4992 Use '@.' for sentences that ended in a capital letter.
4995 2003-05-22 Akim Demaille <akim@epita.fr>
4997 * config/config.guess, config/config.sub, config/elisp-comp,
4998 * config/install-sh, config/mdate-sh, config/mkinstalldirs,
4999 * config/texinfo.tex, doc/standards.texi: Update from masters.
5001 2003-05-21 Paolo Bonzini <bonzini@gnu.org>
5003 * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Escape the RHS before passing
5006 2003-05-21 Akim Demaille <akim@epita.fr>
5008 * bin/autoupdate.in ($m4): Fix quotation.
5009 Reported by Martin Mokrejs.
5011 2003-05-19 Paul Eggert <eggert@twinsun.com>
5013 * ChangeLog, ChangeLog.2, THANKS, lib/m4sugar/m4sugar.m4:
5014 Remove non-ASCII characters.
5016 2003-05-18 Paolo Bonzini <bonzini@gnu.org>
5018 * tests/semantics.at (AC_SEARCH_LIBS): New test.
5019 * tests/semantics.at (AC_CHECK_HEADERS_OLD,
5020 AC_CHECK_HEADERS_NEW): New tests.
5022 2003-05-17 Akim Demaille <akim@epita.fr>
5024 * lib/autoconf/functions.m4: Use the default includes so that
5025 memcmp be declared before being tested.
5026 Reported by Sander Niemeijer.
5027 (AC_FUNC_ERROR_AT_LINE, AC_FUNC_GETGROUPS, AC_FUNC_STRNLEN): Likewise.
5028 * doc/autoconf.texi (Default Includes): Document
5029 AC_INCLUDES_DEFAULT.
5031 2003-05-17 Akim Demaille <akim@epita.fr>
5033 * lib/autoconf/specific.m4: Include signal.h and unistd.h.
5034 * doc/autoconf.texi (Obsolete Macros): Adjust.
5035 Reported by Werner LEMBERG and Debian Bug 190886.
5037 2003-05-16 Akim Demaille <akim@epita.fr>
5039 * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): s/FOO/as_foo/ to avoid
5040 user name space clashes.
5041 Reported by Bruno Haible.
5043 2003-05-16 Akim Demaille <akim@epita.fr>
5045 * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
5046 * bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make
5047 them uniform, and more robust to Perl special characters.
5048 Reported by Martin Mokrejs.
5050 2003-05-14 Akim Demaille <akim@epita.fr>
5052 * tests/foreign.at (Libtool): Skip all Libtools pre 1.4.
5054 2003-05-14 Akim Demaille <akim@epita.fr>
5056 * doc/autoconf.texi (Header Portability): X11/extensions/scrnsaver.h,
5059 2003-05-12 Akim Demaille <akim@epita.fr>
5061 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Improve the
5063 From Matthias Andree.
5065 2003-05-07 Alexandre Duret-Lutz <adl@gnu.org>
5067 * lib/Autom4te/XFile.pm (lock, truncate): Do not pass @_ to flock
5070 2003-05-06 Akim Demaille <akim@epita.fr>
5072 Don't try to be smart with aclocal 1.8+ because (i) aclocal no
5073 longer updates aclocal.m4 if useless, (ii) if a file m4_included
5074 by aclocal.m4 is changed it might require the importing of another
5075 m4 extension file, i.e., aclocal must be run.
5077 * bin/autoreconf.in (&run_aclocal, $aclocal_supports_force): New.
5078 (&parse_args): Use --force with aclocal if required and supported.
5079 (&autoreconf_current_directory): Use &run_aclocal.
5081 2003-05-06 Akim Demaille <akim@epita.fr>
5083 Lock autom4te's cache.
5085 * lib/Autom4te/XFile.pm ($me, &name, &lock, &truncate, &seek): New.
5086 * bin/autom4te.in (&Request::save, &Request::load): Use an IO::File
5087 argument instead of a file name, so that the request file remains
5088 open during the whole autom4te run.
5089 ($icache_file): New.
5090 (&freeze): Lock the $icache_file.
5092 2003-04-29 Derek Price <derek@ximbiot.com>
5094 * lib/autotest/general.m4 (AT_KEYWORDS): Don't use a comma as the
5095 seperator with m4_append_uniq(). It doesn't work.
5096 (AT_CLEANUP): Add `;' to end of at_help_all.
5097 (AT_INIT): Allow --keywords to be specified more than once. When
5098 grepping $at_help_all for keywords, use the field and keyword
5099 seperators to ensure a complete keyword match. Alter at_prev handling
5100 to support the new --keywords behavior.
5102 2003-04-27 Karl Berry <karl@freefriends.org>
5104 * doc/autoconf.texi: Make the dir entries in the autoconf manual
5105 align better with others. I also made some of the individual
5106 entries on one line, for brevity and to make it easier for me to
5107 sort my dir-example file in the Texinfo distribution :).
5109 2003-04-12 Jim Meyering <jim@meyering.net>
5111 * NEWS: Mention the new macro.
5112 * lib/autoconf/c.m4 (AC_C_RESTRICT): New macro.
5113 * doc/autoconf.texi (C Compiler): Describe AC_C_RESTRICT.
5114 * tests/c.at: Test AC_C_RESTRICT.
5115 * tests/mktests.sh (ac_exclude_list): Add exclusion for AC_C_RESTRICT.
5117 2003-04-08 Akim Demaille <akim@epita.fr>
5119 * bin/ifnames.in: Skip C++ comments.
5122 2003-04-08 Akim Demaille <akim@epita.fr>
5124 * GNUmakefile (SHELL): Don't assume sh is in /bin/.
5125 From Ilya Zakharevich.
5127 2003-04-08 Akim Demaille <akim@epita.fr>
5129 * doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
5132 2003-04-01 Derek Price <derek@ximbiot.com>
5134 * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Correct syntax error
5135 from Akim's checkin of 2003-03-29.
5137 2003-04-01 Derek Price <derek@ximbiot.com>
5139 * tests/torture.at (Configuring subdirectories): Add missing
5140 close-quote for Akim's change from 2003-03-28.
5142 2003-04-01 Akim Demaille <akim@epita.fr>
5144 * doc/autoconf.texi (ac, at, ms): Rename these indexes as...
5145 (AC, AT, MS): these.
5146 (shortindexflag, @acindex, @ahindex, @asindex, @atindex, @msindex):
5149 * doc/Makefile.am (CLEANFILES): Adjust.
5150 (TEXI2DVI): Make it --batch.
5152 2003-03-31 Derek Price <derek@ximbiot.com>
5154 * lib/autotest/general.m4: Revert the checkin from 2003-03-27
5155 which removed the main loop.
5156 Thanks to Akim Demaille.
5158 2003-03-29 Akim Demaille <akim@epita.fr>
5160 * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Skip OS/2's install,
5162 From Ilya Zakharevich.
5164 2003-03-29 Akim Demaille <akim@epita.fr>
5166 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): The
5167 documentation to read is Autoconf's.
5168 Suggested by Paul Eggert.
5170 2003-03-28 Akim Demaille <akim@epita.fr>
5172 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Suggest
5173 reading the section "Present But Cannot Be Compiled" when the
5174 header causes problems.
5176 2003-03-28 Akim Demaille <akim@epita.fr>
5178 * tests/torture.at (Configuring subdirectories): Require aclocal
5179 1.4, otherwise the test fails, as it does support configure.ac.
5180 This fixes the "test 40 failed" bug reports.
5182 2003-03-28 Akim Demaille <akim@epita.fr>
5184 * doc/autoconf.texi (C Compiler): `#line' portability.
5185 From Paul Eggert and Nelson H. F. Beebe.
5187 2003-03-27 Derek Price <derek@ximbiot.com>
5189 * lib/autotest/general.m4: Eliminate main loop and reorganize test
5190 layout in order to allow scripting around test groups.
5192 2003-03-27 Derek Price <derek@ximbiot.com>
5194 * lib/autotest/general.m4 (PARSE_ARGS,PARSE_ARGS_END,HELP,HELP_MODES,
5195 HELP_TUNING,HELP_OTHER,HELP_END,PREPARE_TESTS,TESTS_END): Define and
5196 use new diversions in preparation for accepting new arguments and
5197 allowing scripting around tests.
5198 (OPTIONS,TAIL): Remove these diversions to make way for the ones above.
5200 2003-03-26 Derek Price <derek@ximbiot.com>
5202 * lib/autoconf/general.m4 (AC_ARG_VAR): Use AS_HELP_STRING instead of
5203 obsolete AC_HELP_STRING.
5204 (AC_HELP_STRING): AU_DEFUN to...
5205 * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): ...here.
5206 * tests/m4sh.at (AS_HELP_STRING): New test.
5208 * tests/acgeneral.at: Regenerated.
5210 2003-03-26 Derek Price <derek@ximbiot.com>
5212 * lib/autotest/general.m4: s/DEFAULT/DEFAULTS/ since it makes more
5213 sense. Verbosify the diversion definitions comment.
5215 2003-03-26 Derek Price <derek@ximbiot.com>
5217 * lib/autotest/general.m4 (AT_INIT): Remove redundant call to
5220 2003-03-21 Eric Siegerman <eric_97@pobox.com>
5222 * doc/autoconf.texi (Present But Cannot Be Compiled):
5223 Grammar fixes and minor rewording. (trivial change)
5225 2003-03-06 Paul Eggert <eggert@twinsun.com>
5227 Work around a problem noted by Nelson H. F. Beebe with coreutils
5228 4.5.9: Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08
5229 2002/05/09) rejects '#line 32768 "configure"' because the line
5231 * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Do not generate
5233 * lib/autoconf/lang.m4 (AC_LANG_SOURCE): Fix comment to match this.
5234 * doc/autoconf.texi (Generating Sources): Document this.
5236 2003-03-01 Richard Dawe <rich@phekda.freeserve.co.uk>
5238 * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Normalize
5239 file name for the m4 program, when it has an "exe" file extension.
5240 DJGPP's error messages include the error code in brackets -
5241 remove the error code during normalization.
5243 2003-02-28 Akim Demaille <akim@epita.fr>
5245 * doc/autoconf.texi (Present But Cannot Be Compiled): New.
5247 2003-02-28 Alexandre Duret-Lutz <adl@gnu.org>
5249 * doc/autoconf.texi (Limitations of Make): Remove the section
5250 about `$<' in inference rules, it was a bogus interpretation of
5251 an old Automake change. Discuss NetBSD, FreeBSD, OpenBSD, and
5252 Tru64 make in the "target lookup" section.
5253 (Automake): Automake 1.5+ no longer requires special tools to be
5254 present on the developer's host.
5256 2003-02-26 Richard Dawe <rich@phekda.freeserve.co.uk>
5258 * bin/autoheader.in (BEGIN): For DJGPP SHELL may not be set
5259 to a shell that can handle redirection or quoting correctly.
5260 Override SHELL with the shell detected by configure.
5261 Use of $^O suggested by Tim van Holder.
5262 * bin/autom4te.in (BEGIN): Likewise.
5263 * bin/autoreconf.in (BEGIN): Likewise.
5264 * bin/autoscan.in (BEGIN): Likewise.
5265 * bin/autoupdate.in (BEGIN): Likewise.
5266 * bin/ifnames.in (BEGIN): Likewise.
5268 * bin/ifnames.in: Add final newline to help and version messages.
5270 * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Translate colons,
5271 to cope with DOS-style absolute paths, when constructing
5274 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES):
5275 When constructing paths with IFS=:, quote the path. If we're
5276 constructing a DOS-style absolute path, we don't want to split it
5279 * tests/atspecific.m4 (AT_CHECK_CONFIGURE): Fix typo
5282 2003-02-25 Pavel Roskin <proski@gnu.org>
5284 * bin/autoheader.in: Add missing newline when printing
5285 suggestion how change AC_DEFINE call.
5287 2003-02-24 Paul Eggert <eggert@twinsun.com>
5289 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix typo in
5290 2002-09-01 patch by replacing "test -n" with "test -z".
5291 This fixes a bug found by Jeff Painter and reported by Tom Epperly in
5292 <http://mail.gnu.org/archive/html/autoconf/2003-02/msg00139.html>.
5294 * doc/autoconf.texi (Shell Substitutions): test -n -> test -z,
5295 to fix a mismatch between example and discussion.
5297 2003-02-24 Kevin Ryde <user42@zip.com.au>
5299 * doc/autoconf.texi (Limitations of Builtins): Add notes on printf
5300 format starting with "-".
5302 2003-02-20 Alexandre Duret-Lutz <adl@gnu.org>
5304 * doc/autoconf.texi (Limitations of Make): `foo=bar make -e'
5305 is not portable inside Makefile.
5307 2003-02-20 Akim Demaille <akim@epita.fr>
5309 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): When
5310 compiler says yeah, but preproc says nope, compiler is right.
5311 Conversely, prompt the reader to send a bug report to the
5312 maintainers of the package, not of Autoconf.
5314 2003-02-20 Klee Dienes <kdienes@apple.com>
5316 * bin/autoreconf.in (autoreconf_current_directory): Properly
5317 handle an empty aclocal.m4.
5319 2003-02-20 Akim Demaille <akim@epita.fr>
5321 * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote
5325 2002-12-23 Paul Eggert <eggert@twinsun.com>
5327 * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Define $1 to an
5328 innocuous variant befor including <limits.h> or <assert.h>. This
5329 works around a bug reported by Albert Chin: HP-UX 11i
5330 (and earlier versions) have a <limits.h> that declares
5331 gettimeofday and many other functions.
5333 2002-12-03 Paul Eggert <eggert@twinsun.com>
5337 * NEWS, configure.ac: Update version.
5339 * doc/fdl.texi: Upgrade to FDL version 1.2.
5341 * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
5342 nontrivially in main's body, so that f's external declaration is
5343 not optimized away in AIX. This should fix the bug reported by
5345 <http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
5347 * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
5348 _AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
5349 defined, to support freestanding compilers. This should fix the
5350 bug reported by Momchil Velkov in
5351 <http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
5353 * doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
5354 arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
5355 obsolete AC_CHECK_TYPE. The missing empty arg was reported
5356 by Simon Josefsson in
5357 <http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
5359 * Makefile.maint (www-gnu): New macro.
5360 (standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
5361 the location has moved.
5363 2002-12-02 Martin Frydl <martin@systinet.com>
5365 * bin/autom4te.in (at_flatten): rewritten to avoid M4 problem when
5366 \(.*\) match is too long and there is something more to be checked.
5367 <http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>
5369 2002-11-15 Akim Demaille <akim@epita.fr>
5373 * config/install-sh: chmod +x.
5375 * config/move-if-change: Indenting changes.
5376 * Makefile.am (AUTOMAKE_OPTIONS): Move to...
5377 * configure.ac (AM_INIT_AUTOMAKE): here.
5380 2002-11-14 Akim Demaille <akim@epita.fr>
5384 * config/config.guess, config/config.sub, config/install-sh:
5385 Update from masters.
5387 2002-11-14 Akim Demaille <akim@epita.fr>
5389 * Makefile.maint: Sync with Bison, i.e.:
5390 (po-check): Scan .l and .y files instead of the
5391 .c and the .h files that they generate. This fixes the bug
5392 reported by Tim Van Holder in:
5393 <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
5394 Look for N_ as well as for _. Try to avoid matching #define for
5398 2002-11-14 Akim Demaille <akim@epita.fr>
5400 * doc/autoconf.texi (C Compiler): Compiling several files at once.
5401 From Paul Eggert and Albert Chin-A-Young.
5403 2002-11-14 Akim Demaille <akim@epita.fr>
5405 * doc/autoconf.texi (C Compiler): Solitary backslashes.
5406 From Paul Eggert and Albert Chin-A-Young.
5408 2002-11-14 Kevin Ryde <user42@zip.com.au>
5410 * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Initialize f=$1 rather
5411 than assigning in main, to avoid HP cc +O3 optimizing it away.
5413 2002-11-12 Peter Eisentraut <peter_e@gmx.net>
5415 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Add -q
5416 option. Process --recheck after parsing all options. Pass -q
5417 option to configure on --recheck.
5418 (AC_OUTPUT): Pass -q from configure to config.status.
5419 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Strip -q from
5420 arguments to record.
5421 * doc/autoconf.texi (config.status Invocation): Document
5422 config.status -q option.
5424 2002-11-07 Alexandre Duret-Lutz <adl@gnu.org>
5426 * bin/autoscan.in (scan_file): Scan Makefile.am too. Ignore
5427 Makefile.in if Makefile.am exists.
5428 (output): Strip `.am' from Makefiles. Don't
5429 output AC_CONFIG_FILES if no Makefiles were found.
5431 2002-11-07 Akim Demaille <akim@epita.fr>
5433 * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
5434 (local_updates): New.
5435 * Makefile.maint: Update, from CVS Bison.
5436 (local_updates): New.
5438 2002-11-06 Akim Demaille <akim@epita.fr>
5440 * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
5441 declaration in extern "C" too.
5442 Reported by Roberto Bagnara.
5444 2002-11-06 Akim Demaille <akim@epita.fr>
5446 * tests/torture.at (Configuring subdirectories): Don't use grep
5448 * doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
5449 Reported by Ezra Peisach.
5451 2002-11-05 Akim Demaille <akim@epita.fr>
5453 * lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
5455 We _have_ to stop using the old compatibility scheme that tried to
5456 avoid useless backslashes because Libtool 1.4.3 contains a
5457 AC_DEFINE([error_t], [int],
5458 [Define to a type to use for \`error_t' if it is not
5459 otherwise available.])
5460 We _have_ to quote the single quote and backslashes with \. The
5461 old compatibility scheme saw that ` was backslashed, and therefore
5462 did not quote the single quote. Hence before this patch, Autoconf
5463 was not compatible with Libtool.
5465 2002-11-04 Paul Eggert <eggert@twinsun.com>
5467 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set the following variables,
5468 too: LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_MONETARY,
5469 LC_NAME, LC_PAPER, LC_TELEPHONE.
5470 * doc/autoconf.texi (Special Shell Variables): Mention those vars.
5472 2002-11-04 Akim Demaille <akim@epita.fr>
5476 * Makefile.maint (update, cvs-update, po-update, do-po-update):
5478 * config/texinfo.tex: Update.
5480 2002-11-03 Akim Demaille <akim@epita.fr>
5482 * bin/autoreconf.in (&autoreconf_current_directory): New, extracted
5484 (&autoreconf): here.
5485 ($help, $make, &parse_args, &autoreconf_current_directory):
5487 * doc/autoconf.texi (autoreconf Invocation): Adjust.
5489 2002-10-31 Bruno Haible <bruno@clisp.org>
5491 * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Change message.
5492 Change name of cache variable to ac_cv_func_malloc_0_nonnull.
5493 (AC_FUNC_MALLOC): Change description of HAVE_MALLOC macro.
5494 (_AC_FUNC_REALLOC_IF): Change message. Change name of cache variable
5495 to ac_cv_func_realloc_0_nonnull.
5496 (AC_FUNC_REALLOC): Change description of HAVE_REALLOC macro.
5498 2002-10-31 Akim Demaille <akim@epita.fr>
5500 The test suite was no longer checking for trailing envvars and files.
5502 * tests/atspecific.m4 (AC_STATE_SAVE): Don't use quadrigraphs here.
5503 (AT_CHECK_ENV): Make sure the `state-ls.before file exists.
5505 2002-10-31 Akim Demaille <akim@epita.fr>
5507 * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use and display
5508 `$(MAKE)' instead of '${MAKE}' to emphasize that we refer to the
5509 Make variable, not a shell variable.
5510 Suggested by Bruno Haible.
5512 2002-10-31 Akim Demaille <akim@epita.fr>
5514 * bin/autom4te.in (load_configuration): Reject #args out of any
5517 2002-10-31 Akim Demaille <akim@epita.fr>
5519 * lib/autoconf/general.m4 (_AC_MSG_LOG_CONFTEST): New.
5520 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE)
5521 (_AC_RUN_IFELSE): Use it.
5522 * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT):
5523 (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
5524 * lib/autoconf/c.m4 (AC_LANG_SOURCE): Don't include confdefs.h,
5527 2002-10-30 Akim Demaille <akim@epita.fr>
5529 * bin/autom4te.in (&parse_args, $help): Support --no-cache.
5530 * doc/autoconf.texi (autom4te Invocation): Adjust.
5531 Suggested by Tim van Holder.
5533 2002-10-29 Paul Eggert <eggert@twinsun.com>
5535 * doc/autoconf.texi (Particular Functions): AC_FUNC_MALLOC and
5536 AC_FUNC_REALLOC check for compatibility with glibc, not POSIX.
5537 Problem reported by Bruno Haible.
5539 2002-10-29 Akim Demaille <akim@epita.fr>
5541 * doc/autoconf.texi (Header Templates): Put also in words what the
5542 pictures says to assist free style readers.
5543 (Customizing autom4te): s/--cache=/--cache /.
5545 2002-10-29 Akim Demaille <akim@epita.fr>
5547 * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Include stdlib.h and
5549 sparc_address_test returns void.
5550 Use it with an argument, as prototyped.
5553 2002-10-29 Akim Demaille <akim@epita.fr>
5555 * doc/autoconf.texi (Subdirectories): Cygnus dirs have
5556 configure.in, not configure.ac.
5557 Reported by Bruno Haible.
5559 2002-10-29 Akim Demaille <akim@epita.fr>
5561 * tests/torture.at (Deep Package): New test.
5562 (Configuring subdirectories): Don't use a testSubDir as Autotest
5565 2002-10-29 Akim Demaille <akim@epita.fr>
5567 * bin/autoreconf.in (&parse_args, $help): Support --warnings.
5568 * doc/autoconf.texi (Invoking autom4te): Rename as...
5569 (autom4te Invocation): this, for consistency with the other nodes.
5571 2002-10-29 Akim Demaille <akim@epita.fr>
5573 * lib/autom4te.in (Autoconf): s/automate/autom4te/.
5574 Reported by Ralf Corsepius.
5576 2002-10-29 Akim Demaille <akim@epita.fr>
5578 * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
5579 characters is a back as an `obsolete' warning now.
5580 Reported by Ralf Corsepius.
5582 2002-10-28 Akim Demaille <akim@epita.fr>
5584 * configure.ac: Bump to 2.54c.
5586 2002-10-28 Akim Demaille <akim@epita.fr>
5590 * tests/foreign.at (Libtool): Adjust to broken libtoolize.
5592 2002-10-28 Akim Demaille <akim@epita.fr>
5594 * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Be robust to different
5595 m4 executable names, and different GNU M4 version.
5596 Reported by Ezra Peisach and Paul Jarc.
5598 2002-10-27 Akim Demaille <akim@epita.fr>
5600 * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Really use
5603 2002-10-27 Akim Demaille <akim@epita.fr>
5605 * doc/autoconf.texi: More AC_MSG_FAILURE promotion.
5606 * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING):
5607 Die when a simple Fortran program cannot be compiled.
5608 * lib/autoconf/lang.m4 (AC_LANG_CALL, AC_LANG_FUNC_LINK_TRY):
5609 Issue a warning if no function is given.
5611 2002-10-27 Akim Demaille <akim@epita.fr>
5613 * doc/autoconf.texi (Run Time): Document AC_RUN_IFELSE.
5614 Move the documentation of AC_TRY_RUN to...
5615 (Obsolete Macros): here.
5616 Adjust all the old samples still using AC_TRY_RUN to AC_RUN_IFELSE.
5617 (autoconf Invocation): Remove the duplicates with `invoking
5619 * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_RUN.
5620 * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
5622 2002-10-27 Akim Demaille <akim@epita.fr>
5624 * doc/autoconf.texi (Generating Sources): Document AC_LANG_CALL
5625 and AC_LANG_FUNC_LINK_TRY.
5626 (Examining Libraries): Rename as...
5627 (Running the Linker): this.
5628 Document AC_LINK_IFELSE.
5629 Move the documentation of AC_TRY_LINK and AC_TRY_LINK_FUNC to...
5630 (Obsolete Macros): here.
5631 * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING): Don't use
5632 AC_TRY_LINK_FUNC nor AC_TRY_LINK.
5633 * lib/autoconf/libs.m4 (AC_CHECK_LIB, AC_PATH_XTRA): Likewise.
5634 * lib/autoconf/headers.m4 (AC_USG): Likewise.
5636 2002-10-27 Akim Demaille <akim@epita.fr>
5638 * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_CPP.
5640 More `check config.log' messages.
5642 * lib/autoconf/general.m4 (AC_MSG_FAILURE): New.
5643 * doc/autoconf.texi (Printing Messages): Document it.
5644 * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use it when
5646 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT)
5647 (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_O)
5648 (_AC_COMPILER_OBJEXT): Likewise.
5649 * lib/autoconf/general.m4 (AC_RUN_IFELSE): Likewise.
5650 * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS):
5652 * lib/autoconf/c.m4 (AC_PROG_CPP, AC_PROG_CC, AC_PROG_CXXCPP):
5655 Deprecate macros with unusual interfaces.
5657 * lib/autoconf/general.m4 (AC_TRY_CPP, AC_TRY_LINK)
5658 (AC_TRY_COMPILE, AC_TRY_RUN): AU_DEFUN'ed.
5660 Document the new ones, and proper style.
5662 * doc/autoconf.texi (Generating Sources): New.
5663 Document AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM.
5664 (Examining Declarations): Rename as...
5665 (Running the Preprocessor): this.
5666 Document AC_PREPROC_IFELSE.
5667 (Examining Syntax): Rename as...
5668 (Running the Compiler): this.
5669 (AC_FOO_IFELSE vs AC_TRY_FOO): New section.
5670 (Obsolete Macros): Move the definition of AC_TRY_CPP and
5671 AC_TRY_COMPILE here.
5673 2002-10-27 Akim Demaille <akim@epita.fr>
5675 Move sections around.
5677 * doc/autoconf.texi (Customizing autom4te): Remove a lost
5679 Reported by Burno Haible.
5680 (Language Choice): Now the first section of...
5681 (Writing Tests): this section.
5682 Make the introduction less C-centric.
5683 (Guidelines, Test Functions): Move to...
5684 (Writing Test Programs): this new section.
5685 (Test Programs): Merge into...
5688 2002-10-27 Akim Demaille <akim@epita.fr>
5690 * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on
5691 autom4te.in that resulted in the need for two `make' runs.
5693 2002-10-27 Akim Demaille <akim@epita.fr>
5695 * configure.ac: Bump to 2.54b.
5697 2002-10-25 Akim Demaille <akim@epita.fr>
5701 * Makefile.maint: Update from the Coreutils.
5702 (AMTAR): Remove, obsolete.
5703 (automake_repo): Update to redhat.com.
5705 Adjust to the fact that ansi2knr is now hosted by Automake.
5706 * Makefile.am (cvs_files): Add install-sh and mkinstalldirs.
5707 * config/config.guess, config/mkinstalldirs, config/texinfo.tex:
5708 Update from masters.
5709 * lib/autoscan/Makefile.am (EXTRA_DIST, nodist_autoscanlib_DATA):
5710 autoscan.pre is not to be installed, and autoscan.list is not to
5712 (CLEANFILES): Add autoscan.list.
5713 (autoscan.list): Disable the cache.
5714 * bin/Makefile.am: Include freeze.mk.
5716 2002-10-25 Akim Demaille <akim@epita.fr>
5718 * bin/autom4te.in (&load_configuration): Take the file as
5720 (&parse_args): Handle -C, --cache.
5722 (MAIN): Load ~/.autom4te.cfg and ./.autom4te.cfg.
5723 * lib/autom4te.in (Autoconf): Pass --cache=autom4te.cache.
5724 * doc/autoconf.texi (Invoking autom4te): Document --cache.
5725 Now a subsection of...
5726 (Using autom4te): This new section.
5727 (Customizing autom4te): New.
5728 (autom4te.cache): Adjust.
5730 2002-10-25 Akim Demaille <akim@epita.fr>
5732 * doc/autoconf.texi (Generic Headers): More information on how to
5733 use AC_CHECK_HEADERS.
5735 2002-10-25 Akim Demaille <akim@epita.fr>
5737 * bin/autoconf.as, bin/autoconf.in, bin/autoupdate.in ($help):
5740 2002-10-25 Akim Demaille <akim@epita.fr>
5742 * bin/autoscan.in (output): Output AC_PREREQ.
5743 (%needed_macros): Add AC_PREREQ so that configure.ac without one
5746 2002-10-23 Akim Demaille <akim@epita.fr>
5748 * doc/autoconf.texi (Particular Headers): In AC_HEADER_STDBOOL,
5751 2002-10-23 Akim Demaille <akim@epita.fr>
5753 * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
5754 Reported by Peter Eisentraut.
5756 2002-10-23 Akim Demaille <akim@epita.fr>
5758 * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
5761 * doc/autoconf.texi (Particular Headers): Adjust according to Paul
5762 Eggert's recommandations.
5764 2002-10-22 Akim Demaille <akim@epita.fr>
5766 * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): New, based on CVS
5767 Bison, by Paul Eggert.
5768 * doc/autoconf.texi (Particular Headers): Document it.
5770 2002-10-22 Aaron M. Ucko <amu@alum.mit.edu>
5772 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Avoid duplicates in
5773 `$ac_configure_args'.
5775 2002-10-22 Akim Demaille <akim@epita.fr>
5777 * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
5778 (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
5781 2002-10-22 Akim Demaille <akim@epita.fr>
5783 Restore the 2002-10-11 Akim Demaille <akim@epita.fr> patch:
5785 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
5786 (AC_CHECK_HEADER, _AC_CHECK_HEADER_NEW,_AC_CHECK_HEADER_OLD): Restore.
5787 (_AC_CHECK_HEADER_NEW): Rename as...
5788 (AC_CHECK_HEADER): this.
5790 2002-10-22 Akim Demaille <akim@epita.fr>
5792 * doc/autoconf.texi (Limitations of Usual Tools): Remove incorrect
5793 words about HP-UX cmp: it was actually a user-written cmp.
5795 2002-10-22 Akim Demaille <akim@epita.fr>
5797 * tests/foreign.at (Libtool): Don't check autoconf's stderr: there
5799 * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
5800 Quote for Perl '' strings, not "".
5801 * bin/autoheader.in: Invoke autoconf to get '' strings, not ""
5804 2002-10-22 Akim Demaille <akim@epita.fr>
5806 * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
5807 characters is a syntax warning now.
5808 (_AS_QUOTE): Accept $2 as list of characters to quote.
5809 * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
5810 Quote for Perl, not sh.
5811 * bin/autoheader.in: When $debug, report the file which is
5813 * tests/tools.at (autom4te, autoheader): Exercise @bar, not merely
5814 `@', to tickle Perl's lists.
5815 Reported by Carlos Velasco.
5817 2002-10-18 Akim Demaille <akim@epita.fr>
5819 * bin/autom4te.in (handle_m4): Pass --fatal-warning to m4, so that
5820 missing included files _are_ errors.
5821 Thanks to Alexandre Duret-Lutz.
5822 * tests/tools.at (autom4te cache): Adjust.
5823 * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): New.
5824 (AT_CHECK_M4SUGAR): Use it.
5825 * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
5827 * tests/tools.at (autom4te): Now it does exit 1.
5829 2002-10-17 Akim Demaille <akim@epita.fr>
5831 * lib/autoconf/general.m4 (AC_CACHE_SAVE): Don't use cmp.
5832 Fixes the `AC_ARG_VAR' test failures.
5833 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Don't use cmp.
5834 * lib/freeze.mk (check-forbidden-patterns): New.
5835 * lib/autoconf/Makefile.am, lib/autotest/Makefile.am
5836 * lib/m4sugar/Makefile.am (check-local): Use it to catch `cmp'.
5837 * doc/autoconf.texi (Limitations of Usual Tools): HP-UX' cmp and
5839 Reported months ago by H. Merijn Brand.
5841 2002-10-17 Akim Demaille <akim@epita.fr>
5843 * tests/tools.at (autoheader): Put randoms `@' to stress Perl.
5845 2002-10-16 Paul Eggert <eggert@twinsun.com>
5847 * Makefile.maint (wget_files): Remove ansi2knr.c.
5848 (ansi2knr.c-url_prefix): Remove.
5850 2002-10-16 Akim Demaille <akim@epita.fr>
5852 Because of caching, some files that no longer exist and are no
5853 longer required can still cause errors.
5854 Reported by Alexandre Duret-Lutz.
5856 * bin/autom4te.in (&parse_args): Do not prepend `--reload-state'
5857 to frozen files in @ARGV, as @ARGV must remain being a list of
5858 files. Rather, at M4 call sites, use this...
5859 (&files_to_options): New function.
5860 (&freeze): Use &error.
5861 (&up_to_date): If a file that was included according to the cache
5862 is no longer there, then the output is out dated.
5863 (&main): Don't even check whether a file is up to date is anyway
5865 * tests/tools.at (autom4te cache): New.
5867 2002-10-16 Akim Demaille <akim@epita.fr>
5869 * bin/autoconf.as: Kill dead options.
5870 * bin/autoupdate.in (&parse_args): Kill old options.
5871 * bin/autoreconf.in (&parse_args): Remove dead options.
5873 (&autoreconf): Report the directories we enter *and leave*, so
5874 that error messages can be easily located, and use GNU Make
5875 format, so that Emacs' compile mode understands us.
5876 * lib/Autom4te/General.pm (&update_file): Use `verbose' to report
5877 if some file was changed instead of `print'.
5878 * bin/autoheader.in: Suggest AC_DEFINE with 3 args when needed.
5879 (&parse_args): Remove the dead options.
5880 * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Adjust to the new
5881 autoheader's quiet mode.
5882 (AT_CHECK_AUTOUPDATE): Likewise.
5883 * tests/tools.at (autoupdate): Adjust.
5884 * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
5886 2002-10-11 Akim Demaille <akim@epita.fr>
5888 No longer use CPP to check for the existing of headers: use CC to
5889 check for compilability.
5891 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
5892 (AC_CHECK_HEADER, _AC_CHECK_HEADER_OLD): Remove.
5893 (_AC_CHECK_HEADER_NEW): Rename as...
5894 (AC_CHECK_HEADER): this.
5896 * lib/autotest/general.m4 (AT_INIT): Include the failed test
5897 numbers in the Subject suggestion.
5899 2002-10-11 Akim Demaille <akim@epita.fr>
5901 * lib/autoconf/specific.m4 (AC_DECL_SYS_SIGLIST): Obsolete.
5902 Suggest using AC_CHECK_DECLS instead.
5904 2002-10-11 Akim Demaille <akim@epita.fr>
5906 * tests/torture.at (AC_ARG_VAR): Have configure report the value
5909 2002-10-11 Akim Demaille <akim@epita.fr>
5911 * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use $$ in the
5912 file name to enable parallel executions.
5913 From Sam Varshavchik.
5915 2002-10-08 Akim Demaille <akim@epita.fr>
5917 * bin/autoreconf.in (&autoreconf): Run autopoint before the first
5918 aclocal invocation, as Gettext macros might not be visible to
5920 Instead of blindly running autopoint, scan configure.ac (not the
5921 traces) for AM_GNU_GETTEXT_VERSION uses, as autopoint does.
5922 Reported by Paul D. Smith.
5924 2002-10-08 Paul Eggert <eggert@twinsun.com>
5926 Work around problems found when POSIXLY_CORRECT=1 is set.
5927 None of this seems to have anything to do with POSIX, really,
5928 but it's how Perl getopt works.
5929 * bin/autom4te.in (parse_args): Configure GetOpt with
5931 * doc/autoconf.texi (Invoking autom4te):
5932 --warning -> --warnings.
5933 * lib/autom4te.in: --warning -> --warnings.
5935 2002-09-28 Akim Demaille <akim@epita.fr>
5937 * doc/autoconf.texi (autom4te.cache): New section.
5939 2002-09-28 Akim Demaille <akim@epita.fr>
5941 * lib/autom4te.in (Autoscan-preselections, Autoreconf-preselections)
5942 (Automake-preselections): Update.
5943 * bin/autoreconf.in, bin/autoheader.in: Comment changes.
5945 2002-09-28 Akim Demaille <akim@epita.fr>
5947 * lib/autoscan/autoscan.pre: Move all the remaining rules to...
5948 * lib/autoconf/c.m4, lib/autoconf/functions.m4,
5949 * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
5950 * lib/autoconf/specific.m4, lib/autoconf/types.m4: here.
5952 2002-09-28 Akim Demaille <akim@epita.fr>
5954 * tests/torture.at (Configuring subdirectories): Be robust to
5955 users who use config.site to require for a cache: in this case,
5956 the two last configure runs, using two different sets of
5957 arguments, trigger a legitimate error.
5959 2002-09-28 Akim Demaille <akim@epita.fr>
5961 * tests/m4sh.at (Functions Support, Functions and return Support):
5964 2002-09-28 Akim Demaille <akim@epita.fr>
5966 * bin/Makefile.am (ETAGS_SH, ETAGS_PERL): Update: ifnames and
5967 autoheader are Perl programs.
5968 (autoconf, autoheader, autoreconf, autoupdate, ifnames, autoscan)
5969 (autom4te): Specify that the sources are in the $srcdir.
5970 * doc/autoconf.texi (Installation Directory Variables): Adjust.
5972 2002-09-28 Akim Demaille <akim@epita.fr>
5974 * lib/autoscan/autoscan.pre (st_blksize, st_blocks, st_rdev)
5975 (tm_zone): Move their rules to...
5976 * lib/autoconf/types.m4: here, using AN_ macros.
5977 * lib/autoscan/autoscan.pre (AWK, BISON, INSTALL, LEX, LN, MAKE)
5978 (RANLIB, YACC, awk, bison, byacc, flex, gawk, install, lex, ln)
5979 (make, mawk, nawk, ranlib, yacc): Similarly, move to...
5980 * lib/autoconf/programs.m4: here.
5981 * lib/freeze.mk (ETAGS_FOR_M4, ETAGS_FOR_M4SUGAR)
5982 (ETAGS_FOR_AUTOCONF): New.
5985 2002-09-28 Akim Demaille <akim@epita.fr>
5987 * lib/autoconf/autoscan.m4: New file.
5988 * lib/autoconf/autoconf.m4: Include it.
5989 * lib/autoconf/functions.m4: Use AN_FUNCTION for all the functions
5990 that were listed in the original autoscan.list.
5991 * lib/autoconf/headers.m4: Similarly with headers.
5992 * lib/freeze.mk (autoconf_m4f_dependencies): Add autoscan.m4.
5993 (.m4.m4f): Don't pass --prepend-include, since that's done by
5994 tests/autom4te itself.
5995 * lib/autoscan/Makefile.am: Include freeze.mk.
5996 (autoscan.list): New target --this file is no longer a source.
5997 (autoscan.pre): New file.
5999 2002-09-28 Akim Demaille <akim@epita.fr>
6001 * bin/autoscan.in (@kinds): Make them singular.
6003 (&init_tables): When --debug, report the list of rules to ease
6004 tracking changes in autoscan.list.
6005 * lib/autoscan/autoscan.list (function): Strip comments, sort.
6007 2002-09-28 Akim Demaille <akim@epita.fr>
6009 * lib/autoscan/functions, lib/autoscan/headers,
6010 * lib/autoscan/identifiers, lib/autoscan/makevars,
6011 * lib/autoscan/programs: Merge into...
6012 * lib/autoscan/autoscan.list: this.
6013 * bin/autoscan.in (&init_tables): Adjust.
6015 2002-09-28 Akim Demaille <akim@epita.fr>
6017 * lib/autoscan/functions, lib/autoscan/headers,
6018 * lib/autoscan/identifiers, lib/autoscan/makevars,
6019 * lib/autoscan/programs: Make the `kind' explicit, i.e., each
6020 `functions' line is now prefixed with `function:'.
6021 * bin/autoscan.in (&init_tables): Adjust.
6023 2002-09-28 Akim Demaille <akim@epita.fr>
6025 From now on, autoscan files must always map a macro name to a
6026 word: there is no `default' macro for autoscan.
6028 * bin/autoscan.in (&init_tables): Reject entries with no macro at
6030 * lib/autoscan/functions, lib/autoscan/headers: Make the macro
6033 2002-09-28 Akim Demaille <akim@epita.fr>
6035 * bin/autoscan.in (%c_keywords): Remove.
6036 (&used): Keep only track of the words we might be interested in.
6037 (&output_kind): It is no longer needed to look for non active
6040 2002-09-27 Akim Demaille <akim@epita.fr>
6042 * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): New, stolen from
6043 jm_FUNC_MBRTOWC, by Paul Eggert, from the Coreutils 4.5.1.
6044 * lib/autoscan/functions: Adjust.
6045 * doc/autoconf.texi (Particular Functions): Adjust.
6047 2002-09-27 Akim Demaille <akim@epita.fr>
6049 * doc/autoconf.texi (Limitations of Usual Tools): Some about mv
6051 Thanks to Bill Moseley and Paul Eggert.
6052 * lib/m4sugar/m4sh.m4 (AS_TMPDIR): $2 is the directory into which
6053 the tmpdir must be created.
6054 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Have the tmp
6055 dir be in the build tree, instead of $TMPDIR.
6057 2002-09-27 Akim Demaille <akim@epita.fr>
6059 * bin/autoscan.in: Improve the comments.
6060 (&parse_args): Drop obsolete undocumented options.
6061 (&output_kind): Output warnings.
6062 * lib/autoscan/functions: (dcgettext): Now trigger AM_GNU_GETTEXT.
6063 (getwd): Trigger a warning.
6065 2002-09-26 Akim Demaille <akim@epita.fr>
6067 * bin/autoreconf.in: Clarify that -s is meaningless without -i.
6068 Reported by Ralf Corsepius.
6069 * doc/autoconf.texi (autoreconf Invocation): Likewise.
6071 2002-09-26 Akim Demaille <akim@epita.fr>
6073 Single suffix rules and seperated dependencies are not portable.
6075 * doc/autoconf.texi (Installation Directory Variables): Update.
6076 (Limitations of Make): Some about `Single Suffix Rules and
6077 Separated Dependencies'.
6078 * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
6079 (ifnames, autoscan, autom4te): Un-factor into several rules.
6081 2002-09-25 Paul Eggert <eggert@twinsun.com>
6083 * BUGS (Interoperability bugs): New section. Mention libtool
6084 1.4.2, configure.ac, and AC_CONFIG_AUX_DIR interoperability bug.
6086 2002-09-24 Paul Eggert <eggert@twinsun.com>
6088 Fix a portability bug reported by Alexandre Duret-Lutz: Solaris 8
6089 make handles suffix-rules differently from GNU make.
6091 * bin/Makefile.am (SUFFIXES, .in): Remove.
6092 (autoconf autoheader autoreconf autoupdate ifnames autoscan autom4te):
6093 Move the body of the old .in rule here.
6095 2002-09-16 Akim Demaille <akim@epita.fr>
6097 i960 compilers create `b.out' files by default.
6098 Reported by Ralf Corsepius.
6100 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove b.out files.
6101 (_AC_COMPILER_EXEEXT_DEFAULT): Adjust to b.out.
6103 2002-09-13 Paul Eggert <eggert@twinsun.com>
6105 * doc/autoconf.texi (Particular Headers): Remove obsolete
6106 reference to `struct timezone' in the description of
6109 2002-09-13 Akim Demaille <akim@epita.fr>
6113 * config/config.sub, config/config.guess: Update.
6114 * Makefile.maint: Update from bits of the Coreutils 4.5.1.
6115 * Makefile.am: Adjust.
6117 2002-09-13 Akim Demaille <akim@epita.fr>
6119 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Suggest
6120 reading config.log when the compiler is rejected.
6121 Suggested by Guido Draheim.
6123 2002-09-13 Akim Demaille <akim@epita.fr>
6125 * bin/autoreconf.in: Don't use Cwd::chdir, since in its internals
6126 (chdir_init) might hang when stat'ing mounted directories.
6127 Reported by Vance Shipley.
6129 2002-09-12 Akim Demaille <akim@epita.fr>
6131 * bin/autoscan.in (&parse_args): Pass a reference to the lists, not
6134 2002-09-12 Akim Demaille <akim@epita.fr>
6136 * doc/autoconf.texi (Defining Symbols): Present two different
6137 prototypes for AC_DEFINE and AC_DEFINE_UNQUOTED to emphasize the
6138 difference between 1 argument calls, and 2-3 argument calls.
6140 2002-09-12 Peter Eisentraut <peter_e@gmx.net>
6142 * doc/autoconf.texi: Review grammar and punctuation.
6144 2002-09-11 Paul Eggert <eggert@twinsun.com>
6146 * doc/autoconf.texi: Fix minor formatting, spelling, and
6148 (Defining Symbols): Explain that AC_DEFINE(var) defaults to 1, but
6149 AC_DEFINE(var,,description) does not; and the AC_DEFINE(var) case
6152 2002-09-11 Akim Demaille <akim@epita.fr>
6154 * doc/autoconf.texi (Questions): Rename as...
6156 (Defining Directories): New.
6158 2002-09-09 Akim Demaille <akim@epita.fr>
6160 * doc/autoconf.texi (Making testsuite Scripts): Update.
6161 Suggested by Nishio Futoshi.
6163 2002-09-09 Koji Arai <JCA02266@nifty.ne.jp>
6165 * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
6166 plain `@' is wanted.
6168 2002-09-09 Akim Demaille <akim@epita.fr>
6170 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
6171 `duplicates', since the algorithm was too naive and could keep
6172 `--prefix=1 --prefix=2 --prefix=1' as `--prefix=1 --prefix=2', and
6173 keep `--prefix foo --prefix bar' as `--prefix foo bar'.
6174 Reported by Ralf Corsepius.
6175 * tests/torture.at (Configuring subdirectories): Exercise these
6178 2002-09-09 Akim Demaille <akim@epita.fr>
6180 * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Use $srcdir when
6181 looking for a replacement file.
6182 * lib/autoconf/general.m4 (AC_CHECK_DECLS): Check that the
6183 directory is relative.
6184 * doc/autoconf.texi (Generic Functions): Clarify the replacement
6185 directory definition.
6186 Reported by Andreas Schwab and Jim Meyering.
6188 2002-09-06 Akim Demaille <akim@epita.fr>
6190 * doc/autoconf.texi (Setting Output Variables): Clarify what
6191 precious variables are.
6192 Suggested by Pontus Skoeld.
6194 2002-09-05 Akim Demaille <akim@epita.fr>
6196 * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
6197 (ifnames, autoscan, autom4te): Since we don't only depend on
6198 configure.ac variables (such as VERSION etc.), but also on prefix
6199 and so forth, depend on Makefile, not configure.ac.
6200 Reported by Alexandre Duret-Lutz.
6201 * doc/autoconf.texi (Installation Directory Variables): Adjust.
6203 2002-09-05 Kevin Ryde <user42@zip.com.au>
6205 * doc/autoconf.texi (Limitations of Make): HP-UX trailing backslashes
6206 doesn't seem to be confined to ia64, just say "some versions".
6208 2002-09-04 Akim Demaille <akim@epita.fr>
6210 * Makefile.am, doc/Makefile.am: Remove pdf targets, handled by
6212 * Makefile.am (maintainer-clean-local): Remove.
6213 (MAINTAINERCLEANFILES): Remove COPYING.
6215 2002-09-03 Paul Eggert <eggert@twinsun.com>
6217 * doc/autoconf.texi (Configuration Commands): Remove obsolete
6218 example for AC_CONFIG_COMMANDS_PRE. Problem reported by Marcus
6221 2002-09-03 Akim Demaille <akim@epita.fr>
6223 * configure.ac: Bump to 2.53d.
6224 * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6c, i.e., CVS Automake
6225 as of today, on Automake's team suggestion.
6227 2002-09-03 Akim Demaille <akim@epita.fr>
6231 2002-09-02 Akim Demaille <akim@epita.fr>
6233 * bin/autom4te.in (parse_args): Don't honor AUTOM4TE_PATH and
6235 * configure.ac: Disable SITE_MACRO_DIR.
6237 2002-09-02 Jim Meyering <meyering@lucent.com>
6239 * doc/autoconf.texi (AC_SYS_POSIX_TERMIOS): Reflect renaming: s/am/ac/,
6240 i.e., change am_cv_sys_posix_termios to ac_cv_sys_posix_termios.
6241 Also, tweak grammar: s/make sure to/be sure to/.
6243 2002-09-02 Paul Eggert <eggert@twinsun.com>
6245 * doc/autoconf.texi (Limitations of Builtins): Explain why logical
6246 directory names are generally preferable to physical names.
6248 2002-09-02 Akim Demaille <akim@epita.fr>
6250 * lib/Autom4te/General.pm (&update_file): s/die/error/.
6251 Reported by Raja R. Harinath.
6252 * bin/autoheader.in, bin/autoreconf.in, bin/autoscan.in,
6253 * bin/autoupdate.in: Use error instead of die.
6255 2002-09-01 Paul Eggert <eggert@twinsun.com>
6257 * tests/mktests.sh (ac_exclude_egrep, au_exclude_egrep): Use
6258 ordinary shell concatenation rather than echo+tr+sed command that
6259 runs afoul of a long-line-related sed bug in Solaris 8.
6261 * bin/autoheader.in (parse_args): --warning -> --warnings.
6263 * bin/autoconf.as: Work even if "ls" outputs "FOO not found" to
6264 stdout, as traditional "ls" does.
6265 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT,
6266 _AC_COMPILER_EXEEXT_O): Likewise.
6267 * doc/autoconf.texi (Limitations of Usual Tools): Add "ls".
6269 * bin/autoconf.as: Add --prepend-include option. This patch was
6270 applied to bin/autoconf.in in the 2002-07-17 patch by Mark D. Roth,
6271 but bin/autoconf.in is generated automatically from bin/autoconf.as.
6273 * bin/autoconf.in, configure: Regenerate.
6275 * doc/autoconf.texi (Special Shell Variables): Mention
6276 ENV, MAIL, MAILPATH, PS1, PS2, PS4. Index PWD.
6278 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Unset ENV, MAIL,
6279 MAILPATH and set PS1, PS2, PS4 to default values, to work
6280 around bug in pre-3.0 UWIN ksh reported by Bruce Lilly.
6281 For LC_ALL etc, first try to set to "C" as POSIX requires and as
6282 the Autoconf documentation specifies; fall back to "unset" only if
6283 this fails. Use a shell for-loop for this rather than an m4 loop,
6284 to shorten the output script.
6286 2002-08-30 Paul Eggert <eggert@twinsun.com>
6288 * doc/autoconf.texi (Special Shell Variables): Mention POSIX
6289 1003.1-2001's requirements for CDPATH. Give a simpler workaround
6290 for the CDPATH problem. Document PWD.
6291 (Limitations of Builtins): Document the problem that "cd $foo" and
6292 "ls $foo" may refer to different directories in shells conforming
6293 to POSIX 1003.1-2001. Use PS1 rather than CDPATH for "unset"
6294 example, since the old example is now out of date.
6296 * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Reject FOO if "cd
6297 FOO" and "ls FOO" talk about different directories; this catches
6298 problems when POSIX 1003.1-2001 "cd" fails due to symlink
6301 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use AS_UNSET instead
6302 of rolling our own unset.
6303 (_AS_PREPARE): $as_unset CDPATH instead of AS_UNSETting it, since
6304 in practice we needn't worry about CDPATH if unset doesn't work.
6306 * Makefile.in, aclocal.m4, bin/Makefile.in,
6307 config/Makefile.in, doc/Makefile.in, lib/Makefile.in,
6308 lib/Autom4te/Makefile.in, lib/autoconf/Makefile.in,
6309 lib/autoscan/Makefile.in, lib/autotest/Makefile.in,
6310 lib/emacs/Makefile.in, lib/m4sugar/Makefile.in, man/Makefile.in,
6311 tests/Makefile.in: Regenerate with Automake 1.6.3.
6313 * config/config.guess, config/config.sub, config/mkinstalldirs:
6316 * configure: Regenerate with self.
6318 2002-08-30 Kevin Ryde <user42@zip.com.au>
6320 * doc/autoconf.texi (Limitations of Usual Tools): Notes on "cc"
6323 2002-08-29 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
6325 * bin/autom4te.in (Request::load): Correctly test for "do" read
6328 2002-08-29 Akim Demaille <akim@epita.fr>
6330 * lib/Autom4te/General.pm (&xqx): New.
6331 (&xsystem): Use WIFEXITED and WEXITSTATUS instead of decoding $? by
6332 hand, which is not portable.
6334 * bin/autom4te.in: Use them.
6335 Use &error instead of die.
6336 * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
6339 2002-08-17 Paul Eggert <eggert@twinsun.com>
6341 * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove fc from the
6342 default list of compilers to try, since it was long ago superseded
6343 by the ksh fc builtin. Suggested by Steven G. Johnson.
6345 2002-07-31 Alexandre Duret-Lutz <duret_g@epita.fr>
6347 * doc/autoconf.texi (Invoking autom4te): End the option table,
6348 fixing a bug introduced by the previous patch.
6349 (Limitations of Make): Add a 'target lookup' subentry in the
6350 'VPATH' entry. Rewrite all `make' occurences as `@command{make}'.
6352 2002-07-29 Mark D. Roth <roth@feep.net>
6354 * bin/autom4te.in: Remove --include-envvar and --site-macro-subdir
6355 options and use $AUTOM4TE_PATH.
6356 * doc/autoconf.texi: Remove documentation of autom4te
6357 --include-envvar and --site-macro-subdir options and document
6358 use of $AUTOM4TE_PATH.
6359 * lib/autom4te.in: Remove --include-envvar and --site-macro-subdir
6360 arguments from each language section.
6362 2002-07-29 Paul Eggert <eggert@twinsun.com>
6364 * doc/install.texi: Include copyright symbol in copyright notice.
6366 * Makefile.am (MAKEINFO): Remove; it's a user-specified macro.
6368 (AM_MAKEINFOFLAGS): New macro.
6369 * doc/Makefile.am (MAKEINFO, AM_MAKEINFOFLAGS): Likewise.
6370 * Makefile.am (INSTALL): Use the new macros.
6371 Use -o rather than --output, since "missing" does not grok --output.
6373 2002-07-25 Alexandre Duret-Lutz <duret_g@epita.fr>
6375 * doc/autoconf.texi (Limitations of Make): Escaped newlines in
6376 comments do not always work. Never trust the exit status of
6379 2002-07-24 Kevin Ryde <user42@zip.com.au>
6381 * doc/autoconf.texi (Limitations of Make, Making testsuite Scripts):
6382 Untabify, since tabs are not enjoyed by texi2dvi and makeinfo.
6384 2002-07-23 Paul Eggert <eggert@twinsun.com>
6386 * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE):
6387 Use PATH="/nonexistent;.", not PATH=".;.", as FreeBSD ksh2002
6388 apparently treats PATH="nonexistent" as if it contained ".".
6389 Bug reported by Stefan `Sec' Zehl.
6391 2002-07-22 Alexandre Duret-Lutz <duret_g@epita.fr>
6393 * doc/autoconf.texi (Limitations of Make): Mention the special
6394 handling of the obj/ directory by BSD make.
6396 2002-07-20 Kevin Ryde <user42@zip.com.au>
6398 * doc/autoconf.texi (Limitations of Make): Add HP-UX IA-64 trailing
6401 2002-07-19 Akim Demaille <akim@epita.fr>
6403 * doc/autoconf.texi (Function Portability): `exit'.
6404 (Programming in M4sh): Ethymology of M4sh.
6406 2002-07-19 Akim Demaille <akim@epita.fr>
6408 * doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): More about $U.
6410 2002-07-18 Akim Demaille <akim@epita.fr>
6414 2002-07-18 Akim Demaille <akim@epita.fr>
6416 * config/config.guess, config/config.sub: Update.
6418 2002-07-18 Akim Demaille <akim@epita.fr>
6420 Handle LIBOBJS and LTLIBOBJS once for all, including Libtool's and
6423 * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): New.
6424 * lib/autoconf/status.m4 (AC_OUTPUT_COMMANDS_PRE): Call it.
6425 * tests/semantics.at (AC_REPLACE_FUNCS): Adjust.
6427 2002-07-18 Akim Demaille <akim@epita.fr>,
6428 Alexandre Duret-Lutz <duret_g@epita.fr>
6430 * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Install
6431 _AC_AM_CONFIG_HEADER_HOOK for Automake 1.7.
6433 2002-07-17 Russ Allbery <rra@stanford.edu>
6435 * doc/autoconf.texi (Initializing configure): Clarify the
6436 description of the tarname default.
6438 2002-07-17 Andreas Buening <andreas.buening@nexgo.de>
6440 * lib/autoconf/functions.m4 (AC_FUNC_FORK): Don't set
6441 ac_cv_func_fork_works before running _AC_FUNC_FORK, do it if the
6444 2002-07-17 Akim Demaille <akim@epita.fr>
6446 * lib/Autom4te/General.pm (find_file): Browse the directories in
6447 the order they are given.
6449 2002-07-17 Akim Demaille <akim@epita.fr>
6451 * tests/wrapsh.as, tests/wrappl.as: Merge into...
6452 * tests/wrapper.as: this.
6453 * tests/Makefile.am, configure.ac: Adjust.
6455 2002-07-17 Mark D. Roth <roth@feep.net>
6457 * configure.ac: Add --enable-site-macro-dir option.
6458 * bin/Makefile.am: Expand @SITE_MACRO_DIR@.
6459 * bin/autom4te.in: Add --prepend-include, --include-envvar, and
6460 --site-macro-subdir options.
6461 * bin/autoconf.in: Add --prepend-include option.
6462 * bin/autoheader.in: Add --prepend-include option.
6463 * bin/autoreconf.in: Add --prepend-include option.
6464 * bin/autoscan.in: Add --prepend-include option.
6465 * bin/autoupdate.in: Add --prepend-include option.
6466 * doc/autoconf.texi: Document use of $AC_MACRO_PATH and site
6467 macro directory, remove note that include path directories are
6468 used in reverse order, and document --prepend-include option.
6469 * lib/autom4te.in: Use --prepend-include instead of --include.
6470 * tests/wrapsh.in: Use --prepend-include instead of --include.
6472 2002-07-17 Akim Demaille <akim@epita.fr>
6474 * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): `_' is allowed in
6476 * doc/autoconf.texi (Initializing configure): Adjust.
6478 2002-07-17 Akim Demaille <akim@epita.fr>
6480 * lib/autoconf/functions.m4 (AC_FUNC_REALLOC, _AC_FUNC_REALLOC)
6481 (_AC_FUNC_MALLOC): New.
6482 (AC_FUNC_MALLOC): Use the latter.
6483 Define HAVE_MALLOC to 0 if broken.
6484 * doc/autoconf.texi (Particular Functions): Adjust.
6486 2002-07-16 Akim Demaille <akim@epita.fr>
6488 * lib/autoconf/c.m4 (AC_C_BACKSLASH_A): New.
6489 * doc/autoconf.texi (C Compiler): Adjust.
6491 2002-07-09 Akim Demaille <akim@epita.fr>
6493 * doc/autoconf.texi: Properly set the ``header'' part.
6495 2002-07-09 Akim Demaille <akim@epita.fr>
6497 * doc/autoconf.texi (Systemology): Some about Darwin.
6499 2002-07-09 Alexandre Duret-Lutz <duret_g@epita.fr>
6501 * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
6502 Don't use AC_REQUIRE in AU_DEFUN.
6504 2002-07-09 Art Haas <ahaas@neosoft.com>
6506 * doc/autoconf.texi: Use @enddots{} or @dots{} where appropriate.
6508 2002-07-02 Alexandre Duret-Lutz <duret_g@epita.fr>
6510 * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
6511 bin/autoupdate.in, bin/ifnames.in, lib/Autom4te/General.pm,
6512 lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Add local variables
6513 so that Emacs setups GNU style for perl-mode and cperl-mode.
6515 2002-06-27 Paul Eggert <eggert@twinsun.com>
6517 * config/install-sh: Quote $src. Prefer || to test's -o option,
6518 as per "Limitations of Builtins".
6519 * tests/atspecific.m4 (AT_CHECK_ENV): Likewise, for && vs test -a.
6520 * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
6522 * tests/mktests.sh: Use grep instead of fgrep, as per
6523 "Limitations of Builtins".
6525 2002-06-15 Paul Eggert <eggert@twinsun.com>
6527 * tests/wrapsh.as (AUTOCONF, AUTOHEADER, AUTOM4TE, AUTOM4TE_CFG,
6528 autom4te_perllibdir): Set to top build dir or src dir as appropriate,
6529 so that we consistently test the just-built programs.
6530 * tests/wrappl.as: Likewise.
6532 2002-06-12 Paul Eggert <eggert@twinsun.com>
6534 * bin/autoconf.as (AUTOM4TE): Default to a fully qualified path
6535 name, so that symlinks to 'autoconf' work properly. Bug reported
6537 * bin/autoheader.in (AUTOM4TE): Likewise.
6538 * bin/autoreconf.in (autoconf, autoheader): Likewise.
6539 * bin/autoscan.in (autom4te): Likewise.
6540 * bin/autoupdate.in (autom4te): Likewise.
6542 * lib/autoconf/functions.m4 (_AC_LIBOBJ_FNMATCH): Also check for
6543 btowc, to fix a portability bug with diffutils-2.8.2/lib/fnmatch.c
6546 2002-06-11 Andreas Schwab <schwab@suse.de>
6548 * doc/autoconf.texi: Add more dir entries.
6550 2002-06-10 Alexandre Duret-Lutz <duret_g@epita.fr>
6552 * bin/autom4te.in ($cache): Don't define using `$me', the name
6553 of the cache should not depend on the name under which autom4te
6556 2002-06-07 Akim Demaille <akim@epita.fr>
6558 * tests/tools.at (autoconf: forbidden tokens, basic)
6559 (autoconf: forbidden tokens, exceptions): Adjust to the change of
6560 words in autom4te.in.
6562 2002-06-07 Peter Eisentraut <peter_e@gmx.net>
6564 * lib/autoconf/c.m4 (AC_LANG_PROGRAM(C)): Use
6565 _AC_LANG_PROGRAM_C_F77_HOOKS.
6567 2002-06-07 Akim Demaille <akim@epita.fr>
6569 * lib/autoconf/functions.m4 (AC_REPLACE_FUNC_FNMATCH): Typo,
6571 (AC_REPLACE_FNMATCH): this.
6572 * tests/mktests.sh (exclude_list): Exclude AC_REPLACE_FNMATCH,
6573 AC_FUNC_FNMATCH_GNU.
6575 2002-06-07 Akim Demaille <akim@epita.fr>
6577 * doc/autoconf.texi (Systemology): Point to Tru64 docs, and the
6578 Rosetta Stone for Unix.
6580 2002-06-07 Akim Demaille <akim@epita.fr>
6582 * bin/autom4te.in (warn_forbidden): When rejecting a token,
6583 suggest m4_pattern_allow.
6584 Suggested by Adam J. Richter.
6586 2002-06-07 Akim Demaille <akim@epita.fr>
6588 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
6589 ac_config_libobj_dir.
6590 (AC_CONFIG_LIBOBJ_DIR): New.
6591 * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Split into...
6592 (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): these.
6593 Use ac_config_libobj_dir to find the replacement files.
6594 (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU): Split into...
6595 (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_REPLACE_FNMATCH)
6596 (AC_REPLACE_FNMATCH_GNU): these.
6597 (AC_FUNC_GETLOADAVG): Use ac_config_libobj_dir.
6598 * doc/autoconf.texi (Particular Functions, Generic Functions): Adjust.
6599 * tests/mktests.sh (ac_exclude_list): Don't check
6600 AC_FUNC_GETLOADAVG as it requires getloadavg.c which is not shipped.
6602 2002-06-06 Paul Eggert <eggert@twinsun.com>
6604 * lib/autoconf/status.m4 (_AC_OUTPUT_LINKS): Fall back on cp
6607 * doc/autoconf.texi (Configuration Links): Likewise.
6608 (Limitations of Usual Tools): Prefer $(LN_S) to ln -s || ln.
6610 2002-06-05 Paul Eggert <eggert@twinsun.com>
6612 * config/config.guess, config/config.sub, config/texinfo.tex:
6613 Update from masters.
6615 2002-05-29 Paul Eggert <eggert@twinsun.com>
6617 * bin/autom4te.in ($m4): Do not assume that egrep and fgrep exist.
6618 * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
6619 * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR, AC_EGREP_CPP):
6621 * lib/autoconf/Makefile.am (check-local): Likewise.
6622 * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Likewise.
6623 * lib/autoconf/types.m4 (commentary only): Likewise.
6624 * lib/autotest/general.m4 (AT_INIT, AT_CHECK): Likewise.
6625 * lib/autotest/Makefile.am (check-local): Likewise.
6626 * lib/m4sugar/Makefile.am (check-local): Likewise.
6627 * tests/atspecific.m4 (AT_CONFIGURE_AC, AT_CHECK_DEFINES): Likewise.
6628 * tests/mktests.sh (egrep): New var; use it instead of plain egrep.
6630 * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): New macros.
6631 * doc/autoconf.texi (Particular Programs): Document them.
6632 (Limitations of Usual Tools): Warn that egrep and fgrep may not exist.
6635 2002-05-27 Paul Eggert <eggert@twinsun.com>
6637 * lib/autoconf/types.m4 (AC_TYPE_MBSTATE_T): New macro.
6638 * NEWS, doc/autoconf.texi (Particular Types): Document it.
6639 * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Require it
6640 instead of AC_MBSTATE_T, which never existed.
6642 2002-05-23 Akim Demaille <akim@epita.fr>
6644 * doc/autoconf.texi (Hosts and Cross-Compilation): Specify the
6645 version of Autoconf that is discussed.
6647 2002-05-22 Paul Eggert <eggert@twinsun.com>
6649 * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove cf77 and cft77
6650 from the default list of compilers to try. Suggested by
6652 * NEWS: Document the above.
6653 * doc/autoconf.texi (Fortran 77 Compiler): Don't suggest cf77.
6655 2002-05-17 Paul Eggert <eggert@twinsun.com>
6657 * lib/autoconf/types.m4 (AC_CHECK_MEMBER): Work correctly even if
6658 the member is itself an aggregate. Bug reported by Sergey Poznyakoff.
6659 This improves on an earlier suggestion by H. Peter Anvin.
6661 2002-05-16 Paul Eggert <eggert@twinsun.com>
6663 AC_FUNC_FNMATCH now tests only for POSIX compatibility.
6664 AC_FUNC_FNMATCH_GNU also tests for GNU extensions.
6665 Both macros now accept an optional source-dir arg.
6666 New macro AC_GNU_SOURCE to define _GNU_SOURCE.
6668 * NEWS: Document this.
6669 * doc/autoconf.texi (Particular Functions, UNIX Variants): Likewise.
6671 * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): New macro.
6672 (AC_FUNC_FNMATCH): Use it. Test only for POSIX conformance,
6673 not for GNU extensions; this undoes part of the 2000-11-03 change,
6674 reverting to 2.13-compatible behavior.
6675 Add new optional argument DIR.
6676 (AC_FUNC_FNMATCH_GNU): New macro.
6678 * lib/autoconf/specific.m4 (AC_GNU_SOURCE): New macro.
6680 2002-05-08 Paul Eggert <eggert@twinsun.com>
6682 * lib/autoconf/headers.m4 (AC_HEADER_TIOCGWINSZ):
6683 Don't require AC_SYS_POSIX_TERMIOS. The test is unnecessary,
6684 and it causes a 'test' syntax error if it fails.
6685 Bug reported by Stephen Gildea.
6687 * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
6688 If prototypes are supported, use them to check this at compile-time,
6689 instead of trying to check it at run-time. If we must do a run-time
6690 check, assume that setvbuf is standard when cross-compiling, as
6691 nonstandard setvbuf occurs only on ancient and unlikely hosts.
6692 Bug reported by Paul D. Smith.
6694 * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Add optional
6695 argument specifying location of getloadavg.c. This removes a
6696 FIXME. This idea was taken from Jim Meyering's implementation in
6698 * doc/autoconf.texi (Particular Functions): Document this.
6699 Also, mention HAVE_NLIST_H rather than NLIST_STRUCT, since
6700 that's what the code does; this fixes a bug reported by
6703 2002-05-03 Akim Demaille <akim@epita.fr>
6705 * bin/autoreconf.in (autoreconf): Rewrite to use Gettext's
6706 autopoint instead of gettextize.
6707 ($uses_alocal): Rename as...
6708 ($uses_aclocal): this.
6709 * doc/autoconf.texi (autoreconf Invocation): Adjust.
6710 Suggested by Bruno Haible.
6712 2002-05-03 Akim Demaille <akim@epita.fr>
6714 * lib/m4sugar/m4sugar.m4 (m4_map_sep): New.
6716 2002-04-29 Paul Eggert <eggert@twinsun.com>
6718 * bin/autoreconf.in (autoreconf): Don't age aclocal.m4's input
6719 files to be 1 second older; just set them to be the same time.
6720 Also, sleep 1 second after the first aclocal, to work around
6721 problems with sub-second time stamps on the input files.
6723 2002-04-29 Thien-Thi Nguyen <ttn@gnu.org>
6725 * doc/autoconf.texi: Mention "set -e -x" lossage
6726 under node "Limitations of Builtins".
6728 2002-04-29 Akim Demaille <akim@epita.fr>
6730 * doc/install.texi: Better wording for setting variables when
6732 From Christian Cornelssen.
6734 2002-04-29 Akim Demaille <akim@epita.fr>
6736 * tests/m4sh.at (LINENO): If testsuite itself is rewritten because
6737 of lack of $LINENO support, then the test will compare the $LINENO
6738 in testsuite vs. the lineno in the test file. This is wrong, of
6740 Be sure to protect it.
6741 Reported by Patrick Welche.
6743 2002-04-25 Akim Demaille <akim@epita.fr>
6745 * doc/autoconf.texi (Obsolete Macros): Typo.
6746 Reported by Vladimir Volovich.
6748 2002-04-25 Akim Demaille <akim@epita.fr>
6750 * bin/autoreconf.in (autoreconf): Don't let aclocal.m4 be older
6751 than some of the input files, hence, on the second run of aclocal,
6752 if some of its input are younger, make them older.
6753 Suggested by Paul Eggert.
6755 2002-04-25 Akim Demaille <akim@epita.fr>
6757 * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
6758 Thanks to Paul Eggert.
6760 2002-04-25 Akim Demaille <akim@epita.fr>
6762 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
6763 and ac_subst_vars be sh variables containing the list of
6764 AC_SUBST_FILES'ed and AC_SUBST'ed identifiers. Output them in the
6766 (_AC_INIT_PREPARE): Use them to log them.
6767 (_AC_SUBST, _AC_SUBST_SED_PROGRAM): Remove.
6768 (AC_SUBST, AC_SUBST_FILE): Instead of buliding the
6769 _AC_SUBST_SED_PROGRAM, store the list of output files/variables in
6770 _AC_SUBST_FILES and _AC_SUBST_VARS.
6771 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Adjust.
6773 2002-04-24 Akim Demaille <akim@epita.fr>
6775 * bin/autoreconf.in (autoreconf): Run automake after autoconf and
6776 autoheader, so that automake does not complain about a missing
6777 config.h.in that was to be created.
6779 2002-04-23 Akim Demaille <akim@epita.fr>
6781 * bin/autoheader.in (parse_args): --warning takes an argument.
6784 2002-04-22 Peter Eisentraut <peter_e@gmx.net>
6786 * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Remove gmon.out
6787 and bb.out when cleaning up.
6789 2002-04-22 Akim Demaille <akim@epita.fr>
6793 2002-04-22 Akim Demaille <akim@epita.fr>
6795 * tests/m4sh.at (LINENO): Fix the Zsh skip pattern.
6797 2002-04-22 Akim Demaille <akim@epita.fr>
6799 * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
6801 Reported by Gregory Giannoni.
6803 2002-04-22 Akim Demaille <akim@epita.fr>
6805 * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
6806 Fixes false failures on Darwin.
6808 2002-04-21 Paul Eggert <eggert@twinsun.com>
6810 * TODO, bin/autoupdate.in, doc/autoconf.texi,
6811 lib/autoconf/general.m4, lib/autoconf/libs.m4,
6812 lib/autoconf/status.m4, lib/m4sugar/m4sugar.m4, tests/m4sh.at,
6813 tests/tools.at: Minor spelling and grammar fixes.
6815 2002-04-20 Paul Eggert <eggert@twinsun.com>
6817 * doc/autoconf.texi (Shell Substitutions): Fix typos in yesterday's
6818 ZSH_VERSION fixes. Bug reported by Raja R Harinath.
6819 * lib/autotest/general.m4 (AT_INIT): Likewise.
6820 * tests/atgeneral.m4 (AT_INIT): Likewise.
6822 2002-04-19 Paul Eggert <eggert@twinsun.com>
6824 * NEWS, TODO, bin/autom4te.in, bin/autoreconf.in, bin/autoupdate.in,
6825 doc/autoconf.texi, lib/freeze.mk, lib/Autom4te/Struct.pm,
6826 lib/autoconf/autoheader.m4, lib/autoconf/c.m4,
6827 lib/autoconf/functions.m4, lib/autoconf/general.m4,
6828 lib/autoconf/lang.m4, lib/autoconf/libs.m4, lib/autoscan/identifiers,
6829 lib/autotest/general.m4, lib/m4sugar/m4sh.m4, tests/atgeneral.m4,
6830 tests/atspecific.m4, tests/semantics.at, tests/torture.at:
6831 Minor spelling and grammar fixes.
6833 * doc/autoconf.texi: Follow the outline suggested in the GNU
6834 Sample Texts sections of the Texinfo 4.2 manual. Most
6835 importantly, this makes sure that the copyright notices appear in
6836 all output formats. You probably need Texinfo 4.2 to generate
6839 Fix some bugs when using "$@" when there might be zero positional
6840 arguments in cases where this matters.
6842 * bin/autoconf.as: Rewrite so that the problem does not come up.
6843 * lib/autoconf/programs.m4 (AC_CHECK_PROG): Likewise.
6844 * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
6845 * lib/autotest/general.m4 (AT_INIT): Likewise.
6847 * bin/autoheader.in: Use 'case' statement to work around problem.
6848 * bin/auto4mte.in: Likewise.
6849 * bin/autoreconf.in: Likewise.
6850 * bin/autoscan.in: Likewise.
6851 * bin/autoupdate.in: Likewise.
6852 * bin/ifnames.in: Likewise.
6854 * doc/autoconf.texi (Shell Substitutions): Document the problem.
6856 * lib/autotest/general.m4 (AT_INIT):
6857 Use Zsh alias to work around problem.
6858 * tests/atgeneral.m4 (AT_INIT): Likewise.
6860 * tests/c.at: We can't have zero arguments, so remove workaround
6861 that is not portable to Zsh.
6863 2002-04-19 Alexandre Duret-Lutz <duret_g@epita.fr>
6865 * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
6866 from aclocal.m4 too.
6868 2002-04-12 Akim Demaille <akim@epita.fr>
6870 * tests/wrappl.as: New, M4sh precursor of wrappl.in.
6872 2002-04-10 Akim Demaille <akim@epita.fr>
6874 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Install the Zsh
6875 workaround for ${1+"$@"}.
6876 * doc/autoconf.texi (Shell Substitutions): Explain it.
6877 From Oliver Kiddle and Peter Stephenson.
6879 Have M4sh perform minimal shell sanitizing.
6881 * lib/m4sugar/m4sh.at (AS_SHELL_SANITIZE): Split the `_AS_PREPARE_*'
6883 (_AS_PREPARE): this new macro.
6885 (AS_INIT): Invoke AS_SHELL_SANITIZE.
6886 * tests/m4sh.at (AT_DATA_LINENO): Use _AS_PREPARE.
6888 Adjust Autoconf and Autotest.
6890 * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Don't invoke
6891 AS_SHELL_SANITIZE, AS_INIT did it, but invoke AS_PREPARE.
6892 * lib/autotest/general.m4 (AT_INIT): Likewise.
6893 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
6894 Invoke _AS_PREPARE (not AS_PREPARE) in addition to
6897 Use this M4sh to generate Autoconf's shell scripts.
6899 * tests/wrapsh.as: New, precursor of wrapsh.in.
6900 * tests/Makefile.am: Include lib/freeze.mk to get the dependencies
6901 on Autotest and M4sh.
6902 ($(TESTSUITE)): Use $(autotest_m4f_dependencies).
6903 (wrapsh.in): New target.
6904 * bin/autoconf.as: New, precursor of autoconf.in.
6905 (autoconf.in): New target.
6907 2002-04-09 Alexandre Duret-Lutz <duret_g@epita.fr>
6909 * doc/autoconf.texi (Limitations of Make): Mention the issue
6910 with indented comments in rules.
6912 2002-04-09 Andreas Schwab <schwab@suse.de>
6914 * lib/autoconf/status.m4 (_AC_SRCPATHS): Handle empty
6915 ac_top_builddir when setting ac_abs_top_builddir.
6917 2002-04-06 Kevin Ryde <user42@zip.com.au>
6919 * doc/autoconf.texi (Systemology): Add link to Unix V7 online docs.
6920 (Portable Shell): Cross reference to Systemology.
6922 2002-04-05 Akim Demaille <akim@epita.fr>
6924 * bin/autoreconf.in (autoreconf): Be sure to accumulate the
6925 directories when descending in a SUBDIRS.
6926 Reported by Ezra Peisach.
6928 2002-04-04 Andreas Schwab <schwab@suse.de>
6930 * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
6931 contains no literal separators.
6933 2002-04-03 Akim Demaille <akim@epita.fr>
6935 * lib/autoconf/status.m4 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER)
6936 (_AC_CONFIG_COMMAND, _AC_CONFIG_LINK): New.
6937 Use dnl, not the KILL diversion.
6939 (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS)
6940 (AC_CONFIG_LINKS): here.
6942 Don't use the KILL diversion, as it kills spurious output, which
6943 results in failures being hidden.
6944 Use m4_defn where appropriate.
6945 (AC_CONFIG_IF_MEMBER): Kill the real bug: a spurious parenthesis
6946 after the second argument.
6948 * lib/autom4te.in (Autoconf, Autotest, M4sh): Don't pass --warning
6949 syntax, as it is provided by M4sugar.
6950 * tests/torture.at (Multiple AC_CONFIG_FILES): New.
6952 2002-04-03 Andreas Schwab <schwab@suse.de>
6954 * lib/m4sugar/m4sugar.m4 (m4_bmatch): Make sure m4_bregexp is not
6955 expanded if $# <= 2.
6957 * bin/autoreconf.in (autoreconf): Run automake after rerunning
6960 2002-04-03 Akim Demaille <akim@epita.fr>
6962 * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT)
6963 (_AC_COMPILER_EXEEXT_REJECT): New.
6964 Also recognize *.bb and *.bbg as compilation byproducts.
6965 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT_O)
6966 (_AC_COMPILER_OBJEXT): Use them.
6967 Fixes Debian #138666.
6969 2002-04-02 Peter Eisentraut <peter_e@gmx.net>
6971 Integrate AC_PROG_CC_STDC into AC_PROG_CC.
6973 * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Rename to _AC_PROG_CC_STDC.
6974 AU_DEFUN old name. Use _AC_COMPILE_IFELSE.
6975 (AC_PROG_CC): Call _AC_PROG_CC_STDC.
6976 (AC_C_INLINE): Do not require AC_PROG_CC_STDC.
6978 (AC_C_INLINE): Same.
6979 (AC_C_PROTOTYPES): Same. Require AC_PROG_CC instead.
6980 * doc/autoconf.texi, NEWS: Document.
6981 * tests/mktests.sh (au_exclude_list): Add AC_PROG_CC_STDC and
6984 2002-04-02 Akim Demaille <akim@epita.fr>
6986 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
6987 _AS_MKDIR_P_PREPARE.
6989 2002-03-28 Kevin Ryde <user42@zip.com.au>
6991 * lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
6992 to avoid versions of HP C which don't allow that.
6994 2002-03-27 Paul Eggert <eggert@twinsun.com>
6996 * lib/m4sugar/m4sh.m4 (_AS_BASENAME_PREPARE): New macro.
6997 (AS_SHELL_SANITIZE): Invoke it.
6998 (AS_BASENAME): AS_REQUIRE it, and use $as_basename.
7000 2002-03-26 Akim Demaille <akim@epita.fr>
7002 * doc/autoconf.texi (Portable Shell): Add pointers to FAQs.
7004 2002-03-26 Akim Demaille <akim@epita.fr>
7006 * doc/autoconf.texi (Introduction): The GNATS base moved.
7008 2002-03-25 Paul Eggert <eggert@twinsun.com>
7010 * tests/m4sh.at: Don't rely on "PATH=test:$PATH test-1" working
7011 as POSIX requires, as it doesn't work with Zsh.
7012 * doc/autoconf.texi (Assignments): Document the problem.
7014 2002-03-25 Alexandre Duret-Lutz <duret_g@epita.fr>
7016 * doc/autoconf.texi (Limitations of Make): Mention more issue
7017 about VPATH, overriding of macros in sub-makes, and handling of
7020 2002-03-21 Paul Eggert <eggert@twinsun.com>
7022 * doc/autoconf.texi (Here-Documents): Mention Solaris 8 dtksh
7023 problem with here-document buffer boundaries.
7025 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Unset ENV and BASH_ENV
7026 when reinvoking the shell, to work around problems with installers
7027 who put strange things like "cd" commands in their environments.
7029 2002-03-19 Akim Demaille <akim@epita.fr>
7031 * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/.
7034 2002-03-19 Akim Demaille <akim@epita.fr>
7036 * bin/autoscan.in (scan_file): Specify the location in `&used'
7040 2002-03-19 Akim Demaille <akim@epita.fr>
7042 * doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.
7043 From Nishio Futoshi.
7045 2002-03-19 Akim Demaille <akim@epita.fr>
7047 * lib/m4sugar/m4sugar.m4 (m4_define_default, m4_fst, m4_map): New.
7049 2002-03-18 Paul Eggert <eggert@twinsun.com>
7051 * doc/autoconf.texi (Programming in M4sh): Add AS_MKDIR_P.
7052 (Limitations of Usual Tools): Add mkdir section.
7054 * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): New macro.
7055 (AS_MKDIR_P): Require it. Use mkdir -p if available, falling
7056 back on AS_DIRNAME to compute prefixes otherwise; this is
7057 roughly what mkinstalldirs does. That way, we need not have
7058 our own filename disassembler. The old disassembler did not
7059 work with Solaris 8 dtksh, which is ksh Version M-12/28/93d.
7061 * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP):
7062 Create at_test_all by a series of assignments,
7063 not by a single assignment of a long string. The latter causes ksh
7064 version 11/16/88g to silently misbehave on OpenServer 5.0.6a,
7065 presumably because of a buffer overrun.
7067 2002-03-14 Paul Eggert <eggert@twinsun.com>
7069 * lib/autotest/general.m4 (at_times_skip):
7070 Renamed from at_times. Now a boolean.
7071 ksh93 Version M-12/28/93d doesn't like 'x=times; $x'; it
7072 says 'times: not found'.
7074 2002-03-14 Akim Demaille <akim@epita.fr>
7076 * bin/autoreconf.in (&study_gettextize): New.
7077 (&autoreconf): Handle newest gettextize.
7078 Rerun aclocal if needed.
7079 Suggested by Andreas Schwab.
7081 2002-03-13 Akim Demaille <akim@epita.fr>
7083 * doc/autoconf.texi (Special Shell Variables): More about IFS.
7085 2002-03-13 Akim Demaille <akim@epita.fr>
7087 * doc/autoconf.texi (Header Portability): New.
7088 Add information about stdint.h and inttypes.h from Paul Eggert.
7090 2002-03-13 Akim Demaille <akim@epita.fr>
7092 * doc/autoconf.texi (Limitations of Usual Tools): Some about `cp
7096 2002-03-12 Akim Demaille <akim@epita.fr>
7098 * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): AS_REQUIRE, not
7101 2002-03-11 Andreas Schwab <schwab@suse.de>
7103 * configure.ac: Explicitly check for EMACS since AM_PATH_LISPDIR
7104 does not do it if --with-lispdir is given.
7106 2002-03-08 Akim Demaille <akim@epita.fr>
7110 2002-03-08 Akim Demaille <akim@epita.fr>
7112 * doc/autoconf.texi (Subdirectories): Clarify that the
7113 subdirectory should exist.
7115 2002-03-08 Akim Demaille <akim@epita.fr>
7117 * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
7119 2002-03-08 Akim Demaille <akim@epita.fr>
7121 * bin/autom4te.in (&handle_m4): Do not foreach with `$_' as it
7122 aliases the actual variables, and modifications of the former
7125 2002-03-08 Akim Demaille <akim@epita.fr>
7127 * bin/autom4te.in (&handle_m4): Protect us from corrupted file
7128 because of C-c: have m4 output in tmp files, then mv them.
7130 2002-03-08 Akim Demaille <akim@epita.fr>
7132 * bin/autoconf.in, bin/autoheader.in, bin/autom4te.in,
7133 * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
7134 * bin/ifnames.in: Copyright update.
7136 2002-03-08 Akim Demaille <akim@epita.fr>
7138 * doc/autoconf.texi (Invoking autom4te): New.
7140 2002-03-05 Akim Demaille <akim@epita.fr>
7142 * doc/autoconf.texi (Specifying Names): Clarification suggested by
7145 2002-03-05 Akim Demaille <akim@epita.fr>
7149 2002-03-04 Akim Demaille <akim@epita.fr>
7151 * doc/autoconf.texi (AC_LIBOBJ vs. LIBOBJS): New.
7152 * lib/autoconf/general.m4 (AC_INIT): More informative error
7155 2002-03-04 Akim Demaille <akim@epita.fr>
7157 * lib/freeze.mk ($(build_libdir)/m4sugar/version.m4): New, for
7160 2002-03-04 Akim Demaille <akim@epita.fr>
7162 * doc/autoconf.texi (Transforming Names): Equality between target
7163 and host is irrelevant.
7164 (Specifying Names, Canonicalizing): Remove all references to the
7165 backward compatibility hooks. Rather, collect them all into...
7166 (Hosts and Cross-Compilation): this new section.
7167 * doc/install.texi (System Type): Ditto.
7168 * lib/autoconf/general.m4 (AC_CANONICAL_HOST): Explicitly state
7169 that `--host' implies cross-compilation.
7171 2002-03-04 Akim Demaille <akim@epita.fr>
7173 * doc/autoconf.texi (Evaluation Macros): New.
7174 * lib/m4sugar/m4sugar.m4 (m4_lquote): Remove, it is totally
7176 (_m4_foreach): Define the variant with immediate evaluation so
7177 that it contains exactly the items, not an expression which
7178 evaluation is the current item.
7179 (m4_re_string, m4_re_word): Don't over quote them.
7181 2002-03-04 Akim Demaille <akim@epita.fr>
7183 Instead of having stacking `shift's evaluated at the end, let
7184 `foreach' loops immediately evaluate them.
7186 * lib/m4sugar/m4sugar.m4 (m4_quote, m4_dquote): Use $@ rather than
7187 $*. This is the n-th time I change my mind, but hopefully this is
7190 (m4_text_wrap): Use m4_foreach, which is finally correct _and_
7192 (m4_foreach_quoted, m4_car_quoted, _m4_foreach_quoted): Remove, as
7193 it was only a hack for m4_text_wrap.
7194 (m4_car2): Remove, replaced by...
7196 (_m4_foreach): Adjust.
7197 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust, and use
7198 m4_bpatsubst for clarification.
7200 2002-03-04 Akim Demaille <akim@epita.fr>
7202 * doc/autoconf.texi (Changequote is Evil): New.
7204 2002-03-03 Kevin Ryde <user42@zip.com.au>
7206 * doc/autoconf.texi (Portable Shell): Mention 32-byte #! length limit
7207 on old systems like SunOS.
7209 2002-03-01 Peter Eisentraut <peter_e@gmx.net>
7211 * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
7212 lib/autoconf/functions.m4, lib/autoconf/general.m4,
7213 lib/autoconf/headers.m4, lib/autoconf/lang.m4,
7214 lib/autoconf/programs.m4, lib/autoconf/status.m4: Improve spelling
7217 2002-02-28 Akim Demaille <akim@epita.fr>
7219 * lib/autotest/general.m4 (AT_INIT): Suggest a title to the
7222 2002-02-28 Kevin Ryde <user42@zip.com.au>
7224 * doc/autoconf.texi (Function Portability): Add va_copy and va_list.
7226 2002-02-25 Akim Demaille <akim@epita.fr>
7228 * lib/autoconf/functions.m4 (AC_FUNC_SETPGRP): Fix the test.
7231 2002-02-13 Alexandre Duret-Lutz <duret_g@epita.fr>
7233 * lib/Autom4te/XFile.pm (getline, getlines): New functions,
7234 translate \r\n to \n.
7236 2002-02-07 Akim Demaille <akim@epita.fr>
7240 2002-02-07 Akim Demaille <akim@epita.fr>
7242 Fix Autoconf PR/209.
7243 Also reported by Frank Denis.
7245 * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Don't over quote.
7247 2002-02-07 Akim Demaille <akim@epita.fr>
7249 Fix Autoconf PR/207:
7250 AC_PREFIX_PROGRAM fails with dashed program names
7252 * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Just use a fresh
7253 variable when looking for the prefix program.
7254 Now it also works for shell variables.
7256 2002-02-07 Akim Demaille <akim@epita.fr>
7258 * doc/autoconf.texi (Limitations of Builtins): More about
7261 2002-02-06 Akim Demaille <akim@epita.fr>
7263 * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Don't output empty
7264 case/esac, some shells don't support it.
7265 Reported by Zack Weinberg.
7266 * tests/torture.at (AC_CONFIG_COMMANDS with empty commands): New.
7268 2002-02-06 Akim Demaille <akim@epita.fr>
7270 * lib/autotest/general.m4 (AT_INIT): When handling --keywords, be
7271 sure not to introduce newlines in at_groups.
7272 * lib/autotest/Makefile.am (autotest.m4f): Typo.
7274 2002-02-06 Akim Demaille <akim@epita.fr>
7276 * tests/torture.at (Configuring subdirectories): Skip if aclocal
7279 2002-02-05 Paul Eggert <eggert@twinsun.com>
7281 * doc/autoconf.texi (Specific Compiler Characteristics):
7282 Describe HP-UX cc bug workaround more accurately.
7283 * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast to long,
7285 * tests/semantics.at (AC_CHECK_SIZEOF): Check non-GCC
7286 cross-compilers, too. This undoes some of the most recent change
7289 2002-02-05 Akim Demaille <akim@epita.fr>
7291 * tests/Makefile.am (check_SCRIPTS): Use it, instead of WRAPPERS,
7292 to make sure they are up to date when `check' is run.
7294 2002-02-05 Akim Demaille <akim@epita.fr>
7296 * doc/autoconf.texi (Making testsuite Scripts): Document
7299 2002-02-05 Akim Demaille <akim@epita.fr>
7301 * lib/freeze.mk: New.
7303 2002-02-05 Akim Demaille <akim@epita.fr>
7305 Implement `autom4te --freeze'.
7307 * bin/autom4te.in (&freeze): New.
7308 * lib/autoconf/autoconf.m4, lib/autotest/general.m4,
7309 * lib/m4sugar/m4sh.m4: Don't include files given by autom4te.
7311 2002-02-05 Akim Demaille <akim@epita.fr>
7313 * bin/autom4te.in (&parse_args): Implement `frozen files are
7314 optional are the sum of the previous files on the command line'.
7315 Also, pass `--reload-state=' on them, so...
7317 * lib/autom4te.in (Autotest, Autoconf): Rely on M4sh.
7318 (M4sh): Rely on M4sugar.
7319 (Autotest, M4sh, M4sugar): Use frozen files.
7321 2002-01-31 Akim Demaille <akim@epita.fr>
7323 * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Accept $4.
7324 * doc/autoconf.texi (Initializing configure): Adjust.
7326 2002-01-30 Akim Demaille <akim@epita.fr>
7328 * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
7329 alphanumeric to `-' instead of `_'.
7331 2002-01-30 Akim Demaille <akim@epita.fr>
7333 * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
7334 for plain code, the other for cross-compilation code. The latter
7335 is now run with GCC only.
7336 * doc/autoconf.texi (Compilers and Preprocessors): New.
7338 2002-01-30 Akim Demaille <akim@epita.fr>
7340 * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Support pre-defined
7342 * doc/autoconf.texi (Initializing configure): Explain how to
7343 change AC_INIT default values.
7345 2002-01-29 Akim Demaille <akim@epita.fr>
7347 * tests/torture.at (Configuring subdirectories): Use configure.in,
7348 so that aclocal 1.4 works.
7349 Reported by Alexandre Duret-Lutz and Larry Schmitt.
7351 2002-01-28 Akim Demaille <akim@epita.fr>
7353 * doc/autoconf.texi (Writing testsuite.at): AT_CLEANUP no longer
7356 2002-01-28 Akim Demaille <akim@epita.fr>
7358 * lib/autotest/general.m4 (AT_INIT): Don't be ridiculous: adjust
7359 AUTOTEST_PATH *after* it was set.
7360 Don't put `.' in the PATH: the user should be precise and `./' if
7361 needed. In addition, given that the test suite does some `cd', if
7362 `.' is in the path, the `tested programs' sections will report
7363 programs found in the test suite's directory, while during the
7364 tests (performed in their own directory), these programs are no
7365 longer visible. In other words, the results is confusing and
7367 * tests/m4sh.at: Adjust: don't rely on `.' being in the PATH.
7369 2002-01-24 Akim Demaille <akim@epita.fr>
7373 2002-01-24 Akim Demaille <akim@epita.fr>
7375 * bin/autoheader.in, bin/autoconf.in, bin/autoscan.in,
7376 * doc/autoconf.texi: Finally add Akim as an author.
7378 2002-01-24 Akim Demaille <akim@epita.fr>
7380 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Use PATH_SEPARATOR.
7381 (_AS_PATH_SEPARATOR_PREPARE): Don't expect $SHELL to be
7382 Bourne. Use /bin/sh.
7383 From Andreas Buening.
7385 2002-01-24 Akim Demaille <akim@epita.fr>
7387 * config/config.guess, config/config.sub, config/texinfo.tex:
7388 Update from masters.
7390 2002-01-24 Akim Demaille <akim@epita.fr>
7392 * Makefile.am (AUTOMAKE_OPTIONS): 1.5b.
7393 * config/auxdir.m4, config/cond.m4, config/depend.m4,
7394 * config/init.m4, config/install-sh.m4, config/lispdir.m4,
7395 * config/missing.m4, config/sanity.m4, config/select.m4,
7396 * config/strip.m4: Remove, to ease sync'ing with any version of
7399 2002-01-24 Akim Demaille <akim@epita.fr>
7401 * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS)
7402 (_AC_INIT_PREPARE): Support -n as --no-create, as documented.
7403 Reported by Geir Ove Myhr.
7405 2002-01-21 Akim Demaille <akim@epita.fr>
7407 * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc.
7409 2002-01-21 Akim Demaille <akim@epita.fr>
7411 * lib/Autom4te/General.pm (getopt): Use a more GNUish error
7412 message on invalid options.
7413 * bin/autom4te.in (parse_args): Don't use
7414 Autoconf::General::getopt with non valid options.
7416 2002-01-17 Jim Meyering <meyering@lucent.com>
7418 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Initialize
7419 $ac_cv_exeext so we don't use an old, invalid, cached value.
7421 2002-01-11 Akim Demaille <akim@epita.fr>
7423 * lib/autoconf/functions.m4 (AC_FUNC_STRNLEN): New, from Jim
7425 * doc/autoconf.texi (Function Portability): Document the strnlen
7427 (Particular Functions): Document AC_FUNC_STRNLEN.
7428 * lib/autoscan/functions: Adjust.
7430 2002-01-06 Akim Demaille <akim@epita.fr>
7432 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't create
7433 package.m4, since is really depends upon configure.ac, not
7435 * doc/autoconf.texi (testsuite Scripts): Adjust.
7436 * tests/Makefile.am (package.m4): New.
7437 EXTRA_DIST it since its a source.
7439 2002-01-06 Akim Demaille <akim@epita.fr>
7441 * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Move the AC_SUBST
7442 of PACKAGE_NAME, PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING,
7443 and PACKAGE_BUGREPORT from here...
7444 (_AC_INIT_DEFAULTS): to here, since it is unrelated to the
7446 (_AC_INIT_PREPARE): AC_DEFINE these symbols.
7447 * lib/autotest/general.m4: Use AT_PACKAGE_*, not PACKAGE_*.
7448 (AT_INIT): No longer catch `^PACKAGE_(BUGREPORT|STRING)$'.
7449 * tests/tools.at (autoheader): Adjust.
7450 * tests/atspecific.m4 (AT_CHECK_DEFINES): Adjust.
7452 2002-01-06 Akim Demaille <akim@epita.fr>
7454 * bin/autoscan.in (scan_file): Use `&used'.
7456 2002-01-03 Akim Demaille <akim@epita.fr>
7458 * doc/autoconf.texi (Output): Improved wording regarding use of
7462 2001-12-18 Kevin Ryde <user42@zip.com.au>
7464 * doc/autoconf.texi (Function Portability): Add notes on sscanf
7465 sometimes needing writable input.
7467 2001-12-17 Jim Meyering <meyering@lucent.com>
7469 * doc/autoconf.texi (New Macros): Tweak wording.
7471 2001-12-14 Akim Demaille <akim@epita.fr>
7473 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): We cleaning up the
7474 trailing files, don't apply `-rf' to files which might not be
7475 created by configure (core, core.*, and *.core), but just `rm -f'.
7476 Suggested by Jonathan Kamens.
7478 2001-12-14 Aaron M. Ucko <amu@alum.mit.edu>
7480 * lib/autoconf/general.m4: Avoid duplicates in `$ac_configure_args'.
7482 2001-12-14 Akim Demaille <akim@epita.fr>
7484 * Makefile.am (MAINTAINERCLEANFILES): Remove configure.
7486 2001-12-13 Peter Eisentraut <peter_e@gmx.net>
7488 * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename buildpath to
7489 abs_builddir, top_buildpath to abs_top_builddir, srcpath to
7490 abs_srcdir, top_srcpath to abs_top_srcdir.
7491 (_AC_OUTPUT_FILES): Adjust.
7492 * NEWS, doc/autoconf.texi, lib/autoconf/autotest.m4,
7493 * tests/atspecific.m4, tests/autoreconf.in, tests/tools.at,
7494 * tests/wrappl.in, tests/wrapsh.in: Adjust.
7496 2001-12-12 Steven G. Johnson <stevenj@alum.mit.edu>
7498 * lib/autoconf/fortran.m4 (_AC_PROG_F77_V_OUTPUT): Fix failed
7499 C/Fortran linking on HP/UX, by extracting the Fortran library
7500 search path from the LPATH line in the $F77 -v output.
7502 2001-12-12 Kevin Ryde <user42@zip.com.au>
7504 * doc/autoconf.texi (File Descriptors): Use a clearer layout for the
7505 forbidden file descriptors table.
7507 2001-11-26 Akim Demaille <akim@epita.fr>
7509 * bin/autoscan.in (%c_keywords): Build it at top level.
7510 Map to 1 in order to simplify its uses.
7512 2001-11-26 Akim Demaille <akim@epita.fr>
7514 * bin/autoscan.in (&scan_c_file, &scan_sh_file, &scan_makefile):
7515 Remove $filepath, useless.
7516 (&scan_makefile): Don't remove the $(FOO), ${FOO} and @FOO@
7517 variables, they are really part of the tokens.
7518 Split the input line on spaces and then look for tokens.
7519 Now autoscan ceases to ask for AC_PROG_LEX for the package Bison
7520 because of `lex$U.$(OBJEXT)'.
7521 (&scan_files): Use "@list" instead of join.
7522 * doc/Makefile.am (CLEANFILES): Add *.fns.
7524 2001-11-26 Akim Demaille <akim@epita.fr>
7526 * tests/autoreconf.in, tests/autom4te.in, tests/autoupdate.in:
7527 Remove, replaced by...
7528 * tests/wrappl.in: Be common for all the Perl executables.
7529 In particular autoscan and autoheader want -I.
7530 * configure.ac: Adjust.
7531 * lib/autoscan/headers: errno.h is portable.
7533 2001-11-26 Akim Demaille <akim@epita.fr>
7535 * bin/autoscan.in (used): New.
7538 2001-11-26 Akim Demaille <akim@epita.fr>
7540 * bin/autoscan.in (&scan_c_file): Better parsing of CPP
7542 (&scan_sh_file): Remove a duplicate pattern.
7543 (&check_configure_ac): Use long options.
7544 * lib/autoscan/headers (alloca.h): Check with AC_FUNC_ALLOCA.
7546 2001-11-26 Akim Demaille <akim@epita.fr>
7548 * bin/autoscan.in (scan_c_file): Fix the handling of C comments.
7549 Before, having a line containing the opening of a multi line
7550 comment made the whole line be ignored.
7552 2001-11-26 Akim Demaille <akim@epita.fr>
7554 * doc/autoconf.texi (Using an Autotest Test Suite): New.
7555 (testsuite Scripts): Be one of its subsection.
7556 (Autotest Logs): New.
7558 2001-11-26 Akim Demaille <akim@epita.fr>
7560 Test groups are now run two directories deeper.
7562 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Replace srcdir,
7563 top_srcdir and top_builddir with at_srcdir, at_top_srcdir and
7565 * lib/autotest/general.m4 (AT_INIT): Compute srcdir,
7566 top_srcdir, builddir and top_builddir.
7567 Use `at_*dir' relatively to the directory containing the
7568 suite, use `*dir' when relatively to the current group dir.
7570 2001-11-25 Joseph S. Myers <jsm28@cam.ac.uk>
7572 * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
7573 lib/autoconf/functions.m4, lib/autoconf/headers.m4,
7574 tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
7577 2001-11-22 Alexandre Duret-Lutz <duret_g@epita.fr>
7579 * doc/autoconf.texi (Using System Type): Add an example of `case
7580 $host' usage so people quit using `case $target' everywhere.
7582 2001-11-22 Akim Demaille <akim@epita.fr>
7584 * doc/autoconf.texi (Installation Directory Variables): Englishoes
7585 spotted by Jim Meyering.
7587 2001-11-16 Paul Eggert <eggert@twinsun.com>
7589 This patch implements a `long double' suggestion by Oliver Kiddle.
7591 * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Make the array
7592 static, to catch errors if the value isn't known at compile-time
7593 and the compiler supports dynamic arrays. Change its name from
7594 `_array_' to `test_array' to avoid potential name clashes.
7595 (AC_C_LONG_DOUBLE): Make it a compile-time test, not a run-time
7596 test. Do not define HAVE_LONG_DOUBLE if `long double' is no
7597 better than double. Catch a bug in GCC 2.95.2 x86.
7598 * doc/autoconf.texi (C Compiler): Document the above.
7601 2001-11-13 Akim Demaille <akim@epita.fr>
7603 * tests/m4sh.at (LINENO): Protect from autom4te's substitution by
7605 * tests/tools.at: Don't protect dnl, AT_DATA_M4SH does.
7607 2001-11-13 Akim Demaille <akim@epita.fr>
7609 * lib/autotest/general.m4 (AT_INIT): After having run the test
7610 group, go back to the initial directory, not to at_suite_dir.
7612 2001-11-13 Akim Demaille <akim@epita.fr>
7614 * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH)
7615 (AT_DATA_AUTOCONF): Also protect @&t@ from autom4te.
7616 (AT_CHECK_AUTOCONF, AT_CHECK_AUTOHEADER): Pass no --include
7618 (AT_CHECK_CONFIGURE): Use absolute paths.
7619 (_AT_CHECK_AC_MACRO): Create aclocal.m4 with AC_STATE_SAVE in it.
7620 The problem is still the old one: there is no means in M4 (that I
7621 know about) to create a defining macro, because there is no means
7622 to create `$1' etc., therefore, the defining macro ``swallows''
7623 all the arguments meant to the defined macro.
7625 2001-11-13 Akim Demaille <akim@epita.fr>
7627 * tests/atspecific.m4 (AT_DATA_AUTOCONF): New.
7628 (AT_CONFIGURE_AC): Output the definition of AC_STATE_SAVE in
7630 * tests/aclocal.m4: Remove, as it is no longer used.
7632 2001-11-13 Akim Demaille <akim@epita.fr>
7634 * lib/autotest/general.m4: Change `tests?' into `groups?' in
7635 variable names when referring to a single test group, or to
7636 `suite' when referring to the whole test suite.
7637 `at_last_test' is removed: m4 compute at_format itself.
7638 (at_stdout, at_stder1, at_stderr): New variables.
7639 (AT_CHECK): Use them.
7641 2001-11-13 Akim Demaille <akim@epita.fr>
7643 * lib/autotest/general.m4 (AT_INIT): Be sure to put `.', relative,
7645 Create `testsuite.dir/003/run' instead of `testsuite.003'.
7646 Do it as soon as a test fails, don't wait till the end of the test
7648 Don't remove $as_me.[0-9]*, since these files no longer exist.
7650 2001-11-13 Akim Demaille <akim@epita.fr>
7652 * tests/tools.at: Use absolute paths, since we are no longer run
7655 2001-11-13 Akim Demaille <akim@epita.fr>
7657 Now that tests are running in their own private dir, there is no
7658 need to list the files to remove at the end of tests groups.
7660 * lib/autotest/general.m4 (_AT_CLEANUP_FILE, AT_CLEANUP_FILES):
7661 (AT_data_files, at_data_files): Remove.
7662 (AT_CLEANUP, AT_DATA): Simplify.
7664 Remove the group dir if !debug && !failed.
7665 * tests/atspecific.m4: Adjust.
7667 2001-11-13 Akim Demaille <akim@epita.fr>
7669 Start a new layout for Autotest: `testsuite' creates
7670 `testsuite.dir' in which the at-check-line etc. files are to be
7671 found, and `testsuite.dir/003' where the test group 3 is run.
7673 * lib/autotest/general.m4 (AT_INIT): at_tests_dir,
7674 at_check_line_file, at_format, at_test_normalized, at_group_dir
7676 Create the directories.
7677 Use absolute paths for at- files.
7680 2001-11-11 Michael Matz <matz@kde.org>
7682 * m4sugar.m4 (_m4_foreach): Make it linear instead quadratic.
7684 (m4_car): Properly quote arguments.
7686 2001-11-13 Akim Demaille <akim@epita.fr>
7688 * tests/aclocal.m4 (AC_STATE_SAVE): s/LIBOBJS/LIB@&t@OBJS/ to cope
7689 with stricter rules on LIBOBJS.
7691 2001-11-12 Paul Eggert <eggert@twinsun.com>
7693 * lib/autoconf/c.m4 (AC_C_PROTOTYPES): Define __PROTOTYPES too.
7694 * doc/autoconf.texi (C Compiler): AC_C_PROTOTYPES now defines
7697 2001-11-12 Akim Demaille <akim@epita.fr>
7699 * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Use AC_CHECK_FUNCS.
7701 2001-11-12 Akim Demaille <akim@epita.fr>
7703 * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
7704 * lib/autoconf/functions.m4, lib/autoconf/general.m4,
7705 * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
7706 * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
7707 * lib/autoconf/types.m4: When invoking AC_DEFINE and friends,
7708 specify to what the macro should be defined (typically to 1).
7710 2001-11-12 Akim Demaille <akim@epita.fr>
7712 * lib/autoconf/functions.m4 (AC_FUNC_STRTOD): AC_SUBST POW_LIB.
7715 2001-11-12 Akim Demaille <akim@epita.fr>
7717 * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
7718 AC_TRY_EVAL to run $LEX, not AC_TRY_COMMAND. This validates the
7719 definition used by Automake where LEX is +/- "${missing} lex" and
7720 `missing' itself contains variables.
7722 2001-11-12 Akim Demaille <akim@epita.fr>
7724 * lib/autotest/general.m4 (AT_INIT): Push KILL at the end.
7725 Now that M4sh pushes BODY, the comments were output at the end of
7728 2001-11-08 Akim Demaille <akim@epita.fr>
7730 * bin/autoreconf.in (&autoreconf): Run aclocal before tracing, so
7731 that we can trace macros from aclocal.m4.
7732 Trace AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL, since the latter is
7733 obsoleted, and redirect to the former anyway.
7734 Reported by Ralf Corsepius.
7736 2001-11-08 Akim Demaille <akim@epita.fr>
7738 * bin/autoreconf.in (&autoreconf): AC_CONFIG_SUBIDRS are to be
7739 processed only if present.
7740 * tests/torture.at (Configuring subdirectories): Use autoreconf
7741 instead of successive calls to autoconf.
7742 Add a nonexistent subdirectory to exercise the patch above.
7743 Reported by Ralf Corsepius.
7745 2001-11-08 Kevin Ryde <user42@zip.com.au>
7747 * doc/autoconf.texi (Limitations of Usual Tools): Note HP-UX cc
7748 doesn't accept .S files.
7750 2001-11-07 Akim Demaille <akim@epita.fr>
7752 * lib/m4sugar/m4sugar.m4 (m4_pattern_forbid): Accepts $2.
7753 * lib/autoconf/general.m4 (AC_INTI): Forbid LIBOBJS.
7754 (_AC_LIBOBJ): s/LIBOBJS/LIB@&t@OBJS/.
7755 * bin/autom4te.in (warn_forbidden): New.
7756 (handle_output): Use it.
7757 Read m4_pattern_forbid with messages.
7759 2001-11-05 Akim Demaille <akim@epita.fr>
7761 * bin/autom4te.in (--normalize): Remove.
7762 * lib/autom4te.in: Adjust.
7764 2001-11-05 Akim Demaille <akim@epita.fr>
7766 * tests/Makefile.am (testsuite): Rename this target as...
7767 ($(TESTSUITE)): this.
7770 2001-11-05 Alexandre Duret-Lutz <duret_g@epita.fr>
7772 * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): When removing
7773 the --prefix option, also remove it's argument.
7775 2001-11-05 Akim Demaille <akim@epita.fr>
7777 * doc/autoconf.texi (testsuite Invocation): Update.
7778 (Writing testsuite.at): Update.
7780 2001-11-03 Akim Demaille <akim@epita.fr>
7782 * doc/autoconf.texi: s/@code/@command/ where appropriate.
7784 2001-11-03 Akim Demaille <akim@epita.fr>
7786 * lib/Autom4te/General.pm: (&catfile, &canonfile)
7787 (&file_name_is_absolute): New, wrappers around routines from
7789 Use and export them.
7790 (&find_configure_ac): Optionally take a directory where to look at.
7791 * bin/autoreconf.in (&parse_args): Trim the configure.ac part of
7793 Default @ARGV to `.', not find_configure_ac.
7794 (&autoreconf): Argument is a directory.
7795 Trace AC_CONFIG_SUBDIRS and schedule the subdirs for autoreconf'ing.
7796 * doc/autoconf.texi (autoreconf Invocation): Update.
7798 2001-11-03 Akim Demaille <akim@epita.fr>
7800 * lib/Autom4te/General.pm (@export_vars, @export_subs)
7801 (@export_forward_subs): New.
7802 Add basename, dirname, and fileparse.
7804 * bin/autoreconf.in (&autoreconf): Fix call to fileparse.
7805 Don't look for aclocal flags if we already know aclocal is not
7807 Move aclocal.m4t only if it exists.
7808 Reported by Ezra Peisach.
7810 2001-11-03 Akim Demaille <akim@epita.fr>
7812 * bin/autoreconf.in (&parse_args): Work only on the configure.ac
7813 passed on command line, defaulting to ./configure.ac if present.
7814 (&maybe_autoreconf, File::Find): Remove, unused.
7815 (&autoreconf): If autoconf is not used, don't try to trace.
7817 2001-11-02 Akim Demaille <akim@epita.fr>
7819 * configure.ac: Bump to 2.52g.
7821 2001-11-02 Akim Demaille <akim@epita.fr>
7825 2001-11-02 Akim Demaille <akim@epita.fr>
7827 * config/config.guess, config/config.sub, doc/standards.texi:
7828 * config/lispdir.m4: Update from masters.
7829 * configure.ac: Bump to 2.52f.
7831 2001-11-02 Akim Demaille <akim@epita.fr>
7833 * bin/autoreconf.in (&autoreconf): Set `$aclocal_flags' to ''.
7834 Don't run aclocal when aclocal.m4 is not from aclocal.
7836 Don't run libtoolize and gettextize if --install is not given.
7838 2001-11-01 Paul Eggert <eggert@twinsun.com>
7840 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): _AS_CR_PREPARE needs to
7841 be invoked before _AS_LINENO_PREPARE.
7842 (_AS_LINENO_PREPARE): Use as_cr_digits and as_cr_alnum rather
7843 than character ranges.
7845 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix NLS before
7846 invoking AS_BASENAME. Set the locale variables to 'C' if
7847 possible, as POSIX requires this to get the traditional
7849 * doc/autoconf.texi (Special Shell Variables): Describe the above.
7851 2001-10-31 Paul Eggert <eggert@twinsun.com>
7853 * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Do not surround body
7854 with {}, as that triggers a bug in Bash 2.05.
7856 (_AS_LINENO_PREPARE): Use Sed rather than
7857 Awk. Fix the sed prepass to work even if there are multiple
7858 instances of $LINENO on the same line. Do not substitute for
7859 other variables like $LINENOT. Do not check file dates; such a
7860 check is unreliable on sufficiently fast machines, and removing
7861 the check makes the code simpler and more reliable. Check for
7862 output and chmod failures.
7864 * doc/autoconf.texi (Special Shell Variables): Document
7867 2001-10-31 Akim Demaille <akim@epita.fr>
7869 * tests/Makefile.am (atconfig): Remove this target, Automake
7872 2001-10-31 Akim Demaille <akim@epita.fr>
7874 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Do not
7875 AC_CONFIG_FILES(atlocal) as it means a file atlocal.in *must* be
7876 provided, while it is optional.
7877 * configure.ac: Adjust.
7879 2001-10-26 Paul Eggert <eggert@twinsun.com>
7881 * NEWS, README, configure.ac, lib/Autom4te/General.pm,
7882 lib/Autom4te/Struct.pm:
7883 Require Perl 5.005_03 instead of just 5.005, as some tests fail
7886 * doc/autoconf.texi (Special Shell Variables): Document some
7887 more LINENO gotchas, particularly with respect to the Awk+Sed hack.
7889 * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): New macro.
7890 (_AS_LINENO_PREPARE): Use it instead of shell eval, since
7891 eval $LINENO is not portable in practice.
7893 2001-10-24 Akim Demaille <akim@epita.fr>
7895 * lib/Autom4te/General.pm (backname): New.
7897 2001-10-24 Akim Demaille <akim@epita.fr>
7899 * m4/: Remove, merged into...
7902 2001-10-23 Tim Van Holder <tim.van.holder@pandora.be>
7904 * doc/autoconf.texi (Shellology): Mention the problems with bash
7905 2.05's use of ANSI quoting in its `set' builtin.
7907 2001-10-22 Paul Eggert <eggert@twinsun.com>
7909 * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R):
7910 Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
7911 and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
7912 POSIX decided to standardize on the int flavor of strerror_r.
7913 Always do char* test, as there's no reason not to.
7914 Assign to a char* var, to catch strerror_r that returns int*.
7916 * doc/autoconf.texi (Particular Functions):
7917 Document the above changes. Also, document the fact that
7918 AC_FUNC_STRERROR_R defines HAVE_DECL_STRERROR_R.
7920 * NEWS: Mention HAVE_WORKING_STRERROR_R -> STRERROR_R_CHAR_P.
7922 2001-10-20 Akim Demaille <akim@epita.fr>
7924 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): The name of
7925 the executable was missing from the log.
7927 2001-10-20 Akim Demaille <akim@epita.fr>
7929 * lib/Autom4te/General.pm (&update_file): If destination is
7930 unchanged, remove the source.
7931 (&up_to_date_p): Don't be verbose, be debug.
7932 * bin/autoreconf.in: No longer support --m4dir.
7933 (&autoreconf): Display the full path of the configure.ac we are
7936 Be sure to honor --force with gettextize.
7938 * doc/autoconf.texi: Adjust.
7940 2001-10-20 Akim Demaille <akim@epita.fr>
7942 * bin/autoheader.in ($localdir, $m4, $SIMPLE_BACKUP_SUFFIX):
7944 * bin/autoreconf.in (&autoreconf): Do not run gettextize when
7945 `intl' is already present, as it refuses unless --force.
7946 (&parse_args): Use -I, --include instead of the old Autoconf
7948 ($localdir, $autoconf_dir): Remove.
7950 (&maybe_autoreconf): New, to preserve $_ for File::Find.
7952 2001-10-19 Jens Petersen <petersen@redhat.com>
7954 * lib/autoconf/programs.m4 (AC_PROG_AWK): Prefer gawk to mawk.
7955 * doc/autoconf.texi (Particular Programs): Likewise.
7957 2001-10-19 Akim Demaille <akim@epita.fr>
7959 * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Name the generated
7960 file in @configure_input@.
7961 Don't mention `automatically' in addition to `generated'.
7962 * tests/torture.at (#define header templates): Adjust.
7964 2001-10-19 Akim Demaille <akim@epita.fr>
7966 * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
7967 comment, explain how to install automatic mode selection.
7970 2001-10-19 Ezra Peisach <epeisach@zif.mit.edu>
7972 * bin/autoreconf.in (autoreconf): Display the path to the
7973 configure.ac being studied.
7975 2001-10-18 Paul Eggert <eggert@twinsun.com>
7977 * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast sizeof to unsigned
7978 long, to work around a bug in the HP C compiler version HP92453-01
7981 * lib/m4sugar/m4sh.m4 (AS_DIRNAME): Use 'dirname' if that works.
7982 (AS_BASENAME_EXPR): New macro.
7983 (AS_BASENAME_SED): Do not assume GNU sed semantics.
7984 (AS_BASENAME): Use 'basename' if that works; then try 'expr';
7985 and fall back on 'sed' only if the other two fail. This makes
7986 AS_BASENAME act more like AS_DIRNAME.
7987 (as_me): Shell-quote the argument of AS_BASENAME, in case $0
7988 contains white space.
7989 * lib/autoconf/general.m4 (_AC_INIT_SRCDIR):
7990 Use AS_DIRNAME, since I think it's now DOS-friendly.
7991 * tests/m4sh.at (DIRNAME_TEST): New arg $3.
7992 Allow "dirname //FOO" to return either / or //, as POSIX allows
7995 2001-10-10 Akim Demaille <akim@epita.fr>
7997 * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Recognize
7998 `a_out.exe' for OpenVMS 7.1, DEC C 5.5 compiler, via GNV.
8001 2001-10-10 Akim Demaille <akim@epita.fr>
8003 * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): m4_defun, not
8005 (_AS_ECHO_N): AS_REQUIREs it.
8007 2001-10-10 Akim Demaille <akim@epita.fr>
8009 * lib/autoconf/general.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS)
8010 (AC_INCLUDES_DEFAULT): Move to...
8011 * lib/autoconf/headers.m4: here.
8012 * lib/autoconf/types.m4: Comment changes.
8013 * doc/autoconf.texi: Specify where the default includes are used
8014 in the macro prototypes.
8016 2001-10-09 Akim Demaille <akim@epita.fr>
8018 * lib/autoconf/autoconf.m4 (m4_patsubst, m4_regexp): New
8021 2001-10-08 Akim Demaille <akim@epita.fr>
8023 * bin/autoreconf.in (&autoreconf): Remove debugging code.
8024 (&parse_args): Pass verbosity/debugging options to subtools when
8025 --debug, not when --verbose.
8026 * lib/autom4te.in (Autoreconf-preselections): New.
8029 2001-10-08 Akim Demaille <akim@epita.fr>
8031 * bin/autoreconf.in (autoreconf): Run libtoolize when appropriate.
8033 2001-10-08 Akim Demaille <akim@epita.fr>
8035 * doc/autoconf.texi (autoreconf Invocation): Adjust.
8036 * bin/autoreconf.in (autoreconf): Run gettextize when appropriate.
8038 2001-10-08 Akim Demaille <akim@epita.fr>
8040 * tests/tools.at (AT_CHECK_PERL_SYNTAX): Check autoreconf.
8041 (Syntax of the shell scripts): Don't.
8042 * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in: Don't
8043 bother with $force since...
8044 * lib/Autom4te/General.pm: does.
8046 2001-10-08 Akim Demaille <akim@epita.fr>
8048 * bin/autoreconf.in: Rewrite in Perl.
8049 * configure.ac: Adjust.
8050 * lib/Autom4te/General.pm (&up_to_date_p): New.
8051 * bin/autom4te.in (&up_to_date_p): Use it.
8053 (&up_to_date): this.
8055 2001-10-08 Akim Demaille <akim@epita.fr>
8057 * lib/m4sugar/m4sugar.m4 (m4_case, m4_bmatch, m4_normalize)
8058 (m4_list_cmp): Use $0 to reinvoke yourself.
8059 (m4_patsubsts): New.
8060 (m4_strip, m4_version_unletter): Use it.
8061 * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): Likewise.
8063 2001-10-08 Akim Demaille <akim@epita.fr>
8065 * lib/autoconf/autoconf.m4, lib/autoconf/general.m4,
8066 * lib/autoconf/libs.m4, lib/autoconf/status.m4,
8067 * lib/autoconf/types.m4, lib/autotest/general.m4,
8068 * lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4, tests/atspecific.m4,
8069 * tests/torture.at: Rename m4_regexp, m4_patsubst, and m4_match to
8070 m4_bregexp, m4_bpatsubst, and m4_bmatch.
8071 * doc/autoconf.texi (Redefined M4 Macros): Adjust.
8073 2001-10-08 Akim Demaille <akim@epita.fr>
8075 * lib/m4sugar/m4sh.m4: Use AS_REQUIRE.
8077 2001-10-08 Akim Demaille <akim@epita.fr>
8079 * lib/m4sugar/m4sh.m4 (AS_DIRNAME_EXPR): Use AS_REQUIRE.
8080 * tests/tools.at (AT_DATA_FORBIDDEN): Rename/move/duplicate to...
8081 * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): here.
8082 * tests/tools.at, tests/m4sh.at: Use it.
8083 * tests/m4sh.at: Don't rely on Autoconf macros.
8084 (DIRNAME_TEST): Also exercise the expr variant.
8085 * tests/m4sugar.at, tests/atspecific.m4 (AT_CHECK_M4SUGAR): The
8086 preferred M4sugar extension is now `.4s'.
8087 * tests/README: Remove.
8089 2001-10-08 Akim Demaille <akim@epita.fr>
8091 * lib/m4sugar/m4sugar.m4 (m4_provide_ifelse): Rename as...
8092 (m4_provide_if): this.
8093 * lib/m4sugar/m4sh.m4 (AS_REQUIRE): New.
8094 * lib/autoconf/general.m4 (AS_DEFUN, AC_DEFUN_ONCE, AC_BEFORE)
8095 (AC_REQUIRE, AC_PROVIDE, AC_PROVIDE_IFELSE): Be exact copy of the
8096 M4sugar peer, i.e., drop the `AC_PROVIDE_$1' broken marker.
8098 2001-10-08 Akim Demaille <akim@epita.fr>
8100 Use `add-log-current-defun-function' for ChangeLog creation.
8101 Suggested by Tom Tromey.
8103 * lib/emacs/autotest-mode.el (autotest-mode-map): New.
8104 (autotest-mode): Adjust.
8105 * lib/emacs/autoconf-mode.el (autoconf-mode-map): Modernize, map
8106 'comment-region onto `C-c ;'.
8107 Comments are `#', not `dnl'.
8108 (autoconf-current-defun): New.
8109 (autoconf-font-lock-keywords): Recognize `m4_defun'.
8111 2001-10-08 Akim Demaille <akim@epita.fr>
8113 * lib/autoconf/general.m4 (_m4_divert(BODY)): Move to...
8114 * lib/m4sugar/m4sh.m4: here.
8115 (AS_INIT): Push the BODY diversion, set the #! /bin/sh line.
8116 * lib/autoconf/general.m4 (AC_PLAIN_SCRIPT) : Remove.
8117 (AT_INIT): Replace AC_PLAIN_SCRIPT with AS_INIT invocation,
8118 include handle the m4_pattern_*, no longer push the
8119 BODY diversion nor set the /bin/sh line, AS_INIT does it.
8120 * lib/autotest/general.m4 (AT_INIT): Likewise.
8121 * tests/base.at: Adjust the tests to use AS_INIT.
8122 * tests/tools.at (AT_DATA_FORBIDDEN): New.
8123 (autoconf: forbidden tokens): Adjust to work on M4sh instead of
8126 2001-10-07 Paul Eggert <eggert@twinsun.com>
8128 * doc/autoconf.texi (config.status Invocation):
8129 CONFIG_SHELL defaults to a shell that supports LINENO if available.
8131 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): If the current
8132 shell does not support LINENO, and if CONFIG_SHELL is unset or
8133 empty, and if we can find a shell that does support LINENO,
8134 then set CONFIG_SHELL to that shell and then re-execute
8135 ourselves with CONFIG_SHELL.
8137 2001-10-05 Paul Eggert <eggert@twinsun.com>
8139 * tests/Makefile.am (clean-local): Don't invoke $(TESTSUITE) if it
8140 doesn't exist. Remove *.tmp, as a .tmp file is created during the
8141 build of $(TESTSUITE).
8143 2001-10-05 Akim Demaille <akim@epita.fr>
8145 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Look in the path
8146 iff we are a bareword.
8147 Reported by Raja R Harinath.
8149 2001-10-05 Akim Demaille <akim@epita.fr>
8151 * tests/m4sh.at (LINENO): New.
8152 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Be sure to set
8153 PATH_SEPARATOR before using it.
8154 Fix the absolute path case/esac pattern.
8155 Provide $0 as fallback for as_myself.
8156 Reported by Raja R Harinath.
8158 2001-10-05 Akim Demaille <akim@epita.fr>
8160 * Makefile.am, config/Makefile.am, lib/emacs/Makefile.am,
8161 * m4/Makefile.am, man/Makefile.am: Add/adjust MAINTAINERCLEANFILES.
8163 2001-10-05 Akim Demaille <akim@epita.fr>
8165 * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): New, extracted from...
8166 (AS_SHELL_SANITIZE): here. Use it.
8167 (_AS_LINENO_PREPARE): Preserve the exit status of $0.lineno.
8170 2001-10-04 Akim Demaille <akim@epita.fr>
8172 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use a portable
8173 combination of Awk and sed to replace $LINENO.
8175 2001-10-02 Paul Eggert <eggert@twinsun.com>
8177 * doc/autoconf.texi (Limitations of Builtins): You can't use
8178 "source"; it's not portable. Remove confusing and
8179 somewhat-incorrect example involving "." and "/".
8181 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): "source" -> ".", for
8182 compatibility with POSIX shells.
8184 2001-10-02 Akim Demaille <akim@epita.fr>
8186 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Just source 40.lineno
8187 instead of exec'ing to preserve $0 and $@.
8189 2001-10-01 Akim Demaille <akim@epita.fr>
8191 * tests/testsuite (AT_INIT) <at_pass_list>: New.
8192 Don't run twice the same test.
8194 2001-10-01 Akim Demaille <akim@epita.fr>
8196 * lib/autotest/general.m4 (AT_INIT) <--help>: Catch up with reality.
8197 No longer output the list of tests.
8198 <--list>: New option.
8199 <--full-help>: Remove.
8200 Complete the short/long options duality.
8201 Various small adjustments.
8203 2001-10-01 Akim Demaille <akim@epita.fr>
8205 * doc/autoconf.texi: Use @kbd for user input.
8206 Always use `$' as shell prompt.
8208 2001-09-30 Paul Eggert <eggert@twinsun.com>
8210 * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS):
8211 Don't use nested parenthesization. This patch was originally
8212 suggested to bug-autoconf by Philippe De Muyter on 2000-05-28,
8213 but somehow it didn't get incorporated then.
8214 * doc/autoconf.texi (Limitations of Usual Tools):
8215 Clarify remark about sed and nested parenthesization.
8217 * lib/autoconf/types.m4 (AC_CHECK_SIZEOF):
8218 Report an error if the size cannot be determined even though
8220 * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
8221 Check for `expr' arithmetic overflow, and for compilation failure,
8222 and invoke a new argument $4 if either is discovered.
8223 This makes _AC_COMPUTE_INT_COMPILE more like _AC_COMPUTE_INT_RUN.
8224 (_AC_COMPUTE_INT): Pass IF-FAILS arg to _AC_COMPUTE_INT_COMPILE.
8226 2001-09-28 Akim Demaille <akim@epita.fr>
8228 * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: New.
8229 * m4/lispdir.m4: New.
8230 * aclocal.m4, configure.ac: Adjust.
8232 2001-09-28 Akim Demaille <akim@epita.fr>
8234 * lib/autotest/general.m4 (AT_VICTIMS): Rename as...
8236 (AT_INIT): More the wrapped section to where it will be expanded.
8237 Output `AT_tested' only when existing.
8238 Catch unexpanded PACKAGE_STRING and PACKAGE_BUGREPORT.
8240 2001-09-27 Akim Demaille <akim@epita.fr>
8242 Fix the passing of $? to ACTION-IF-FAILED in AC_TRY_RUN, that
8243 generates too many bug reports.
8245 * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Pass the right exit
8246 status when executing the ACTION-IF-FALSE.
8247 * tests/base.at (AC_TRY_*): Rename as...
8248 (AC_TRY_COMMAND): this.
8249 (AC_RUN_IFELSE): New.
8250 * tests/compile.at (Extensions, C keywords)
8251 (AC_PROG_CPP requires AC_PROG_CC, GNU Fortran 77)
8252 (Broken/missing compilers, AC_PROG_CPP with warnings)
8253 (AC_PROG_CPP without warnings, AC_PROG_CPP via CC): Move to...
8254 * tests/c.at (Extensions, C keywords)
8255 (Broken/missing compilers, AC_PROG_CPP with warnings)
8256 (AC_PROG_CPP without warnings, AC_PROG_CPP via CC)
8257 (AC_PROG_CPP requires AC_PROG_CC): here and...
8258 * tests/fortran.at (GNU Fortran 77): there.
8259 * doc/autoconf.texi (autoconf Invocation): Fix the example:
8260 AC_TRY_RUN is about compilation, not shell commands.
8261 (Test Programs): AC_TRY_RUN works as used to be advertised.
8263 2001-09-27 Akim Demaille <akim@epita.fr>
8265 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix bugs spotted by
8267 Be sure to detect when $LINENO always returns the same value.
8268 Look for the original script, basename($0) is certainly not
8270 Pass the CLI arguments to `$as_me.lineno'.
8272 2001-09-25 Akim Demaille <akim@epita.fr>
8274 * lib/autotest/general.m4 (AT_INIT): Dump the whole config.log.
8275 Be sure the close and reopen the LOG fd before and after using tee
8277 <at_tests_pattern>: Adjust to the new format of at_help_all.
8279 2001-09-23 Akim Demaille <akim@epita.fr>
8281 * bin/autom4te.in (parse_args): There can be several invocations
8284 2001-09-23 Akim Demaille <akim@epita.fr>
8286 * doc/autoconf.texi (Top): Wrap in @ifnottex.
8288 2001-09-23 Akim Demaille <akim@epita.fr>
8290 * lib/autoconf/status.m4 (_AC_SRCPATHS): Compute and provide
8291 ac_buildpath, ac_top_buildpath, ac_srcpath, and ac_top_srcpath.
8292 (_AC_OUTPUT_FILES): Also substitute srcpath, top_srcpath,
8293 builddir, buildpath, top_builddir, and top_buildpath.
8294 (_AC_OUTPUT_SUBDIRS): Compute the dir variables *before* changing
8295 the current directory.
8296 * lib/autoconf/general.m4 (_AC_INIT_HELP): Compute the dir
8297 variables *before* changing the current directory.
8298 Skip nonexistent dirs.
8299 * doc/autoconf.texi (Preset Output Variables): Document these
8302 * lib/autotest/general.m4: Do not reset AT_victims.
8303 Don't compute at_srcdir nor at_top_srcdir.
8305 * tests/tools.at: Hence use top_srcdir.
8307 * tests/Makefile.am, tests/autoconf, tests/autoheader,
8308 * tests/autom4te, tests/autoreconf, tests/autoupdate, tests/ifnames:
8310 * tests/autoreconf.in, tests/wrappl.in, tests/autom4te.in,
8311 * tests/wrapsh.in, tests/autoupdate.in: New.
8312 * tests/Makefile.am (DISTCLEANFILES, EXTRA_DIST): Adjust.
8313 * configure.ac: Build the position independent wrappers.
8315 * man/Makefile.am: Now that test wrappers are position
8316 independent, use them and drop dark envvar magic.
8318 2001-09-23 Akim Demaille <akim@epita.fr>
8320 * doc/autoconf.texi (Common Shell Constructs): Rename as...
8321 (Programming in M4sh): this.
8322 Promote to @section.
8324 2001-09-23 Akim Demaille <akim@epita.fr>
8326 * lib/autotest/general.m4 (AT_INIT): Dump config.log last.
8327 Pass $at_debug_args to the rerun test suite.
8328 * lib/m4sugar/Makefile.am (DISTCLEANFILES): New.
8329 * bin/Makefile.am (ETAGS_SH): Don't use characters ranges.
8332 2001-09-23 Akim Demaille <akim@epita.fr>
8334 * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
8336 2001-09-23 Akim Demaille <akim@epita.fr>
8338 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
8341 2001-09-23 Akim Demaille <akim@epita.fr>
8343 * lib/Autom4te/General.pm (&debug): New.
8344 * bin/autom4te.in ($language): Move to...
8346 Handle --language in languages.
8347 * lib/autom4te.in (Automake-selections, Autoheader-selections)
8348 (Autoscan-selections): New.
8351 2001-09-23 Tim Van Holder <tim.van.holder@pandora.be>
8353 * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/init.m4,
8354 * m4/install-sh.m4, m4/missing.m4, m4/sanity.m4, m4/strip.m4: Updated
8355 to match current versions from CVS Automake.
8357 2001-09-23 Alexandre Duret-Lutz <duret_g@epita.fr>
8359 * doc/autoconf.texi (Special Shell Variables): Add pdksh output
8362 2001-09-22 Akim Demaille <akim@epita.fr>
8364 * lib/autoconf/autotest.m4: Create `package.m4'.
8365 * tests/Makefile.am (package.m4): Remove.
8367 2001-09-22 Akim Demaille <akim@epita.fr>
8369 Rely on `$LINENO' when possible instead of `__oline__'.
8371 * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Provide some form of
8372 `$LINENO' support replacement when not supported.
8373 (_AS_CR_PREPARE, _AS_TR_CPP_PREPARE, _AS_TR_SH_PREPARE): Invoke
8374 them explicitly to be sure they are not output before this section
8375 (via m4_require). Cosmetic only.
8376 * lib/autoconf/c.m4, lib/autoconf/general.m4,
8377 * lib/autoconf/programs.m4: Replace all the occurrences of
8378 `__oline__' with `$LINENO'.
8379 * doc/autoconf.texi (Special Shell Variables): Document LINENO.
8381 2001-09-21 Tim Van Holder <tim.van.holder@pandora.be>
8383 * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
8384 character (u: -> ue) in a code comment.
8385 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
8388 2001-09-21 Akim Demaille <akim@epita.fr>
8390 * Makefile.maint (AUTOM4TE): Neutralize autom4te.
8391 Suggested by Jim Meyering.
8393 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8395 * lib/autoconf/programs.m4: Use extensions listed in
8396 $ac_executable_extensions when looking for programs.
8398 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8400 * lib/autoconf/general.m4: Fix a small Englisho.
8401 * lib/autoconf/status.m4: Fix a small typo. Handle DOS paths when
8402 setting up ac_dir_suffix and ac_top_builddir.
8403 * lib/m4sugar/m4sh.m4: Default CDPATH to $PATH_SEPARATOR, not ':'.
8405 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8407 * doc/autoconf.texi (File System Conventions): Clarify the use of
8409 (Special Shell Variables[PATH_SEPARATOR]): Ditto.
8410 (Special Shell Variables[CDPATH]): Mention that $PATH_SEPRATOR should
8411 be used instead of ':'.
8412 * lib/autotest/general.m4: Replace occurrences of ':' in
8413 AUTOTEST_PATH with $PATH_SEPARATOR at test suite startup.
8415 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8417 * tests/atgeneral.m4: Add basic support for test ranges (e.g. 7-34) as
8418 arguments. Fixed a typo.
8420 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8422 * man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
8423 $PATH. Also set AUTOM4TE_CFG, so we can process autom4te properly.
8425 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8427 * bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
8428 * bin/autoupdate.in: Ditto.
8429 * bin/autoheader.in: Reworded a few comments.
8430 * bin/autoconf.in: Reworded help text for a few options.
8431 * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
8432 * bin/autoscan.in, bin/autoupdate.in: Ditto.
8434 2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
8436 * lib/Autom4te/XFile.pm (open): Simplified the error message (we
8437 already have $file). Set output files to binary mode (helps avoid
8438 CR issues on DOSish systems).
8440 2001-09-19 Akim Demaille <akim@epita.fr>
8442 * lib/autotest/general.m4: Englishoes.
8443 From Tim Van Holder and Alexey Mahotkin.
8445 2001-09-18 Paul Eggert <eggert@twinsun.com>
8447 * doc/autoconf.texi (Common Shell Constructs): New node,
8448 documenting AS_DIRNAME.
8449 (Limitations of Usual Tools): Refer to it when discussing dirname.
8450 Also, update discussion of POSIX standard to reflect latest draft.
8452 * lib/autoconf/c.m4:
8453 (AC_LANG_INT_SAVE(C)): Also support negative values, down to LONG_MIN.
8455 * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
8456 Do not pass a first argument with leading '-'
8457 to expr, by parenthesizing initial integers that might be negative.
8459 * doc/autoconf.texi (Particular Functions): AC_FUNC_GETPGRP
8460 now merely checks whether it is an error to pass an argument
8463 * lib/autoconf/functions.m4 (_AC_FUNC_GETPGRP_TEST): Remove.
8464 (AC_FUNC_GETPGRP): Don't bother with a runtime test. Just check
8465 whether it is a (compile-time) error to pass an argument to
8466 getpgrp. This simpler test supports the revised documentation,
8467 and is all that AC_FUNC_GETPGRP's users really need.
8469 2001-09-18 Akim Demaille <akim@epita.fr>
8471 * doc/autoconf.texi (Limitations of Make) <$<>: New.
8473 2001-09-18 Akim Demaille <akim@epita.fr>
8475 * doc/autoconf.texi (Limitations of Usual Tools) <find>: More about
8477 * lib/autotest/general.m4 (AT_INIT): Adjust.
8479 2001-09-18 Paul Wagland <paul@wagland.net>
8481 * tests/m4sh.at: Ensure that AS_DIRNAME handles '/', '//' and '///'
8483 Add test for AS_BASENAME.
8484 * lib/m4sugar/m4sh.m4: Fix AS_BASENAME so that it passes the previous
8485 added test. It now correctly handles /1/2/3/, returning '3' not ''.
8486 Added AS_BASENAME_SED to make the interface the same as AS_DIRNAME.
8487 * tests/base.at: Fixed the expected responses. The old ones were
8489 * lib/autoconf/general.m4: Fixed AC_PREFIX_PROGRAM, it now behaves as
8490 the documentation claims it should (and how it behaved in 2.13).
8492 2001-09-18 Akim Demaille <akim@epita.fr>
8494 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): No INIT-CMDS in
8495 the AC_CONFIG_COMMANDS invocation.
8496 This also solves the name clash problems.
8497 Don't set the package's ID.
8498 * lib/m4sugar/Makefile.am (version.m4): Revamp.
8499 No longer to be shipped.
8500 (version.in): Remove.
8501 * lib/m4sugar/m4sugar.m4, lib/autoconf/general.m4,
8502 * lib/autoconf/status.m4: Adjust.
8503 Use `m4_PACKAGE_STRING'.
8504 * lib/autotest/general.m4 (AT_INIT): N-th signature change: now
8505 the only optional argument is the name of the test suite.
8506 Expect `package.m4' to define the package signature.
8507 * lib/autom4te.in (Autotest): Add `package.m4?'.
8508 * tests/Makefile.am (package.m4): New.
8509 * tests/suite.at: ifnames is a victim.
8511 2001-09-18 Akim Demaille <akim@epita.fr>
8513 * lib/autom4te.in (Autoconf): Preselect AM_CONDITIONAL,
8514 AC_LIBSOURCE, AC_CONFIG_FILES.
8515 * lib/autotest/general.m4 (AT_INIT): Don't abort when a tested
8516 program version string doesn't match the package's.
8517 * lib/autoconf/general.m4 (AC_CACHE_VAL): Reestablish the space
8520 2001-09-17 Paul Eggert <eggert@twinsun.com>
8522 * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
8523 Allow expression to return any value that can fit into unsigned long
8524 (not int, as before). Check for output errors.
8526 2001-09-17 Bruno Haible <haible@ilog.fr>
8528 * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
8529 Always include <stdio.h> and <stdlib.h>. Evaluate
8530 the expression in an extra function before these includes. Call
8531 fprintf "%d" only after ensuring the argument is of type 'int'.
8532 Reported by Wayne Chapeskie <waynec@spinnaker.com>.
8534 2001-09-17 Paul Eggert <eggert@twinsun.com>
8536 Fix bug reported by Paul Townsend on AIX 4.3.3.0 with CFLAGS=-O4
8537 or CFLAGS=-O5. In that case, the linker has a relaxed view of
8538 fatal errors, and AC_CHECK_LIB causes it to include libraries even
8539 when they don't exist.
8541 * lib/autoconf/headers.m4 (AC_HEADER_DIRENT): Use AC_SEARCH_LIBS,
8542 not AC_CHECK_LIB, so that we don't use -ldir or -lx if we don't
8545 * lib/autoconf/specific.m4 (AC_ISC_POSIX): Replace the old, crufty
8546 version with the version used by fileutils 4.1, except use
8547 AC_SEARCH_LIBS, not AC_CHECK_LIB, so that we don't use -lcposix if
8550 * doc/autoconf.texi (AC_ISC_POSIX): Describe new behavior.
8552 2001-09-13 Akim Demaille <akim@epita.fr>
8554 * tests/base.at, tests/m4sh.at: Be sure to issue the bangshe line
8556 Reported by Gerrit P. Haase.
8558 2001-09-13 Akim Demaille <akim@epita.fr>
8560 * lib/autotest/general.m4 (AT_INIT): Reset `AT_victims' so that
8561 m4_defn'ing is valid.
8563 2001-09-13 Akim Demaille <akim@epita.fr>
8565 * lib/m4sugar/m4sugar.m4 (m4_append_uniq): New.
8566 * lib/autotest/general.m4 (AT_VICTIMS, AT_KEYWORDS, _AT_CLEANUP_FILE):
8569 2001-09-13 Akim Demaille <akim@epita.fr>
8571 * lib/m4sugar/m4sugar.m4 (_AS_QUOTE_IFELSE, _AS_BOX_INDIR): Use
8573 (m4_re_escape): New.
8574 * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER): Use it.
8575 * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use m4_match.
8576 * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER, AC_CONFIG_LINKS):
8578 * lib/autoconf/types.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P)
8579 (_AC_CHECK_TYPE_MAYBE_TYPE_P, AC_CHECK_MEMBER): Likewise.
8580 * lib/autotest/general.m4 (AT_INIT): Rename AT_TESTS_ALL as
8581 AT_tests_all for consistency.
8583 (AT_VICTIMS): Similar to AT_KEYWORDS.
8584 (_AT_CLEANUP_FILE_IF): Use m4_match and m4_re_escape.
8586 2001-09-13 Akim Demaille <akim@epita.fr>
8588 * lib/autotest/general.m4 (AT_INIT): Fix stupid bugs.
8590 2001-09-13 Akim Demaille <akim@epita.fr>
8592 * lib/autotest/general.m4 (AT_INIT): Create and remove
8593 `$as_me.[0-9]+' instead of `debug-[0-9]+.sh', so that multiple
8594 test suites can cohabit.
8596 2001-09-13 Akim Demaille <akim@epita.fr>
8598 * tests/mktests.sh: Don't output banners for empty test files.
8600 2001-09-13 Akim Demaille <akim@epita.fr>
8602 Test suites can be run independently of configure.
8604 * lib/m4sugar/m4sh.m4 (_AS_ECHO, _AS_ECHO_N_PREPARE): New.
8605 * lib/autoconf/programs.m4 (_AC_PROG_ECHO): Remove.
8606 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust: AC_SUBST
8608 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't ask for at_n
8610 * lib/autotest/general.m4: Use ECHO_*.
8612 2001-09-13 Akim Demaille <akim@epita.fr>
8614 * bin/ifnames.in: Rewrite in Perl.
8615 * configure.ac: Don't look for AWK.
8616 * tests/tools.at (AWK portability): Remove.
8617 (Syntax of the shell scripts): Don't check ifnames.
8618 (AT_CHECK_PERL_SYNTAX): New.
8619 (Syntax of the Perl scripts): Check ifnames.
8620 * tests/ifnames: New.
8622 2001-09-13 Akim Demaille <akim@epita.fr>
8624 * lib/autotest/general.m4 (AT_INIT): Let --keywords also match
8626 * tests/atspecific.m4 (AT_CHECK_AU_MACRO): AT_KEYWORDS(autoupdate).
8627 Remove all the other keywords.
8629 2001-09-10 Akim Demaille <akim@epita.fr>
8631 * lib/autotest/general.m4 (AT_INIT): Remove the diversion HELP and
8632 SETUP: no longer used.
8633 Support -k, --keywords.
8634 <at_help>: Be `no', `short', or `long'.
8635 <at_help_all>: New variable.
8637 (AT_CLEANUP_FILE_IFELSE, AT_CLEANUP_FILE): Rename as...
8638 (_AT_CLEANUP_FILE_IF, _AT_CLEANUP_FILE): these.
8639 (_AT_CLEANUP_FILE_IF): Simplify the regexp.
8640 (AT_SETUP): Reset AT_line, AT_keywords, AT_description.
8641 No longer fill the HELP diversion.
8642 (AT_CLEANUP): Use them.
8643 * lib/m4sugar/m4sugar.m4 (m4_append): Support a separator.
8644 (m4_list_append): Remove.
8646 Spread a few keywords in the Autoconf test suite.
8648 2001-09-10 Akim Demaille <akim@epita.fr>
8650 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't pass
8651 PATH_SEPARATOR, let M4sh compute it.
8652 * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): New.
8653 * lib/autoconf/programs.m4 (AC_SHELL_PATH_WALK): Use PATH_SEPARATOR.
8655 * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Here.
8656 Simplify when the path is not a literal.
8657 (AS_UNAME): Use it to report PATH.
8658 * lib/autoconf/general.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Remove.
8659 (_AC_INIT_DEFAULTS): AC_SUBST PATH_SEPARATOR.
8660 * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Use _AS_PATH_WALK.
8661 * lib/autotest/general.m4 (AT_INIT): Use _AS_PATH_WALK to
8662 normalize the path, and to look for victims.
8663 * tests/semantics.at (AC_PATH_PROG & AC_PATH_PROGS)
8664 (AC_CHECK_PROG & AC_CHECK_PROGS): Use PATH_SEPARATOR.
8666 2001-09-07 Akim Demaille <akim@epita.fr>
8668 * bin/autom4te.in (&handle_m4): `< /dev/null' so that GNU M4 1.5
8669 doesn't neutralize SIGINT, making autoconf etc. non interruptible.
8670 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Move the package
8671 related variables into `at_package_*'.
8672 * lib/autotest/general.m4 (AT_VICTIMS): New.
8673 (AT_INIT): Adjust for stand-alone/embedded test suites.
8674 (AS_MESSAGE_LOG_FD): Define and use it.
8675 * tests/suite.at (AT_VICTIMS): Use it.
8676 * tests/tools.at (autoupdating AC_PREREQ): Don't depend upon
8679 2001-09-07 Akim Demaille <akim@epita.fr>
8681 Move toward possibly stand-alone test suites.
8683 * lib/autotest/general.m4: Stop displaying srcdir everywhere as,
8684 in addition, it introduces useless differences in logs.
8685 (AT_INIT): Let atconfig and atlocal be both optional.
8686 Adjust PATH computation.
8687 * lib/m4sugar/m4sh.m4 (AS_UNAME): More readable display of PATH.
8689 2001-09-07 Akim Demaille <akim@epita.fr>
8691 * lib/autoconf/Makefile.am (autoconf.m4f): Depends upon
8694 2001-09-05 Akim Demaille <akim@epita.fr>
8696 * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Use `_array_'
8697 to avoid GCC warnings.
8700 2001-09-05 Akim Demaille <akim@epita.fr>
8702 * bin/autom4te.in: --language is -l, not -s.
8704 2001-09-05 Akim Demaille <akim@epita.fr>
8706 Be ready to handle filenames as stupid as `dnl.at', for if even
8707 the maintainer is dumb enough to do that...
8709 * lib/autotest/general.m4 (AT_SETUP, AT_LINE): Demonstrates your
8710 excellence in M4 quotation: consider `__file__' is active.
8712 And BTW, when invoking m4, pass the --include in the right order:
8715 * bin/autom4te.in, bin/autoupdate.in: Use reverse when kingtal to
8718 2001-09-05 Akim Demaille <akim@epita.fr>
8720 * lib/Autom4te/XFile.pm: New lib file.
8721 * bin/autoupdate.in, bin/autoscan.pl, bin/autom4te.in,
8722 * bin/autoheader.in: Use it.
8724 2001-09-05 Akim Demaille <akim@epita.fr>
8726 * bin/autoupdate.in (&handle_m4_macros) <unm4.m4>: Undefine iff
8729 2001-09-05 Akim Demaille <akim@epita.fr>
8731 * lib/Autom4te/General.pm (&getopt): Work around the `-' Getopt bug.
8732 * bin/autoheader.in, bin/autoupdate.in (&parse_args): Adjust.
8734 * bin/autoscan.in: Use `getopt' and `find_files' etc.
8735 Add -I, --include support.
8736 * doc/autoconf.texi (autoscan Invocation): Adjust.
8738 2001-09-05 Akim Demaille <akim@epita.fr>
8740 CVS GNU M4 doesn't like `undefine(undefined)'.
8742 * bin/autoupdate.in (&handle_m4_macros, &handle_autoconf_macros):
8743 New, extracted from main.
8744 Use IO::File wherever possible.
8745 (input.m4): Be constant, use -I instead of hard coding $tmp.
8746 Therefore be a quoted heredoc.
8747 Don't invoke `_au_disable', since ac was not loaded, but just
8750 2001-08-31 Akim Demaille <akim@epita.fr>
8754 2001-08-31 Akim Demaille <akim@epita.fr>
8756 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix the
8758 * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Can create `config.hin~'.
8760 2001-08-31 Akim Demaille <akim@epita.fr>
8762 * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): DU 5.0 has
8763 serious problems handling heredocs in heredocs.
8764 Reported by Nicolas Joly.
8766 2001-08-31 Akim Demaille <akim@epita.fr>
8768 * doc/autoconf.texi: Don't promote non `m4_*' M4 macros.
8769 (Making testsuite Scripts): Update.
8771 2001-08-31 Akim Demaille <akim@epita.fr>
8773 * lib/Makefile.am (CLEANFILES): Add autom4te.cfg.
8775 2001-08-31 Akim Demaille <akim@epita.fr>
8777 * doc/autoconf.texi (Quadrigraphs): Document `@&t@'.
8778 (testsuite Scripts): There is no such thing as `atconfig.in'.
8779 And actually one diagram is missing: test suite runtime.
8781 2001-08-31 Akim Demaille <akim@epita.fr>
8783 * lib/Autom4te/General.pm (&find_file): Browse the includes in the
8786 2001-08-31 Akim Demaille <akim@epita.fr>
8788 * bin/autoupdate.in (@include): `installcheck' revealed the path
8789 to m4sugar was lacking!
8791 2001-08-31 Akim Demaille <akim@epita.fr>
8793 * man/Makefile.am (.x.1): We really have to pass
8794 autom4te_perllibdir.
8796 2001-08-31 Akim Demaille <akim@epita.fr>
8798 * lib/autotest/general.m4 (AT_INIT): Don't pass all the args to
8799 debug scripts, in particular passing explicitly listed tests to
8802 2001-08-31 Akim Demaille <akim@epita.fr>
8804 * bin/autom4te.in (&parse_args): Strip `.' from `@include'.
8805 * bin/autoupdate.in: Use --include, -I, and --force, -f, too.
8806 Use directly autom4te, not autoconf.
8807 * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
8809 2001-08-31 Akim Demaille <akim@epita.fr>
8811 * tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
8812 * bin/autoheader.in (%symbol): Strip arguments of macros.
8814 2001-08-31 Akim Demaille <akim@epita.fr>
8816 * doc/autoconf.texi: Catch up -I, --include changes.
8818 2001-08-31 Akim Demaille <akim@epita.fr>
8820 * bin/autom4te.in (&parse_args): Die on unknown languages.
8821 * bin/autoheader.in: Run directly autom4te --mode=autoconf, no
8823 Promote --include over --macrodir and other obsolete options.
8825 2001-08-31 Akim Demaille <akim@epita.fr>
8827 * lib/Autom4te/General.pm ($version, $help, &getopt): New.
8828 * bin/autoupdate.in, bin/autoheader.in, bin/autom4te.in: Use them.
8829 * bin/autom4te.in ($autoconf): Pass --force.
8830 `print $out' doesn't print `$_' but `$out'.
8831 * tests/tools.at (Syntax of the Perl scripts): Pass the lib dir.
8832 (autoheader): Pass --force since the test suite goes too fast for
8834 Adjust to the new autoheader messages.
8836 2001-08-31 Akim Demaille <akim@epita.fr>
8838 * bin/autoheader.in: Handle the acconfig.h etc. junk files.
8839 Check the completeness of the #template.
8840 * lib/Autom4te/General.pm (&update_file): s/remove/unlink/.
8841 * tests/semantics.at (AC_C_BIGENDIAN): Adjust AT_CHECK_AUTOHEADER
8844 2001-08-31 Akim Demaille <akim@epita.fr>
8846 * lib/Autom4te/General.pm (&find_file, &update_file): New.
8847 * bin/autoupdate.in, bin/autoheader.in: Adjust.
8848 Drop AC_MACRODIR dead for real.
8849 * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Now autoheader says
8850 `autoheader: `config.hin' is created'.
8851 * tests/tools.at (Syntax of the Perl scripts): Check autoheader.
8853 2001-08-31 Akim Demaille <akim@epita.fr>
8855 * bin/autoheader.in: Rewrite in Perl.
8856 * tests/autoheader: Adjust.
8858 2001-08-31 Akim Demaille <akim@epita.fr>
8860 * bin/autoconf.in (--include, -I): New option.
8861 Map --localdir, --autoconf-dir onto it.
8862 Forward autom4te's options instead of interpreting them.
8863 * bin/autoconf.in, bin/autoheader.in (AC_MACRODIR, autoconf_dir):
8864 There is no such envvar since the inception of autom4te.cfg.
8865 * bin/autom4te.in (&parse_args): Uniquify `@include'.
8866 * bin/autoupdate.in: Adjust, and perform more control.
8867 * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Adjust.
8868 * tests/autoconf: Dittowise.
8870 2001-08-31 Akim Demaille <akim@epita.fr>
8872 * bin/autoconf.in: Don't bother with `acsite.m4' and `aclocal.m4'.
8873 * bin/autom4te.in (&find_file): Support `FILE?' standing for
8875 Use -e, not -f, since /dev/null for instance is OK.
8876 (&parse_args): Adjust.
8877 * lib/autom4te.in (Autoconf): Add `acsite.m4?' and `aclocal.m4?'.
8879 2001-08-31 Akim Demaille <akim@epita.fr>
8881 * configure.ac: Also find tested executables in bin.
8882 * bin/autoconf.in, bin/autoheader.in, bin/autoreconf.in,
8883 * bin/autoscan.in, autoupdate.in: Use exclusively the name of the
8884 installed peer executables, only PATH is allowed to resolve it.
8885 Pass `autoconf_dir' via options, not via invisible envvars.
8886 * lib/Autom4te/General.pm (&find_peer): Remove.
8887 * lib/autotest/general.m4 (AT_INIT): `AUTOTEST_PATH=a:b' gives
8888 `abuild:asrc:bbuild:bsrc', not `abuild:bbuild:asrc:bsrc'.
8889 * man/Makefile.am: Let help2man rely on PATH instead of trying to
8890 find the executables for it.
8891 * tests/Makefile.am: Major cleanup. Too lazy to document...
8892 * tests/atlocal.in: Remove all the obscure envvar manipulations.
8894 * tests/atspecific.m4, tests/tools.at: Passing --localdir is
8895 indeed related to running the test suite, while passing
8896 --autoconf-dir and others is related to running non installed
8897 Autoconf executables. So don't do that, leave it to...
8898 * tests/autoconf, tests/autoheader, tests/autom4te, tests/autoupdate,
8899 * tests/autoscan: New.
8900 * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't
8901 refer to library files: rely on --language.
8903 2001-08-29 Akim Demaille <akim@epita.fr>
8905 * bin/autom4te.in, lib/autom4te.in, bin/autoconf.in:
8906 s/--set/--language/.
8908 2001-08-29 Akim Demaille <akim@epita.fr>
8910 * doc/autoconf.texi: Strip the @nodes.
8911 Suggested by Paul Eggert.
8912 (Initializing configure): Typo.
8914 2001-08-29 Akim Demaille <akim@epita.fr>
8916 * bin/autom4te.in (&handle_output): s/@__@/@&t@/.
8917 Suggested by Paul Eggert.
8919 2001-08-29 Akim Demaille <akim@epita.fr>
8921 * Makefile.maint (do-po-update): Wget refuses to overwrite files:
8922 download in a tmp dir.
8924 2001-08-29 Akim Demaille <akim@epita.fr>
8926 * lib/autotest/general.m4: s/AT-devnull/devnull/ since there are
8927 case insensitive OSes out there :(
8928 From Tim Van Holder.
8930 2001-08-29 Akim Demaille <akim@epita.fr>
8932 * lib/autom4te.in: New.
8933 * lib/Makefile.am (edit, autom4te.cfg): New.
8934 * bin/autom4te.in (BEGIN): Simplify.
8935 Rely on `AC_MACRODIR' in addition of `autom4te_perllibdir'.
8936 (&load_configuration): New. Use it.
8937 (&parse_args): Support --mode, --set, and --melt.
8938 * bin/autoconf.in: Simplify and adjust.
8939 * tests/Makefile.am (AUTOMAKE): Use --set.
8940 * tests/atlocal.in: Adjust.
8941 * BUGS: distcheck and check are weak.
8943 2001-08-29 Akim Demaille <akim@epita.fr>
8945 * lib/autotest/general.m4: Use
8946 foo=`(command) 2>/dev/null`
8948 foo=`command` 2>/dev/null
8949 (at-devnull): Rename as...
8951 (--clean): Remove AT-* files too.
8952 * doc/autoconf.texi (Limitations of Usual Tools): Document `date'.
8953 Reported by Nicolas Joly.
8955 2001-08-28 Akim Demaille <akim@epita.fr>
8957 * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't use single
8958 quotes inside single quotes.
8959 Reported by Nicolas Joly.
8961 2001-08-28 Kevin Ryde <user42@zip.com.au>
8963 * doc/autoconf.texi (Function Portability): Mention C right shifts.
8965 2001-08-27 Tim Van Holder <tim.van.holder@pandora.be>
8967 * lib/autotest/general.m4: Reword some messages.
8968 (AT_INIT): Check for the `times' builtin before using it.
8969 Support test ranges as arguments to the testsuite.
8970 Have -e imply -d as the help text suggested.
8972 2001-08-27 Akim Demaille <akim@epita.fr>
8974 * Makefile.maint: Formatting changes.
8975 (do-po-update, po-update, cvs-update, update): New targets.
8978 2001-08-27 Akim Demaille <akim@epita.fr>
8980 * lib/autotest/general.m4 (AT_INIT) <at_cmd_line>: Remove.
8982 Pass it to debug-*.sh scripts.
8983 <AUTOTEST_PATH>: May contain absolute dir names.
8985 2001-08-27 Akim Demaille <akim@epita.fr>
8987 * lib/autotest/general.m4 (AT_INIT): Log the command line.
8988 Support `VAR=VAL' as arguments.
8989 Compute PATH _after_ the options processing, so that AUTOTEST_PATH
8990 may be set via the command line.
8992 2001-08-27 Akim Demaille <akim@epita.fr>
8994 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): $2 defaults to $1.
8995 * lib/autotest/autotest.m4 (AT_INIT): Expand AUTOTEST_PATH into
8996 first the build dirs, then the src dirs.
8997 * configure.ac (AC_CONFIG_TESTDIR): Adjust.
8999 2001-08-27 Akim Demaille <akim@epita.fr>
9001 * lib/autotest/general.m4 (AT_INIT): Output the definition of
9002 at_data_files earlier.
9003 (--clean, -c): New option.
9004 * tests/Makefile.am: Use this option.
9006 2001-08-27 Akim Demaille <akim@epita.fr>
9008 * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename `ac_dots' as
9009 `ac_top_builddir' to mimic Automake's vocabulary, which much more
9012 * doc/autoconf.texi (Configuration Actions): Document the vars
9013 available in commands.
9014 Emphasize the risks of collisions in init-cmds.
9016 2001-08-27 Akim Demaille <akim@epita.fr>
9018 * doc/autoconf.texi (Input) <AC_INIT>: Move to..
9019 (Initializing configure): this new node.
9021 2001-08-27 Akim Demaille <akim@epita.fr>
9023 * Makefile.am (EXTRA_DIST): INSTALL.txt is a dead hack.
9025 2001-08-27 Akim Demaille <akim@epita.fr>
9027 * m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
9028 * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this.
9030 * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
9032 2001-08-27 Akim Demaille <akim@epita.fr>
9034 * lib/autoconf/general.m4 (AU_DEFINE, AU_DEFUN, AU_ALIAS): Move
9036 * lib/autoconf/autoheader.m4: this new file.
9037 * lib/autoconf/general.m4 (AH_OUTPUT, AH_VERBATIM)
9038 (_AH_VERBATIM_OLD, AH_TEMPLATE, _AH_TEMPLATE_OLD, AH_TOP, AH_BOTTOM):
9040 * lib/autoconf/autoupdate.m4: this new file.
9042 2001-08-27 Akim Demaille <akim@epita.fr>
9044 * lib/autoconf/status.m4 (_AC_SRCPATHS): New.
9045 (_AC_OUTPUT_LINKS, _AC_OUTPUT_FILES, _AC_OUTPUT_SUBDIRS): Use it.
9046 Standardize the var names (ac_sub_srcdir -> ac_srcdir, ac_subdir
9048 (_AC_OUTPUT_HEADERS): AS_DIRNAME always return a dir name.
9049 * lib/autoconf/general.m4 (_AC_INIT_HELP): Ditto.
9051 2001-08-27 Akim Demaille <akim@epita.fr>
9053 * lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
9054 (AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
9055 (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
9056 (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
9057 (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
9058 (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
9059 (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
9060 (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
9061 (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
9062 (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
9063 (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
9064 (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
9065 (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
9066 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
9067 (_AC_OUTPUT_SUBDIRS): Move to...
9068 * lib/autoconf/status.m4: this new file.
9069 * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
9070 * tests/Makefile.am, tests/suite.at: Adjust.
9072 2001-08-27 Akim Demaille <akim@epita.fr>
9076 * Makefile.am (AUTOMAKE_OPTIONS): Add 1.5 and dist-bzip2.
9077 (AMTAR): Help automake define it.
9078 (INSTALL, install-data-hook): The INSTALL.txt trick is no longer
9079 needed, 1.5 can have a macro and a target with the same name.
9080 * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/install-sh.m4,
9082 * m4/init.m4, m4/sanity.m4: Update.
9083 * doc/Makefile.am (CLEANFILES): 1.5 knows the texi2dvi files.
9084 * lib/autoconf/Makefile.am, lib/autotest/Makefile.am,
9085 * lib/m4sugar/Makefile.am, lib/autoscan/Makefile.am,
9086 * lib/Autom4te/Makefile.am, man/Makefile.am: Use dist/nodist.
9088 2001-08-27 Akim Demaille <akim@epita.fr>
9090 Provide a mean to ``AC_PREREQ'' for M4sugar, M4sh and Autotest.
9092 * lib/autoconf/version.in: Remove.
9093 * lib/m4sugar/version.in: New.
9094 * lib/m4sugar/m4sugar.m4 (m4_acversion, m4_version_prereq): New.
9096 * bin/autoupdate.in: Distinguish M4sugar vs. Autoconf macros by
9097 the name of the directory they're in, instead of the filename,
9098 since version.m4 is now in m4sugar, but m4_acversion must not be
9099 classified as an Autoconf macro.
9100 ($input_m4): Don't qualify the path to m4sugar.
9101 Rather, pass autoconf_dir to m4.
9102 * tests/Makefile.am (testsuite): Remove -I top_srcdir, unneeded.
9103 * tests/suite.at: Require 2.52c.
9105 2001-08-27 Akim Demaille <akim@epita.fr>
9107 testsuite.log should include config.log.
9109 * lib/autotest/autotest.m4: New.
9110 * lib/autotest/general.m4, tests/atspecific.m4: Adjust.
9111 * tests/suite.at : Adjust.
9112 (AT_INIT): Log config.log.
9113 * lib/m4sugar/m4sugar.m4 (m4_text_box): New.
9114 * lib/m4sugar/m4sh.m4 (_AS_BOX_LITERAL): Adjust.
9115 * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Use them.
9116 (_AC_INIT_PREPARE): Fix the incredibly messy and buggy completion
9117 of config.log on traps.
9118 (_AC_OUTPUT_CONFIG_STATUS): Use AS_BOX.
9119 Use consistently `_ACEOF' for configure's here docs, and `_CSEOF'
9121 Open the log as soon as possible.
9122 Use the same log introduction as configure's.
9124 2001-08-22 Paul Eggert <eggert@twinsun.com>
9126 * doc/autoconf.texi (Indices): New node.
9127 Move indices out of the top level menu and into this submenu.
9129 2001-08-22 Akim Demaille <akim@epita.fr>
9131 * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
9133 (AC_DECL_YYTEXT): Fix the previous patch: it points to AC_PROG_LEX.
9135 2001-08-22 Akim Demaille <akim@epita.fr>
9137 * lib/autoconf/general.m4 (AC_SHELL_PATH_WALK, AC_CHECK_PROG)
9138 (AC_CHECK_PROGS, AC_PATH_PROG, AC_PATH_PROGS, AC_CHECK_TOOL_PREFIX)
9139 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS): Move to...
9140 * lib/autoconf/programs.m4: here.
9141 * lib/autoconf/specific.m4 (_AC_PROG_ECHO, AC_PROG_MAKE_SET)
9142 (AC_PROG_RANLIB, AC_PROG_YACC, AC_PROG_LEX, _AC_DECL_YYTEXT)
9143 (AC_PROG_INSTALL, AC_PROG_LN_S, AC_RSH): Move to...
9144 * lib/autoconf/programs.m4: here.
9145 (_AC_DECL_YYTEXT): Rename as...
9146 (_AC_PROG_LEX_YYTEXT_DECL): this.
9147 * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am
9148 * tests/Makefile.am, tests/suite.am: Adjust.
9150 2001-08-22 Akim Demaille <akim@epita.fr>
9152 * lib/autoconf/general.m4 (AC_LIST_MEMBER_OF, AC_LINKER_OPTION):
9154 * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF, _AC_LINKER_OPTION):
9156 * lib/autoconf/general.m4 (AC_TRY_LINK_FUNC): Move to...
9157 * lib/autoconf/functions.m4: here.
9158 * lib/autoconf/general.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB)
9159 (AH_CHECK_LIB): Move to...
9160 * lib/autoconf/libs: this new file.
9161 * lib/autoconf/specific.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT)
9162 (_AC_PATH_X, AC_PATH_X, AC_PATH_XTRA): Move to...
9163 * lib/autoconf/libs.m4: here.
9164 * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am: Adjust.
9166 2001-08-22 Akim Demaille <akim@epita.fr>
9168 * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Fail if fails.
9169 * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Adjust.
9170 (AC_SITE_LOAD): Better logging of config.site.
9172 2001-08-20 Akim Demaille <akim@epita.fr>
9174 * configure.ac (AT_CONFIG): Fix the path.
9175 * m4/atconfig.m4 (AT_CONFIG): Don't use EOF but ATEOF so that 2.52
9178 2001-08-20 Alexandre Duret-Lutz <duret_g@epita.fr>
9180 * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prepare the cross-compile
9181 program with AC_LANG_PROGRAM before feeding it to
9182 AC_COMPILE_IFELSE. Cleanup grep usage.
9184 2001-08-20 Akim Demaille <akim@epita.fr>
9186 * ChangeLog, ChangeLog.0, ChangeLog.1, ChangeLog.2, AUTHORS, BUGS,
9187 * NEWS, README, README-alpha, TODO, tests/README: This package is
9188 `Autoconf', not `autoconf' (the executable).
9190 2001-08-20 Akim Demaille <akim@epita.fr>
9192 Info readers seem to need `Index' in the index node title :(
9194 * doc/autoconf.texi: Reverse the 2001-08-15 change which
9195 simplified index node names.
9197 2001-08-20 Akim Demaille <akim@epita.fr>
9199 * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Warn if the
9200 arguments are not literals.
9201 * doc/autoconf.texi (Input) <AC_INIT>: Arguments must be literals.
9202 Specify the output variables, and macros defined.
9204 2001-08-20 Akim Demaille <akim@epita.fr>
9206 * doc/autoconf.texi (Examining Declarations) <AC_TRY_CPP>:
9207 (Examining Syntax) <AC_TRY_COMPILE>
9208 (Examining Libraries) <AC_TRY_LINK>
9209 (Test Programs) <AC_TRY_RUN>: These macros double quote some of
9211 Reported by Werner Lemberg.
9213 2001-08-20 Akim Demaille <akim@epita.fr>
9215 * lib/autotest/general.m4 (AT_INIT): Compute top_builddir,
9216 top_srcdir and srcdir from at_topbuild_2_topsrc and at_testdir.
9217 Load atlocal late enough to dump it in the log.
9218 * m4/atconfig.m4 (AT_CONFIG): Pass them to atconfig.
9220 2001-08-20 Akim Demaille <akim@epita.fr>
9222 * tests/torture.at (Configuring subdirectories): New test.
9223 * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Say what you are
9225 * m4/atconfig.m4: Be sure the let $[0] be expandable.
9226 (top_srcdir): Fix its computation.
9228 2001-08-20 Akim Demaille <akim@epita.fr>
9230 * lib/autoconf/general.m4 (_AC_OUTPUT_COMMANDS): Say what you do.
9231 * m4/atconfig.m4 (AT_CONFIG): $1 is now the directory where the
9233 Create `atconfig' automagically.
9234 Configure atlocal.in if present.
9235 * tests/atconfig.in: Remove.
9236 * tests/atlocal.in: New.
9237 * tests/Makefile.am: Adjust.
9239 2001-08-20 Akim Demaille <akim@epita.fr>
9241 Huh!?!?! There are still some user EOF tags used, which prevents
9242 their use in AC_CONFIG_COMMANDS for instance...
9244 * lib/autoconf/general.m4, lib/autoconf/specific.m4,
9245 * lib/autotest/general.m4: Rename the EOF tags as `_ACEOF',
9246 `_CSEOF', or `_ATEOF', as appropriate.
9247 * lib/m4sugar/Makefile.am, lib/autoconf/Makefile.am,
9248 * lib/autotest/Makefile.am (check-local): Enforce this constraint.
9250 2001-08-20 Akim Demaille <akim@epita.fr>
9252 * tests/base.at, tests/m4sh.at, tests/m4sugar.at,
9253 * tests/semantics.at, tests/tools.at, tests/torture.at:
9254 s/^AT_DATA\(([^][]+),/AT_DATA([$1],/.
9256 2001-08-20 Akim Demaille <akim@epita.fr>
9258 Autotest invokes M4sh's initialization.
9260 * lib/autotest/general.m4: Adjust the diversion names.
9261 (AT_INIT): Run AS_INIT.
9262 Use the BINSH diversion to invoke /bin/sh.
9263 * tests/base.at, tests/m4sh.at, tests/m4sugar.at, tests/tools.at:
9264 * tests/torture.at: Respect M4sugar and M4sh macro name spaces.
9266 2001-08-20 Akim Demaille <akim@epita.fr>
9268 Let M4sh have its own diversions.
9270 * lib/autoconf/general.m4 (_m4_divert(BINSH), _m4_divert(REVISION))
9271 (_m4_divert(NOTICE)): Rename as...
9272 * lib/m4sugar/m4msh.m4 (_m4_divert(BINSH), _m4_divert(HEADER-REVISION))
9273 (_m4_divert(HEADER-COMMENT)): these.
9274 (_m4_divert(HEADER-COPYRIGHT), _m4_divert(HEADER-COPYRIGHT)): New.
9275 (_m4_divert(NOTICE)): New, for Libtool.
9276 * lib/autoconf/general.m4 (_m4_divert(PREPARE)): Remove, replaced
9277 long ago with `_m4_divert(GROW)'.
9278 (AC_COPYRIGHT, AC_REVISION, _AC_INIT_NOTICE): Adjust.
9280 2001-08-20 Akim Demaille <akim@epita.fr>
9282 * tests/base.at, tests/compile.at, tests/foreign.at,
9283 * tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
9284 * tests/semantics.at, tests/suite.at, tests/tools.at,
9285 * tests/torture.at: Ask Autotest mode, not Autoconf mode.
9287 2001-08-20 Akim Demaille <akim@epita.fr>
9289 * bin/autom4te.in (handle_output): Handle @__@.
9291 2001-08-20 Akim Demaille <akim@epita.fr>
9293 * lib/autoconf/autoconf.m4, lib/autoconf/oldnames.m4,
9294 * lib/autotest/general.m4: Adjust the license.
9296 2001-08-17 Paul Eggert <eggert@twinsun.com>
9298 * doc/autoconf.texi (Function Portability): Mention snprintf,
9299 following up on a suggestion by Kevin Ryde.
9301 2001-08-17 Akim Demaille <akim@epita.fr>
9303 * doc/install.texi, doc/autoconf.texi: Use `autoconf', not
9304 `autoconf_manual', as texinfo.tex 2001-06-21.10 chokes on it.
9306 2001-08-17 Akim Demaille <akim@epita.fr>
9308 * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
9309 `$0.log' as for projects where testsuite is in src, we'd have
9310 testsuite.log created in src.
9312 2001-08-17 Akim Demaille <akim@epita.fr>
9314 * bin/autom4te.in (&parse_args): Recognize --normalize.
9316 2001-08-17 Akim Demaille <akim@epita.fr>
9318 Start implementing the AC_CHECK_HEADER transition scheme.
9320 * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
9321 (_AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_MONGREL): New.
9322 (AC_CHECK_HEADER): Use them.
9324 2001-08-17 Akim Demaille <akim@epita.fr>
9326 * doc/autoconf.texi: Work around Texinfo buglets.
9327 (Transformation Rules): One example is enough, users are expected
9328 to have their brains on. And BTW, use DESTDIR.
9329 (dvar): New macro. Use it.
9331 2001-08-17 Akim Demaille <akim@epita.fr>
9333 * doc/autoconf.texi (Writing testsuite.at) <AT_CHECK>: Complete.
9334 * lib/autotest/general.m4 (AT_INIT): Use the relative dir when
9335 looking for ChangeLogs.
9337 2001-08-17 Akim Demaille <akim@epita.fr>
9339 * bin/autom4te.in: --normalize is a new option.
9340 * bin/autoconf.in: Use it.
9342 2001-08-17 Akim Demaille <akim@epita.fr>
9344 * bin/Makefile.am, lib/Autom4te/Makefile.am, lib/autoconf/Makefile.am
9345 * lib/autotest/Makefile.am, lib/m4sugar/Makefile.am: Add TAGS support.
9347 2001-08-16 Paul Eggert <eggert@twinsun.com>
9349 * doc/autoconf.texi, doc/install.texi: Put copyright notice at
9352 2001-08-15 Akim Demaille <akim@epita.fr>
9354 * doc/Makefile.am (fu): New index, can't use fn because of defmac.
9357 2001-08-15 Akim Demaille <akim@epita.fr>
9359 * doc/autoconf.texi (pr): New index.
9360 (prindex, findex): Use, merge, and output them.
9361 (Environment Variable Index, Output Variable Index)
9362 (Preprocessor Symbol Index, Autoconf Macro Index, M4 Macro Index)
9363 (Autotest Macro Index): Rename as...
9364 (Environment Variables, Output Variables,Preprocessor Symbols)
9365 (Autoconf Macros, M4 Macros, Autotest Macros): these.
9366 * doc/install.texi: Use @command.
9367 (Environment Variables): Rename as...
9368 (Defining Variables): this.
9370 2001-08-15 Akim Demaille <akim@epita.fr>
9372 * doc/autoconf.texi (Function Portability): sprintf's return
9376 2001-08-15 Akim Demaille <akim@epita.fr>
9378 * Makefile.maint (CVS): New.
9379 (local-check): Run changelog-check. last.
9380 (alpha): Don't depend upon local-check, since...
9381 (cvs-dist): depends upon it.
9383 2001-08-15 Tim Van Holder <tim.van.holder@pandora.be>
9385 * tests/Makefile.am: Use a clean-local rule to remove
9386 autom4te.cache (it's a directory, not a file.
9387 * Makefile.am: Ditto (but maintainer-clean-local).
9389 2001-08-15 Akim Demaille <akim@epita.fr>
9391 * bin/autom4te.in (@m4_warning): New.
9392 (&handle_m4): Use it.
9393 * tests/m4sugar.at (m4_warn): Pass `-f' to autom4te to ensure the
9394 warnings are issued at each run.
9395 * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): M4sugar
9398 2001-08-15 Akim Demaille <akim@epita.fr>
9400 * tests/atspecific.m4 (AT_CHECK_AUTOUPDATE): Perl is now required:
9401 don't waste time running `autoupdate --version' works.
9402 * tests/tools.at (autoupdating AC_PREREQ): Likewise.
9404 2001-08-13 Akim Demaille <akim@epita.fr>
9406 * doc/autoconf.texi (ma): Rename this index as...
9409 2001-08-13 Akim Demaille <akim@epita.fr>
9411 * Makefile.am: Remove dead code and dead comments.
9412 (pdf, html): New targets.
9413 * doc/autoconf.texi (Using Autotest): New chapter.
9414 * doc/Makefile.am (pdf): New targets.
9415 (CLEANFILES): Adjust.
9417 2001-08-13 Akim Demaille <akim@epita.fr>
9419 * lib/autotest/general.m4 (AT_INIT): Log the start/stop dates and
9420 duration of the test suite.
9422 2001-08-12 Alexandre Duret-Lutz <duret_g@epita.fr>
9424 * tests/semantics.at (AC_C_BIGENDIAN): Explicitelly save and load
9425 endianness for comparison instead of relying on AT_CHECK_ENV.
9427 2001-08-11 Paul Eggert <eggert@twinsun.com>
9429 * doc/autoconf.texi, doc/install.texi: Add a copyright notice
9430 to the INSTALL file.
9432 2001-08-11 Paul Eggert <eggert@twinsun.com>
9434 * NEWS: The autoconf manual now is distributed under the terms
9435 of the GNU Free Documentation License.
9437 * doc/autoconf.texi: Switch from old style copyright notice to FDL.
9438 Add an appendix "Copying This Manual" for the FDL.
9440 * doc/fdl.texi: New file, from
9441 <http://www.gnu.org/licenses/fdl.texi>.
9443 * doc/Makefile.am (autoconf_TEXINFOS): Add fdl.texi.
9445 2001-08-10 Paul Eggert <eggert@twinsun.com>
9447 * AUTHORS, BUGS, ChangeLog, ChangeLog.0, ChangeLog.1,
9448 ChangeLog.2, GNUmakefile, Makefile.maint, NEWS, README,
9449 README-alpha, TODO, configure.ac, lib/autoconf/Makefile.am,
9450 m4/atconfig.m4, m4/init.m4, m4/m4.m4, m4/missing.m4,
9451 m4/sanity.m4, tests/README, tests/aclocal.m4,
9452 tests/atspecific.m4, tests/base.at, tests/compile.at,
9453 tests/foreign.at, tests/m4sh.at, tests/m4sugar.at,
9454 tests/semantics.at, tests/suite.at, tests/tools.at,
9455 tests/torture.at: Add copyright notice.
9457 * tests/mktests.sh: Update year in copyright notice.
9459 2001-08-12 Alexandre Duret-Lutz <duret_g@epita.fr>
9461 * tests/semantics.at (AC_C_BIGENDIAN): New test.
9463 2001-08-11 Alexandre Duret-Lutz <duret_g@epita.fr>
9465 * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Handle ACTION-IF-TRUE,
9466 ACTION-IF-FALSE, and ACTION-IF-UNKNOWN.
9467 * doc/autoconf.texi (C Compiler Characteristics): Update
9468 documentation for AC_C_BIGENDIAN.
9470 2001-08-11 Alexandre Duret-Lutz <duret_g@epita.fr>
9472 * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Guess endianness by grep'ing
9473 magic values from an object file when cross-compiling.
9474 Based on code by Guido Draheim <Guido.Draheim@gmx.de>.
9476 2001-08-10 Akim Demaille <akim@epita.fr>
9478 * bin/autom4te.in (&handle_output): Don't use `grep' with side
9480 Suggested by Russ Allbery.
9482 2001-08-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
9484 * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Propagate the
9485 current $prefix to the sub-configures.
9487 2001-08-09 Tim Van Holder <tim.van.holder@pandora.be>
9489 * lib/autoconf/lang.m4: Ignore *.xSYM when looking for an executable
9490 extension (needed on BeOS). Reported by Guido van Rossum.
9492 2001-08-09 Akim Demaille <akim@epita.fr>
9494 * bin/autom4te.in ($icache): Load it only if older than autom4te.
9496 2001-08-07 Akim Demaille <akim@epita.fr>
9498 * lib/autotest/general.m4 (AT_INIT): All the `at-*' are to be
9500 (at-setup-line): Huh? Be a variable `at_setup_line', not a file.
9501 No need to remove the files before and after the each test, before
9502 each test and at the end of the suite is enough.
9503 Display only the children `times', not the shell's.
9504 If the test failed or was skipped, at-times is not available.
9506 2001-08-07 Akim Demaille <akim@epita.fr>
9508 Always produce testsuite.log, including when there are no
9509 failures. This helps getting information on skipped tests, and
9510 duration of the tests. Err, implement the latter btw.
9512 * lib/autotest/general.m4 (AT_INIT): Set up fd 6 for the log.
9513 Dump information on the first run of each test.
9514 (AT_CLEANUP): Create `at-times' containing the duration of the
9517 2001-08-07 Akim Demaille <akim@epita.fr>
9519 The use of `dumpstat' revealed that `len' was used although it
9520 should not. m4_text_wrap was using it, but in the Autoconf world
9521 where it is legal. Hence (i) test M4sh in its own world, not
9522 Autoconf's, and (ii), ahem, fix the bug :)
9524 * lib/autotest/general.m4: Be sure the set good quotes, as tracing
9525 does not like `' instead of [].
9526 (AT_INIT): Forbid `^_?AT_'.
9527 And don't output such tokens.
9528 * tests/Makefile.am (CLEANFILES): Add `script', `script.s4g',
9529 `script.as', and `autom4te.cache'.
9530 Remove `empty' and `macro' which are no longer used.
9531 * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): New.
9532 * tests/m4sugar.at: Use it.
9533 * lib/m4sugar/m4sugar.m4: Use `m4_len' not `len'.
9535 2001-08-07 Akim Demaille <akim@epita.fr>
9537 * bin/autoconf.in, bin/autoheader.in: --force, -f is a new option.
9539 2001-08-07 Alexandre Duret-Lutz <duret_g@epita.fr>
9541 * bin/autom4te.in (handle_output): Typo in quadrigraph substitution.
9543 2001-08-04 Akim Demaille <akim@epita.fr>
9545 * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, AC_FUNC_ERROR_AT_LINE)
9546 (AC_FUNC_FSEEKO, AC_FUNC_OBSTACK): Use AC_LANG_IFELSE, not
9548 * lib/autoconf/headers.m4 (AC_HEADER_MAJOR): Likewise.
9549 * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS)
9550 (AC_F77_MAIN): Likewise.
9552 2001-08-04 Akim Demaille <akim@epita.fr>
9554 Don't rely on M4sugar outputting the patterns in files, since we
9555 might process the output _without_ running m4, hence without these
9558 * lib/m4sugar/m4sugar.m4 (m4_init): No need for `m4_tmpdir'.
9559 * bin/autom4te.in (@Request::includes): Remove, unused.
9560 (@Request::source): Rename as...
9561 (@Request::input): this.
9562 (@preselect): Add `m4_pattern_forbid' and `m4_pattern_allow'.
9563 (&handle_output): Fetch the patterns from the traces.
9564 `$forbidden' and `$allowed' are constant: use m//o.
9565 (&handle_m4): M4sugar no longer wants `m4_tmpdir'.
9566 (m4_pattern_forbid, m4_pattern_allow): Adjust for tracing only.
9568 2001-08-04 Akim Demaille <akim@epita.fr>
9570 `autoconf && autoheader' is sped up. Now, speed up `autoheader &&
9571 autoconf', i.e., in addition to caching traces, cache the output.
9573 * bin/autom4te.in (Request::cache): Rename as...
9574 (Request::id): this.
9575 ($cache, $icache, $tcache, $ocache): New.
9576 (&handle_m4): Save M4 output in the cache instead of $tmp.
9577 (&handle_output): Adjust.
9578 (&up_to_date_p): Check that the output cache is up to date too.
9579 (top level): Run `&handle_m4' iff force or the cache is invalid.
9580 Run `&handle_output' if the output cache is more recent.
9582 2001-08-04 Akim Demaille <akim@epita.fr>
9584 * bin/autom4te.in ($force): New.
9585 (&parse_args, &print_usage): -f, --force is a new option.
9586 (&handle_output): CPP directives might have spaces after `#'.
9587 (&parse_args): The first file only can be frozen.
9589 2001-08-04 Akim Demaille <akim@epita.fr>
9591 Don't let autom4te compute the `include' traces several times:
9592 first check that the trace cache file is up to date, and then
9593 compare its timestamp with that of the output.
9595 * bin/autom4te.in, bin/autoupdate.in, bin/autoscan.in: Normalize
9596 the preamble. Don't require 5.005 as Autom4te::General does it,
9597 and better yet (use `use', not `require'!).
9598 * lib/Autom4te/Struct.pm: Rename the last occurrences of
9599 Class::Struct as Autom4te::Struct.
9600 * lib/Autom4te/General.pm (File::stat): Use it.
9601 (&mtime): New, export it.
9602 * bin/autom4te.in: Use it.
9603 Declare `$req' is invalid if it is outdated.
9604 Don't declare it valid before saving it if something went wrong.
9606 2001-08-04 Akim Demaille <akim@epita.fr>
9608 Autom4te shall not encode Autoconf data, and preselecting traces
9609 must be proposed to the users.
9611 * bin/autom4te.in (@required_trace): Remove.
9613 (&parse_args, &print_usage): -p, --preselect is a new option.
9614 (&up_to_date_p): Adjust.
9615 * bin/autoconf.in: Preselect some Autoconf macros.
9617 2001-08-04 Akim Demaille <akim@epita.fr>
9619 * tests/tools.at (autoconf --trace: user macros): Check traces on
9620 macros invoked without arguments, and macros invoked with multiple
9623 2001-08-03 Alexandre Duret-Lutz <duret_g@epita.fr>
9625 * bin/autom4te.in (handle_traces): Fix rewriting of traces without
9628 2001-08-03 Akim Demaille <akim@epita.fr>
9630 * bin/autoconf.in ($@): Work around the usual sh bug.
9633 2001-08-03 Akim Demaille <akim@epita.fr>
9635 Clean up the handling of the M4 builtins tracing exception.
9637 * bin/autom4te.in (Request::request): Don't complete M4 builtins
9639 (@m4_builtins): Rename as...
9640 (@m4_builtin): this.
9641 (%m4_builtin_alternate_name): New.
9642 (&parse_args): Complete the trace requests with alternate names.
9643 (&handle_traces): Hence no longer do it here.
9644 (&trace_requests): Remove, unused.
9646 2001-08-03 Akim Demaille <akim@epita.fr>
9648 * doc/autoconf.texi (Redefined M4 Macros): Document m4_exit,
9651 2001-08-03 Akim Demaille <akim@epita.fr>
9653 * lib/m4sugar/m4sugar.m4 (m4_init): Also forbid `_m4_*' tokens.
9654 (m4_divert_pop): Dump the whole diversion stack when a diversion
9656 * bin/autom4te.in (&handle_output): Remember of the first
9657 occurrence of a possibly undefined macro, not the last.
9658 Complain about the possibly undefined macros in the same order as
9659 the appear in the output.
9660 * lib/autoconf/Makefile.am (autoconf.m4f): List its dependencies.
9661 * tests/tools.at (autoconf: forbidden tokens, basic)
9662 (autoconf: forbidden tokens, exceptions): No longer sort
9663 autoconf's stderr, as it is now deterministic.
9664 Check that `dnl' is caught.
9666 2001-08-01 Akim Demaille <akim@epita.fr>
9668 * configure.ac: Bump to 2.52c.
9670 2001-08-01 Akim Demaille <akim@epita.fr>
9674 * lib/Autom4te/Makefile.am (perllibdir): s/Autoconf/Autom4te/.
9676 2001-08-01 Akim Demaille <akim@epita.fr>
9680 2001-08-01 Akim Demaille <akim@epita.fr>
9682 * lib/Autom4te/General.pm: Use `carp' and `croak', not `warn' and
9685 * bin/autoconf.in, bin/autom4te.in, bin/autoupdate.in: Remove your
9686 `END', as `Autom4te::General::END' will be triggered.
9687 * bin/autoupdate.in, bin/autoscan.in: Improve error messages accuracy.
9688 * bin/autoupdate.in (File::Compare, File::Copy): Use them instead of
9689 system to run `mv', `rm', and `cmp'.
9691 2001-08-01 Akim Demaille <akim@epita.fr>
9693 * lib/Autom4te/General.pm (&unique): New.
9694 * bin/autoscan.in (&output): Use it to issue trace requests once.
9696 2001-08-01 Akim Demaille <akim@epita.fr>
9698 * lib/Autom4te/General.pm: New.
9699 * bin/autom4te.in (Autom4te::General): Use it.
9700 ($me, $tmp, $verbose, $debug, &mktmpdir, &verbose, &xsystem)
9701 (&find_configure_ac, &find_slave): Remove.
9702 * bin/autoscan.in: Likewise.
9703 * bin/autoupdate.in: Likewise.
9705 2001-08-01 Akim Demaille <akim@epita.fr>
9707 * autoconf.in, autom4te.in, autoscan.in, ifnames.in,
9708 * autoheader.in, autoreconf.in, autoupdate.in: Move to...
9709 * bin: here, new directory.
9710 * lib/Autoconf: Rename as...
9711 * lib/Autom4te: this, to please case insensitive junkie OSes.
9713 2001-08-01 Akim Demaille <akim@epita.fr>
9715 * autom4te.in ($m4): Handle the --nesting-limit.
9716 * autoconf.in (M4): Remove.
9718 2001-08-01 Akim Demaille <akim@epita.fr>
9720 * autoconf.in ($AWK): Remove, no longer used.
9721 * test/tools.at: Use AT_CHECK_AUTOCONF.
9722 (AWK portability): Remove, for autoconf no longer uses AWK.
9723 (Syntax of the Perl scripts): New.
9724 * configure.ac: autoconf no longer needs an AWK with a good
9726 Use a static test on AC_PACKAGE_VERSION.
9727 * autom4te.in (&up_to_date_p): Output depends on the arguments.
9728 * lib/autoconf/Makefile.am: Ship version.m4, maintainer file.
9729 * tests/atconfig.in (PERL): New.
9731 2001-08-01 Akim Demaille <akim@epita.fr>
9733 * lib/autoconf/lang.m4 (AC_LANG(C), AC_LANG_C, _AC_LANG_ABBREV(C))
9734 (AC_LANG(C++), AC_LANG_CPLUSPLUS, _AC_LANG_ABBREV(C++))
9735 (AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C), AC_LANG_CALL(C))
9736 (AC_LANG_FUNC_LINK_TRY(C), AC_LANG_BOOL_COMPILE_TRY(C))
9737 (AC_LANG_INT_SAVE(C), _AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
9738 (AC_LANG_PREPROC(C), _AC_PROG_PREPROC_WORKS_IFELSE, AC_PROG_CPP)
9739 (AC_LANG_COMPILER(C), ac_cv_prog_gcc, AC_PROG_CC, _AC_PROG_CC_G)
9740 (AC_PROG_GCC_TRADITIONAL, AC_PROG_CC_C_O, AC_LANG_PREPROC(C++))
9741 (AC_PROG_CXXCPP, AC_LANG_COMPILER(C++), ac_cv_prog_gxx)
9742 (AC_PROG_CXX, _AC_PROG_CXX_G, _AC_PROG_CXX_EXIT_DECLARATION)
9743 (AC_PROG_CC_STDC, AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE)
9744 (AC_C_BIGENDIAN, AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE)
9745 (AC_C_STRINGIZE, AC_C_PROTOTYPES): Move to...
9746 * lib/autoconf/c.m4: here, new file.
9748 * lib/autoconf/lang.m4 (AC_LANG(Fortran 77), AC_LANG_FORTRAN77)
9749 (_AC_LANG_ABBREV(Fortran 77), AC_LANG_SOURCE(Fortran 77))
9750 (AC_LANG_PROGRAM(Fortran 77), AC_LANG_CALL(Fortran 77))
9751 (AC_LANG_PREPROC(Fortran 77), AC_LANG_COMPILER(Fortran 77))
9752 (ac_cv_prog_g77, AC_PROG_F77, _AC_PROG_F77_G, AC_PROG_F77_C_O)
9753 (_AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V, AC_F77_LIBRARY_LDFLAGS)
9754 (AC_F77_DUMMY_MAIN, _AC_LANG_PROGRAM_C_F77_HOOKS, AC_F77_MAIN)
9755 (_AC_F77_NAME_MANGLING, AC_F77_NAME_MANGLING, AC_F77_WRAPPERS)
9756 (AC_F77_FUNC): Move to...
9757 * lib/autoconf/fortran.m4: here, new file.
9759 2001-08-01 Akim Demaille <akim@epita.fr>
9761 * acfunctions.m4: Rename as...
9762 * lib/autoconf/functions.m4: this.
9763 * acgeneral.m4: Rename as...
9764 * lib/autoconf/general.m4: this.
9765 * acheaders.m4: Rename as...
9766 * lib/autoconf/headers.m4: this.
9767 * aclang.m4: Rename as...
9768 * lib/autoconf/lang.m4: this.
9769 * acoldnames.m4: Rename as...
9770 * lib/autoconf/oldnames.m4: this.
9771 * acspecific.m4: Rename as...
9772 * lib/autoconf/specific.m4: this.
9773 * actypes.m4: Rename as...
9774 * lib/autoconf/types.m4: this.
9775 * autoconf.m4: Rename as...
9776 * lib/autoconf/autoconf.m4: this.
9778 * m4sugar.m4: Rename as...
9779 * lib/m4sugar/m4sugar.m4: this.
9780 * m4sh.m4: Rename as...
9781 * lib/m4sugar/m4sh.m4: this.
9783 * tests/atgeneral.m4: Rename as...
9784 * lib/autotest/general.m4: this.
9786 * acfunctions: Rename as...
9787 * lib/autoscan/functions: this.
9788 * acheaders: Rename as...
9789 * lib/autoscan/headers: this.
9790 * acidentifiers: Rename as...
9791 * lib/autoscan/identifiers: this.
9792 * aclibraries: Rename as...
9793 * lib/autoscan/libraries: this.
9794 * acmakevars: Rename as...
9795 * lib/autoscan/makevars: this.
9796 * acprograms: Rename as...
9797 * lib/autoscan/programs: this.
9799 2001-08-01 Akim Demaille <akim@epita.fr>
9801 * doc/autoconf.texi: Moving/deleting open files is not portable.
9802 Portability issues for `.' (source), and more information about sed.
9804 2001-07-25 Steven G. Johnson <stevenj@alum.mit.edu>
9806 * aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Ignore -libmil (on Solaris),
9807 which has a special meaning and is not a reference to libibmil.a.
9808 Reported by Matteo Frigo.
9810 2001-07-25 Pavel Roskin <proski@gnu.org>
9812 * autom4te.in (mktmpdir): Strip trailing newline from mktemp
9815 2001-07-25 Akim Demaille <akim@epita.fr>
9817 * autoconf.in: Try to define the variables before using them.
9818 * autom4te.in ($perllibdir): Use `$autom4te_perllibdir' as envvar
9819 instead of `$perllibdir'.
9820 * tests/atconfig.in ($autom4te_perllibdir): Export it.
9822 2001-07-25 Akim Demaille <akim@epita.fr>
9824 * autoconf.in (ac_LF_and_DOT): Remove, unused.
9826 2001-07-24 Akim Demaille <akim@epita.fr>
9828 Let autoconf use autom4te for traces.
9830 * autoconf.in ($task, task trace): Remove, merely pass --trace to
9832 * autoheader.in: Don't pass `-' to autoconf, rather, a tmp file.
9833 (Because I found no way for autom4te to accept `-').
9834 * autom4te.in (&Request::request): Beware of M4 builtins.
9835 (END): Don't try to remove the content of an empty dir.
9836 (&parse_args): Default is `$f:$l:$n:$%', not `$f:$l:$n:$*'.
9837 (&handle_output): Set a default value to `$forbidden'.
9838 * autoupdate.in (&verbose, &xsystem): New, from autom4te.in.
9839 ($autoconf): Pass --debug and --verbose.
9840 * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Clean up autom4te's
9843 2001-07-24 Akim Demaille <akim@epita.fr>
9845 Let autoconf use autom4te to create configure.
9847 * autoconf.in ($automate): New var.
9848 (task script): Use autom4te.
9849 * autom4te.in (File::Spec): Use it.
9851 (&parse_args): --warning is -W, not -w.
9852 Find the top level files.
9853 (&handle_m4): Pass the warnings flags.
9854 Don't report verbosely m4's failures, unless requested.
9855 (&handle_output): Don't complain for forbidden tokens in comments.
9856 Be sure to report all the forbidden tokens within a single line.
9857 (&trace_format_to_m4): Preserve `$_'.
9858 (&handle_traces): Sort the output macros.
9859 (&up_to_date_p): Find the files before trying to get its time stamp.
9861 2001-07-24 Akim Demaille <akim@epita.fr>
9863 * Makefile.am: Ship, build and install Autom4te.
9865 * lib/Autoconf/Struct.pm: New, from Automake 1.5.
9866 * configure.in: Require Perl.
9867 * man/autom4te.in: New.
9869 2001-07-19 Paul Eggert <eggert@twinsun.com>
9871 * doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
9872 example, rather than (exit 1); exit (which isn't portable).
9874 2001-07-18 Akim Demaille <akim@epita.fr>
9878 2001-07-18 Akim Demaille <akim@epita.fr>
9880 The C-Fortran 77 hooks are available only once AC_F77_DUMMY_MAIN
9881 was run, while they are needed also when it is expanded.
9882 Reported by Nicolas Joly.
9884 * aclang.m4 (AC_F77_DUMMY_MAIN): Define _AC_LANG_PROGRAM_C_F77_HOOKS.
9885 (AC_LANG_PROGRAM(C)): Use it instead of depending upon
9886 AC_F77_DUMMY_MAIN being expanded.
9888 2001-07-18 Akim Demaille <akim@epita.fr>
9890 * configure.in: Bump to 2.51a.
9892 2001-07-17 Akim Demaille <akim@epita.fr>
9896 2001-07-17 Akim Demaille <akim@epita.fr>
9898 * aclang.m4 (AC_F77_DUMMY_MAIN): Let the interface be more
9899 Autoconfy: $1 = action-if-found, $2 = action-if-not-found.
9901 2001-07-17 Akim Demaille <akim@epita.fr>
9903 The runtime test for AC_FUNC_GETPGRP fails when prototypes are
9904 used. Well, then use the prototypes when you can, and runtime as
9906 Reported by Artur Frysiak
9908 * acfunctions.m4 (_AC_FUNC_GETPGRP_TEST): New.
9909 (AC_FUNC_GETPGRP): Use it.
9910 First try to compile with 0-ary or 1-ary calls.
9912 2001-07-17 Akim Demaille <akim@epita.fr>
9914 * actypes.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P): `foo_t' is a
9918 2001-07-17 Akim Demaille <akim@epita.fr>
9920 * Makefile.maint: Sync. with cppi 1.10.
9922 2001-07-17 Akim Demaille <akim@epita.fr>
9924 * aclang.m4 (AC_LANG_PROGRAM(C)): Output F77_DUMMY_MAIN only when
9925 AC_F77_DUMMY_MAIN has been run.
9926 From Pavel Roskin and Steven G. Johnson.
9928 2001-07-17 Akim Demaille <akim@epita.fr>
9930 * configure.in: Rename as...
9931 * configure.ac: this.
9933 2001-07-17 Akim Demaille <akim@epita.fr>
9935 * Makefile.am (INSTALL.txt): Don't use $@ and $< in non suffix
9938 * Makefile.maint (release-archive-dir): Rename as...
9939 (release_archive_dir): this, so that it can be specialized in
9942 2001-07-14 Akim Demaille <akim@epita.fr>
9944 * configure.in: Bump to 2.50d.
9946 2001-07-14 Akim Demaille <akim@epita.fr>
9949 * Makefile.maint (alpha): Typo.
9951 2001-07-14 Akim Demaille <akim@epita.fr>
9953 * doc/autoconf.texi (Limitations of Make): Macro names and underscore.
9955 2001-07-14 Akim Demaille <akim@epita.fr>
9957 * config/config.guess, config/config.sub, config/texinfo.tex
9958 * doc/standards.texi, doc/make-stds.texi: Update.
9960 2001-07-14 Akim Demaille <akim@epita.fr>
9962 * Makefile.maint (cvs-check, cvs-tag-check, cvs-diff-check): New.
9964 2001-07-14 Akim Demaille <akim@epita.fr>
9966 * Makefile.maint (maintainer-check): Rename as...
9967 (maintainer-distcheck): this.
9968 (changelog-check, static-check): New.
9971 2001-07-14 Kevin Ryde <user42@zip.com.au>
9973 * doc/autoconf.texi (C++ Compilers Characteristics): Last resort
9974 for CXX is g++, not gcc.
9976 2001-07-14 Akim Demaille <akim@epita.fr>
9978 * doc/autoconf.texi (Files): New subsection.
9980 2001-07-14 Akim Demaille <akim@epita.fr>
9982 * doc/autoconf.texi (C Compiler, Fortran 77 Compiler): Be subsections
9984 (Generic Compiler Characteristics): this.
9985 (C++ Compiler): New subsection.
9987 2001-07-14 Akim Demaille <akim@epita.fr>
9989 * autoscan.in: Use IO::File.
9990 Adjust all the routines to use it.
9991 ($log): New file (autoscan.log).
9992 (output): Dump detailed logs into $log, and a shortened version to
9994 (&scan_makefile): Refine the regexp catching tokens in the code.
9995 * doc/autoconf.texi (autoscan Invocation): Document `autoscan.log'
9996 and the `configure.ac' checking feature.
9998 2001-07-12 Akim Demaille <akim@epita.fr>
10000 For some AWK, such as on HPUX 11, `xfoo' does not match `foo|^bar'.
10001 Reported by Michael Elizabeth Chastain.
10003 * autoconf.in: Refuse such AWK.
10004 * configure.in: Likewise.
10005 * Makefile.am (acversion.m4): Do not use move-if-change this file
10007 * doc/autoconf.texi (Fortran 77 Compiler): Some typos.
10009 2001-07-10 Jens Petersen <petersen@redhat.com>
10011 * autoscan.in (&scan_makefile): Improve programs regexp to parse
10012 things like "g++", "file.c" and "some-conf" as tokens.
10013 (&scan_file): Match C++ files extensions.
10014 If the filename extension is C++ then ask for c++.
10016 2001-07-05 Steven G. Johnson <stevenj@alum.mit.edu>
10018 * aclang.m4 (AC_F77_DUMMY_MAIN): Use AC_TRY_LINK, not
10019 AC_TRY_LINK_FUNC, to check whether defining a dummy
10020 main-like routine is needed for linking with F77 libs.
10022 2001-07-05 Pavel Roskin <proski@gnu.org>
10024 * aclocal.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Remove conftest*
10026 (_AC_PROG_F77_V_OUTPUT): Remove conftest*, not conftest.* after
10029 2001-07-05 Akim Demaille <akim@epita.fr>
10031 * Makefile.am (move_if_change): New. Use it instead of `mv'.
10032 (acversion.m4): Name it `$(srcdir)/acversion.m4' to ease broken
10034 Reported by Nicolas Joly.
10036 2001-07-04 Akim Demaille <akim@epita.fr>
10038 * acgeneral.m4 (_AC_RUN_IFELSE): Remove conftest.o when cleaning
10040 * acfunctions.m4 (AC_FUNC_WAIT3): Use `break' to silent some
10041 warnings from compilers.
10042 * aclang.m4 (_AC_LANG_COMPILER_GNU): Log the version information
10043 for all the compilers, not only GNU. Hence move from here...
10044 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77): to here.
10046 2001-07-04 Akim Demaille <akim@epita.fr>
10048 * acfunctions.m4 (AC_FUNC_STRTOD, AC_FUNC_STRERROR_R)
10049 (AC_FUNC_STRCOLL, AC_FUNC_WAIT3): Use AC_RUN_IFELSE and
10052 2001-07-04 Akim Demaille <akim@epita.fr>
10054 * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Actually apply
10055 the ``strings.h'' change claimed below.
10057 2001-07-04 Akim Demaille <akim@epita.fr>
10059 * aclang.m4 (_AC_LANG_COMPILER_GNU): s/-dumpspecs/-v/.
10061 2001-07-04 Akim Demaille <akim@epita.fr>
10063 * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
10064 strings.h if usable with string.h.
10065 Suggested by Paul Eggert.
10067 2001-07-04 Akim Demaille <akim@epita.fr>
10069 * autoscan.in (&scan_file): Skip FILE if there is FILE.in.
10070 From Jens Petersen.
10072 2001-07-03 Akim Demaille <akim@epita.fr>
10074 * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Specify CONFIG_FILES
10077 2001-07-03 Akim Demaille <akim@epita.fr>
10079 * acheaders.m4 (AC_CHECK_HEADER): When INCLUDES are set, use the
10080 compiler, not the preprocessor.
10081 * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): No longer use
10082 dedicated code to check for inttypes.h, as AC_CHECK_HEADERS does
10084 * Makefile.am (.m4.m4f): Emphasize M4 error messages and fail
10085 earlier if there are.
10087 2001-07-03 Akim Demaille <akim@epita.fr>
10089 * autoscan.in ($initfile): Remove.
10090 (&find_file): Rename as...
10091 (&scan_file): this.
10092 Immediately scan the current file, instead of gathering them, and
10093 later having them handled by &scan_files.
10094 (&scan_files): Merely invoke Find::File.
10097 2001-07-02 Akim Demaille <akim@epita.fr>
10099 * autoscan.in: Formatting changes, matching the invocation order.
10100 (File::Find): Use it instead of Perl 4's `find.pl'.
10101 (&wanted): Rename as...
10102 (&find_file): this.
10104 2001-07-01 Pavel Roskin <proski@gnu.org>
10106 * aclang.m4 (AC_F77_DUMMY_MAIN): Remove conftest* after using
10107 break in the argument to AC_TRY_LINK_FUNC.
10108 (AC_F77_MAIN): Remove conftest* after using break in the
10109 argument to AC_TRY_LINK.
10111 2001-07-01 Steven G. Johnson <stevenj@alum.mit.edu>
10113 Add alternate 'main' routine detection for linking C/C++ with Fortran,
10114 fixing link failures for e.g. AC_F77_WRAPPERS on NetBSD.
10116 * aclang.m4 (AC_F77_DUMMY_MAIN): New macro to detect whether a
10117 dummy alternate main is required even if the user provides her own
10119 (AC_F77_MAIN): New macro to detect whether it is possible to
10120 provide an alternate 'main' function name, using the 'main' from
10121 the Fortran libraries.
10122 (AC_LANG_PROGRAM(C)): Use F77_DUMMY_MAIN, if it is defined, so that
10123 cross-language link tests can be performed successfully.
10124 (_AC_F77_NAME_MANGLING): Require AC_F77_DUMMY_MAIN. Also put $FLIBS
10125 after $LIBS, for consistency; this should be the general rule since
10126 the user may want to link to Fortran libraries that require $FLIBS.
10127 * doc/autoconf.texi: Document AC_F77_DUMMY_MAIN and AC_F77_MAIN.
10129 2001-06-29 Pavel Roskin <proski@gnu.org>
10131 * atgeneral.m4 (AT_CHECK): Add a newline to the end of
10132 at-stdout and at-stderr instead of removing the newline
10133 from the echo output, which is not guaranteed to work.
10135 2001-06-28 Jens Petersen <petersen@redhat.com>
10137 * aclang.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Only add declaration to
10138 confdefs.h when non-zero.
10140 2001-06-28 Akim Demaille <akim@epita.fr>
10142 * configure.in: Bump to 2.50c.
10144 2001-06-26 Akim Demaille <akim@epita.fr>
10148 2001-06-26 Akim Demaille <akim@epita.fr>
10152 2001-06-25 Pavel Roskin <proski@gnu.org>
10154 * tests/atspecific.m4 (AT_CHECK_MACRO): Accept one more
10155 argument, AUTOCONF-FLAGS.
10156 * tests/mktests.sh (update_exclude_list): Add
10157 AC_SYS_RESTARTABLE_SYSCALLS and AC_FUNC_WAIT3.
10158 * tests/semantics.at: Test AC_SYS_RESTARTABLE_SYSCALLS and
10159 AC_FUNC_WAIT3 with "-W no-obsolete".
10161 2001-06-25 Akim Demaille <akim@epita.fr>
10163 * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
10165 2001-06-25 Akim Demaille <akim@epita.fr>
10167 * autoscan.in (%macro): Now maps from word to list of macros.
10168 (&init_tables): Die when a word which is already handled by
10169 explicit macros is mapped to the default macro.
10170 (&print_unique): Remove, inlined in...
10171 (&output_kind): here.
10172 (File::Basename): Use it.
10173 (&output): Sort the CONFIG_FILES.
10174 * acheaders: Normalize.
10175 * acfunctions: Likewise.
10177 2001-06-25 Akim Demaille <akim@epita.fr>
10179 * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
10180 characteristics in the logs.
10181 Suggested by Mo DeJong.
10183 2001-06-24 Akim Demaille <akim@epita.fr>
10185 * acfunctions.m4 (AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH)
10186 (AM_FUNC_MKTIME, AM_FUNC_OBSTACK, AM_FUNC_STRTOD): Reactivated.
10187 * doc/autoconf.texi (Autoconf 2.13): New section.
10189 2001-06-24 Akim Demaille <akim@epita.fr>
10191 * autoconf.in (Task traces): Separate the error messages from the
10192 traces to improve robustness.
10194 2001-06-23 Akim Demaille <akim@epita.fr>
10196 * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
10197 three as failures are unlikely, and speed matters.
10199 2001-06-23 Akim Demaille <akim@epita.fr>
10201 * doc/autoconf.texi (Redefined M4 Macros): New.
10203 2001-06-23 Akim Demaille <akim@epita.fr>
10205 * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Consider
10206 inttypes.h is missing if it conflicts with sys/types.h, as on IRIX
10209 2001-06-23 Paolo Bonzini <bonzini@gnu.org>
10211 * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Defer parsing of
10212 config.status targets to after the evaluation of the INIT-CMDS.
10213 Double quote config.status targets (used to be single quoted).
10215 2001-06-23 Akim Demaille <akim@epita.fr>
10217 * tests/torture.at (CONFIG_FILES, HEADERS, LINKS and COMMANDS):
10218 Check the content of the created file.
10219 Check the ./config.status command line invocation.
10221 2001-06-23 Akim Demaille <akim@epita.fr>
10223 * tests/foreign.at (Libtool): Reject prehistoric versions.
10225 2001-06-23 Akim Demaille <akim@epita.fr>
10227 * aclang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Try to be robust to
10228 preexisting files matching a.*.
10230 2001-06-23 Akim Demaille <akim@epita.fr>
10232 * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Output error messages on
10234 * doc/autoconf.texi (AC_ARG_VAR): Update.
10236 2001-06-21 Akim Demaille <akim@epita.fr>
10238 * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Die instead of warning when
10239 precious variables have changed.
10240 * tests/torture.at (AC_ARG_VAR): Adjust.
10242 2001-06-21 Akim Demaille <akim@epita.fr>
10244 ./configure --program-suffix=foo produces `transform=s,$$,foo,;',
10245 but some sed choke on multiple `;', and other tools (e.g.,
10246 Automake), include the separator themselves.
10248 * acgeneral.m4 (AC_ARG_VAR): Be sure not to leave extra `;'.
10250 2001-06-19 Tim Van Holder <tim.van.holder@pandora.be>
10252 * doc/autoconf.texi (Functions Portability): Rename as...
10253 (Function Portability): this.
10254 (Function Portability): Document potential problems with unlink().
10256 2001-06-19 Paul Eggert <eggert@twinsun.com>
10258 * NEWS, doc/autoconf.texi: Document quadrigraphs.
10260 2001-06-18 Akim Demaille <akim@epita.fr>
10262 * acfunctions.m4 (AC_FUNC_FORK): Fix typos.
10264 2001-06-18 Ruediger Kuhlmann <info@ruediger-kuhlmann.de>
10266 * acfunctions.m4: (AC_FUNC_VFORK) rename as...
10267 (_AC_FUNC_VFORK): this.
10268 Remove AC_DEFINEs and don't guess cross-compilation values.
10269 (_AC_FUNC_FORK): New, check whether fork() isn't just a stub.
10270 (AC_FUNC_FORK): New, use _AC_FUNC_VFORK and _AC_FUNC_FORK to
10271 define HAVE_WORKING_FORK, HAVE_WORKING_VFORK; and vfork to fork if
10272 vfork doesn't work.
10273 Guess values if cross-compiling, but warn.
10274 * acfunctions: Add AC_FUNC_FORK.
10275 * doc/autoconf.texi: Document AC_FUNC_FORK. Give example to define
10276 and vfork appropriately.
10278 2001-06-18 Akim Demaille <akim@epita.fr>
10280 * doc/autoconf.texi (Functions Portability): New section.
10282 2001-06-18 Akim Demaille <akim@epita.fr>
10284 * autoconf.in (M4): Pass --nesting-limit=1024, unless already set
10286 Suggested by Andreas Schwab.
10288 2001-06-18 Akim Demaille <akim@epita.fr>
10290 * acfunctions.m4 (AC_FUNC_CHOWN, AC_FUNC_CLOSEDIR_VOID)
10291 (AC_FUNC_GETPGRP, AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK)
10292 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES, _AC_FUNC_STAT)
10293 (AC_FUNC_UTIME_NULL): Use AC_INCLUDES_DEFAULT.
10294 Don't use AC_TRY_RUN, which double quotes, prefer AC_RUN_IFELSE,
10295 and either AC_LANG_SOURCE or AC_LANG_PROGRAM.
10296 (AC_FUNC_CLOSEDIR_VOID): Protect C++ from `int closedir ();' (or
10299 2001-06-18 Akim Demaille <akim@epita.fr>
10301 * doc/autoconf.texi (ms): New index.
10302 (Macro Index): Rename as...
10303 (Autoconf Macro Index): this.
10304 (M4 Macro Index): New appendix.
10305 (Programming in M4): New chapter.
10306 Define M4sugar, M4sh, m4_pattern_forbid, and m4_pattern_allow.
10307 (Quoting): Rename as...
10308 (M$ Quotation): this.
10309 Be part of `Programming in M4).
10311 2001-06-18 Nicolas Joly <njoly@pasteur.fr>
10313 * tests/torture.at (AC_ARG_VAR): Set variables and export them
10314 in separate statements for compatibility with Tru64 v5.1.
10316 2001-06-17 Akim Demaille <akim@epita.fr>
10318 * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
10319 current values of the precious variables, not the previously
10321 Pass precious variables which are set to config.status.
10322 * doc/autoconf.texi (Setting Output Variables): Document AC_ARG_VAR.
10323 * tests/torture.at (AC_ARG_VAR): New.
10325 2001-06-15 Paul Eggert <eggert@twinsun.com>
10327 * doc/autoconf.texi: Move AC_FUNC_WAIT3 and
10328 AC_SYS_RESTARTABLE_SYSCALLS to the obsolete section,
10329 and explain why and how to replace them.
10330 * acfunctions.m4 (AC_FUNC_WAIT3): Warn as obsolete.
10331 * acspecific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
10333 2001-06-15 Akim Demaille <akim@epita.fr>
10335 `build_alias', `host_alias', and `target_alias' are not AC_SUBST'd.
10336 Reported by Bruno Haible.
10338 * acgeneral.m4 (AC_ARG_VAR): Move the AC_SUBST, from here...
10339 (_AC_ARG_VAR_PRECIOUS): to here.
10341 2001-06-15 Pavel Roskin <proski@gnu.org>
10343 * acheaders.m4 (_AC_CHECK_HEADER_DIRENT): Instead of defining
10344 an unused pointer use cast to this type and `if' statement to
10345 avoid warnings from the compiler.
10346 (AC_HEADER_TIME): Likewise.
10347 * actypes.m4 (AC_CHECK_MEMBER): s/foo/ac_aggr/. Use the member
10348 in `if' statement to avoid warnings from the compiler. Declare
10349 ac_aggr static to avoid the need to initialize it.
10351 2001-06-14 Akim Demaille <akim@epita.fr>
10353 * doc/autoconf.texi (Portable Shell): Move to follow `Writing
10356 2001-06-13 Akim Demaille <akim@epita.fr>
10358 * m4/missing.m4, config/missing: Updated to Automake 1.4g's.
10359 Suggested by Alexander Mai.
10361 2001-06-13 Akim Demaille <akim@epita.fr>
10363 * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Guard
10364 sys/types.h and sys/stat.h, and check for them.
10366 2001-06-13 Akim Demaille <akim@epita.fr>
10368 * acheaders.m4 (AC_CHECK_HEADER, AC_CHECK_HEADERS): Support $4 =
10371 2001-06-12 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
10373 * acspecific.m4 (AC_PATH_XTRA): Check if linking against libX11
10374 succeeds and only try adding libdnet upon a failure.
10376 2001-06-12 Akim Demaille <akim@epita.fr>
10378 * autoscan.in (&output_kind): Output the comment only if it exists.
10379 (%kind_comment): Add entry for `programs'.
10380 (&output_programs): Use &output_kind.
10381 (&output_functions, &output_identifiers, &output_headers)
10382 (&output_programs): Inline, and remove.
10384 2001-06-12 Akim Demaille <akim@epita.fr>
10386 * autoscan.in (%kind_comment): New.
10387 (output_kind): New.
10388 (output_functions, output_identifiers, output_headers): Use it.
10390 2001-06-12 Akim Demaille <akim@epita.fr>
10392 * autoscan.in (&print_unique): Take `$kind' and `$word' as
10393 arguments, to factor indirections into `%macro' and `%used'.
10394 (%generic_macro): Fix a typo.
10396 2001-06-12 Akim Demaille <akim@epita.fr>
10398 * aclibraries: New.
10399 * autoscan.in (@kinds): Add `libraries'.
10400 Use `@kinds' instead of hard coded lists.
10401 (%programs, %headers, %identifiers, %makevars, %libraries, %functions):
10402 Remove, replaced by...
10405 2001-06-12 Akim Demaille <akim@epita.fr>
10407 * autoscan.in (%functions_macros %headers_macros)
10408 (%identifiers_macros %programs_macros %makevars_macros): Remove,
10412 2001-06-11 Raja R Harinath <harinath@cs.umn.edu>
10414 * aclang.m4 (AC_NO_EXECUTABLES): Override
10415 _AC_COMPILER_EXEEXT_WORKS, not _AC_LANG_COMPILER_WORKS.
10417 2001-06-11 Akim Demaille <akim@epita.fr>
10419 * aclang.m4 (AC_NO_EXECUTABLES): Define the macros with their
10421 Reported by Andreas Schwab.
10423 2001-06-11 Akim Demaille <akim@epita.fr>
10425 * Makefile.am, Makefile.maint: Typos.
10427 2001-06-09 Akim Demaille <akim@epita.fr>
10429 * doc/autoconf.texi (Here-Documents): New section, gathering
10430 documentation about here-documents.
10431 Use `href', not `uref', and other changes.
10433 2001-06-09 Akim Demaille <akim@epita.fr>
10435 * doc/autoconf.texi (Portable Shell Programming): Promoted as a
10438 2001-06-09 Akim Demaille <akim@epita.fr>
10440 * doc/autoconf.texi (Limitations of Builtins): Complete the
10441 description of the here-docs penalties with Alexandre Oliva's
10444 2001-06-01 Paul Eggert <eggert@twinsun.com>
10446 * doc/autoconf.texi: Talk about here documents and speedups.
10447 Do not use "echo" on arbitrary strings.
10448 Spell "here-documents" consistently with the standard.
10450 2001-06-09 Akim Demaille <akim@epita.fr>
10452 * doc/autoconf.texi (Concept Index): Introduce it.
10453 Regenerate the menus.
10455 2001-06-09 Akim Demaille <akim@epita.fr>
10457 * Makefile.maint, GNUmakefile: New, from Jim Meyering.
10458 * config/prev-version.txt: New.
10459 * config/move-if-change: New, for GNU libc.
10461 2001-06-06 Pavel Roskin <proski@gnu.org>
10463 * tests/atgeneral.m4 (AT_INIT): Remove "/bin/sh" after $SHELL.
10465 2001-06-06 Akim Demaille <akim@epita.fr>
10467 * acgeneral.m4 (AC_CHECK_LIB): Fix the cache var name to work
10468 properly when $1 is not a literal.
10469 Fixes PR Autoconf/187, reported by Bram Moolenaar.
10471 2001-06-06 Akim Demaille <akim@epita.fr>
10473 Invoking AC_COPYRIGHT before AC_INIT fails.
10475 * Makefile.am (.m4.m4f): Pass --fatal-warnings to m4.
10476 * acgeneral.m4 (_m4_divert(VERSION_FSF))
10477 (_m4_divert(VERSION_USER)): New.
10478 (AC_COPYRIGHT): $2 is the diversion to use.
10479 (_AC_INIT_COPYRIGHT): Use the FSF diversion.
10480 (AC_INIT): Remove dead comments as now it's commutative.
10482 2001-06-06 Akim Demaille <akim@epita.fr>
10484 * tests/semantics.at (AC_CHECK_LIB): Strengthen to reflect
10487 2001-06-05 Akim Demaille <akim@epita.fr>
10489 * acgeneral.m4 (_AC_INIT_PARSE_ARGS): `prefix' and `exec_prefix'
10491 `*dir' variables cannot be NONE.
10492 Reported by Mark Kettenis.
10494 2001-06-05 Paul Eggert <eggert@twinsun.com>
10496 * doc/autoconf.texi: Fix references to Solaris and SunOS versions.
10498 2001-06-04 Akim Demaille <akim@epita.fr>
10500 * acgeneral.m4 (AC_VAR_SET, AC_VAR_GET, AC_VAR_TEST_SET)
10501 (AC_VAR_SET_IFELSE, AC_VAR_PUSHDEF and AC_VAR_POPDEF, AC_TR_CPP)
10502 (AC_TR_SH): Move as...
10503 * m4sh.m4 (AS_VAR_SET, AS_VAR_GET, AS_VAR_TEST_SET)
10504 (AS_VAR_SET_IF, AC_VAR_PUSHDEF, AS_VAR_POPDEF, AS_TR_CPP)
10506 (_AS_TR_PREPARE, _AS_CR_PREPARE, _AS_TR_CPP_PREPARE)
10507 (_AS_TR_SH_PREPARE): New.
10508 (AS_SHELL_SANITIZE): Invoke _AS_TR_PREPARE.
10509 * tests/aclocal.m4 (AC_STATE_SAVE): `as_' vars can be modified.
10511 2001-06-02 Akim Demaille <akim@epita.fr>
10513 * Makefile.am (.m4.m4f): Pass the options first.
10514 Fixes PR autoconf/182.
10516 2001-06-02 Nathan Sidwell <nathan@codesourcery.com>
10518 GNU getopt, when POSIXLY_CORRECT does not permute options and
10519 arguments. So pass the options first.
10520 Fixes PR autoconf/184.
10522 * autoconf.sh (m4_prefiles, m4f_prefiles): New variables.
10523 (run_m4): Remove files.
10525 Update remainder of script to use them.
10526 (for warning in): Do not use a literal comma as it will not be
10529 2001-06-02 Christian Marquardt <marq@gfz-potsdam.de>
10531 * aclang.m4 (AC_PROG_F77): Add Fujitsu's "frt" to the list of
10532 Fortran compilers to check.
10533 (_AC_PROG_F77_V): Add '-###' as a possible option to print
10534 information on library and object files.
10535 (AC_PROG_CXX): Add Fujitsu's "FCC" to the list of C++ compilers
10538 2001-06-02 Akim Demaille <akim@epita.fr>
10540 * autom4te.in (Request::@request): Declare with `vars', not `my',
10541 as it prevents updates via `do FILENAME'.
10543 2001-06-02 Akim Demaille <akim@epita.fr>
10545 * configure.in (standards_texi): Remove, dead code.
10547 2001-06-02 Akim Demaille <akim@epita.fr>
10549 * autom4te.in: New.
10551 2001-06-02 Pavel Roskin <proski@gnu.org>
10553 * acgeneral.m4 (_AC_INIT_PREPARE): Don't rely on $? in the traps
10554 for signals other than 0 - exit with code 1.
10555 * m4sh.m4 (AS_TMPDIR): Likewise.
10556 * autoconf.in: Likewise. Also don't rely on exit == exit $?.
10557 * autoheader.in: Likewise.
10558 * autoreconf.in: Likewise.
10559 * tests/torture.at (Signal handling): New test for the above.
10561 2001-06-01 Akim Demaille <akim@epita.fr>
10563 * m4sugar.m4 (m4_defn, m4_undefine, m4_popdef): Clarify the error
10566 2001-05-31 Akim Demaille <akim@epita.fr>
10568 * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
10569 Add copyright and comments.
10570 * acheaders: Add stdint.h.
10571 Suggested by Paul Eggert.
10573 2001-05-31 Akim Demaille <akim@epita.fr>
10575 * atgeneral.m4 (AT_INIT): Use $SHELL.
10576 * atspecific.m4 (AT_CHECK_DEFINES): Skip HAVE_STDINT_H.
10578 2001-05-31 Akim Demaille <akim@epita.fr>
10580 * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
10582 From Paul Eggert and Lars Hecking.
10584 2001-05-31 Akim Demaille <akim@epita.fr>
10586 * tests/base.at: Adjust line numbers in error messages.
10588 2001-05-31 Akim Demaille <akim@epita.fr>
10590 * tests/base.at, tests/m4sh.at: When using AC_PLAIN_SCRIPT be sure
10591 to emit the bangshe line.
10592 Reported by David Carter.
10594 2001-05-30 Steven G. Johnson <stevenj@alum.mit.edu>
10596 * aclang.m4 (AC_PROG_F77): Add Compaq's "fort" to the list of
10597 Fortran (95) compilers to check.
10599 2001-05-29 Alexandre Duret-Lutz <duret_g@epita.fr>
10601 * doc/autoconf.texi (Introduction, Pointers): Update the Autoconf
10604 2001-05-23 Pavel Roskin <proski@gnu.org>
10606 * aclang.m4 (AC_PROG_CPP): Use `break' instead of `break 2' since
10607 _AC_PROG_PREPROC_WORKS_IFELSE expands arguments outside the loop.
10608 (AC_PROG_CXXCPP): Likewise.
10610 2001-05-22 Akim Demaille <akim@epita.fr>
10612 * config: New directory.
10613 * configure.in: AC_CONFIG_AUX_DIR it.
10614 * tests/atspecific.m4 (AT_CONFIGURE_AC): Adjust.
10616 2001-05-22 Akim Demaille <akim@epita.fr>
10618 * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in,
10619 * autoupdate.in: Specify the Emacs mode.
10620 * acversion.m4.in: Rename as...
10621 * acversion.m4: this.
10622 * tests/Makefile.am (CLEANFILES): More garbage.
10624 2001-05-22 Akim Demaille <akim@epita.fr>
10626 * autoconf.sh, autoreconf.sh, autoheader.sh, autoscan.pl, ifnames.sh:
10628 * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in:
10631 2001-05-21 Akim Demaille <akim@epita.fr>
10633 * configure.in: Bump to 2.50a.
10637 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
10639 This file is part of GNU Autoconf.
10641 GNU Autoconf is free software; you can redistribute it and/or modify
10642 it under the terms of the GNU General Public License as published by
10643 the Free Software Foundation; either version 2, or (at your option)
10646 GNU Autoconf is distributed in the hope that it will be useful,
10647 but WITHOUT ANY WARRANTY; without even the implied warranty of
10648 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10649 GNU General Public License for more details.
10651 You should have received a copy of the GNU General Public License
10652 along with autoconf; see the file COPYING. If not, write to
10653 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
10654 Boston, MA 02110-1301, USA.