Sync auxiliary files from upstream.
[automake/ericb.git] / ChangeLog
blobdd3caa50c190ec8447d7e8599022145b2a363f5d
1 2008-11-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3         * INSTALL, lib/INSTALL, lib/config.guess, lib/config.sub,
4         lib/texinfo.tex: Sync from upstream.
6 2008-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8         Update to GFDL 1.3.
9         * doc/fdl.texi: Update to GFDL 1.3.
10         * doc/automake.texi (GNU Free Documentation License): Adjust.
11         * NEWS: Update.
13         * NEWS: Fix typos.
14         * automake.in: Fix typos in comments.  Remove extraneous
15         whitespace.
17 2008-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19         Cope with absent Perl modules threads and Thread::Queue.
20         * automake.in: Instead of `use threads', use `require threads;
21         import threads' inside a BEGIN section.  Likewise for
22         Thread::Queue.
23         * lib/Automake/ChannelDefs.pm (Automake::ChannelDefs): Likewise.
24         * lib/Automake/tests/Condition-t.pl: Likewise.
25         * lib/Automake/tests/DisjConditions-t.pl: Likewise.
26         * configure.ac: Likewise, use `require' and `import'.
27         Report by Eric Blake, fix suggested by Ben Pfaff.
29 2008-11-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31         Multiple 'make uninstall' should not fail even for TEXINFOS.
32         * lib/am/texinfos.am (uninstall-info-am): Do not fail due to
33         install-info if the installed file does not exist (any more).
34         * tests/txinfo26.test: Issue multiple `make uninstall'.
35         * tests/instmany-mans.test: Likewise.
36         * tests/instmany-python.test: Likewise.
37         * tests/instmany.test: Likewise.
38         * tests/txinfo26.test: Likewise.
39         * NEWS: Update.
41 2008-11-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43         New public macro AM_SUBST_NOTMAKE.
44         * m4/substnot.m4 (AM_SUBST_NOTMAKE): New public macro; invoke
45         _AM_SUBST_NOTMAKE with arguments.
46         * doc/automake.texi (Optional): Document it.
47         * NEWS: Update.
48         * tests/subst4.test: New test.
49         * tests/Makefile.am: Update.
50         Suggestion by Bruno Haible.
52         Fix regression introduced by AM_DEFAULT_SOURCE_EXT.
53         * automake.in (handle_source_transform): Use the right variable
54         when determining whether to apply the old rule for the libtool
55         library default source name.
56         Testsuite failure exposed by Bob Proulx' build daemon.
58 2008-11-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
60         New maintainer target release-stats.
61         * Makefile.am (release-stats): New target, to help computing the
62         entries in the statistics table in automake.texi.
63         * doc/automake.texi (Releases): Reformat a bit.  Add number of
64         generated files.  Add entry for 1.10.1.
66         Choose default source extension: AM_DEFAULT_SOURCE_EXT.
67         * automake.in (handle_source_transform): Accept unconditional
68         literal extension in AM_DEFAULT_SOURCE_EXT as override for the
69         default source extension `.c'.  If set, ignore the old default
70         source rule for libtool libraries.
71         * doc/automake.texi (Default _SOURCES): Document this.
72         * NEWS: Update.
73         * tests/specflg10.test: New test.
74         * tests/Makefile.am: Update.
75         Suggestion by Akim Demaille.
77         Fix maintainer-check failure.
78         * tests/parallel-am.test: Rename variable to not match pattern
79         used in maintainer-check.
81 2008-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
83         * NEWS: Fix typo.
84         Spotted by Jim Meyering.
86 2008-10-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
88         Parallel automake --add-missing: serialized file installs.
89         * automake.in (QUEUE_CONF_FILE, QUEUE_LOCATION, QUEUE_STRING):
90         New serialization keys.
91         ($required_conf_file_queue): New file global.
92         (queue_required_conf_file, require_queued_conf_file): New
93         functions, to queue and dequeue requirements for aux dir files.
94         (require_conf_file): Enqueue if needed.
95         (get_number_of_threads): Can do threads with --add-missing now.
96         (handle_makefiles_threaded): Let worker threads enqueue, let
97         master attend to queued requirements at the right time.
98         * tests/parallel-am.test: Explain the purpose of the include
99         chain used here.
100         * tests/parallel-am2.test: Also cope with --add-missing.
101         * tests/parallel-am3.test: New test, test absence of races with
102         concurrent same-file installs stemming from --add-missing.
103         * tests/Makefile.am: Adjust.
105         Implement serialization for Locations.
106         * lib/Automake/Location.pm (serialize, deserialize): New
107         functions.  They allows to serialize a Location in an array, and
108         to restore a Location from a thread queue.  The API is
109         unsymmetric (array vs. queue) because enqueuing data needs to
110         happen atomically.
112         Parallel automake: ordered output messages.
113         * lib/Automake/Channels.pm (%_default_options): New options
114         `ordered' default enabled, `queue', default zero (no queue),
115         `queue_key' default undefined.
116         (_merge_options): Ensure `ordered' channels cannot have fatal
117         messages or backtrace output.
118         (_enqueue, _dequeue): New functions, to push messages onto a
119         Thread::Queue, and output messages from such a queue, suitably
120         weeded for duplicates in the same manner as _print_message.
121         (_print_message): If the channel is ordered and has an
122         associated queue, then enqueue messages instead of printing
123         them.
124         (setup_channel_queue, pop_channel_queue): New functions,
125         to set a Thread::Queue for channels, and to flush a queue.
126         * lib/Automake/ChannelDefs.pm: Unset channel option `ordered'
127         for fatal, automake, and verb channels.
128         * automake.in (QUEUE_MESSAGE): New global constant, used as
129         serialization key.
130         (handle_makefiles_threaded): Create message queues for each
131         input file; workers queue messages, and the master outputs them
132         ordered, using the new Channels.pm functions.
133         * tests/parallel-am.test: Also check for ordered output (in the
134         absence of --add-missing races).
135         * tests/parallel-am2.test: New test; check for ordered output of
136         warning and (regular) error messages.
137         * tests/Makefile.am: Adjust.
139         Parallel automake execution: AUTOMAKE_JOBS.
140         * lib/Automake/Config.in (perl_threads): New global.
141         * automake.in: Use it.  If the perl supports interpreter-based
142         threading, then use `threads' and `Thread::Queue'.
143         (handle_makefile, handle_makefiles_serial): New functions,
144         factored out from main.
145         (get_number_of_threads): New function, compute number of threads
146         to use, based on environment variable `AUTOMAKE_JOBS' and number
147         of independent makefiles.
148         (handle_makefiles_threaded): New function.  Spawn threads, use
149         thread queue to distribute handling the different makefiles.
150         Collect $exit_code values from threads.
151         (main): Use new functions.
152         * aclocal.in: No threads here.
153         * configure.ac: Substitute PERL_THREADS; enabled with perl >=
154         5.7.2 and when ithreads are available.
155         * bootstrap (dosubst): Likewise.
156         * Makefile.am (do_subst): Likewise.
157         * lib/Automake/Makefile.am (do_subst): Likewise.
158         * lib/Automake/ChannelDefs.pm: Use `Automake::Config' and
159         `threads'.
160         (verb): Prepend thread ID (tid) to verbose messages.
161         * lib/Automake/Channels.pm (msg): Before exiting, flush stderr,
162         needed for worker threads.
163         * lib/Automake/tests/Makefile.am (TESTS_ENVIRONMENT): Also
164         include the build tree path, so Config.pm is found.
165         * tests/parallel-am.test: New test.
166         * tests/Makefile.am: Update.
167         * doc/automake.texi (Invoking Automake): Document AUTOMAKE_JOBS.
168         * NEWS, THANKS: Update.
169         Report about long execution times by Joakim Tjernlund and others.
171 2008-10-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
173         Minor file checking optimization: set_dir_cache_file.
174         * lib/Automake/FileUtils.pm (set_dir_cache_file): New function.
175         * automake.in (require_file_internal): Instead of resetting the
176         cache when a file has been installed, simply correct the cache
177         using set_dir_cache_file.
179         No uniquifying for fatal, prog_error, and verbose messages.
180         There is no point in dropping critical messages, even if they
181         are duplicates (unlikely to happen unless they have been sent
182         as non-critical messages before), and verbose messages should
183         enable to show progress, even using duplicate statements.
184         * lib/Automake/ChannelDefs.pm (fatal, automake, verb): Set
185         `uniq_part' to `UP_NONE' when registering these channels.
187         Fix 'config.status --file=... depfiles' with new Autoconf.
188         * m4/depout.m4 (_AM_OUTPUT_DEPENDENCY_COMMANDS): Eval
189         $CONFIG_STATUS contents if we detect the quoting used by
190         Autoconf 2.62 and newer for --file=.
191         * tests/depend5.test: New test.
192         * tests/Makefile.am: Update.
193         * NEWS, THANKS: Update.
194         Report by Sam Steingold against gnulib.
196 2008-10-26  Johan Dahlin  <jdahlin@async.com.br>
198         Support for Python 3.0, drop support for pre-2.0.
199         * lib/py-compile: Do not import string; use sys.stdout.write
200         instead of print, files.split instead of string.split.
201         * m4/python.m4 (AM_PATH_PYTHON): Also look for python3 and
202         phython3.0; do not look for python1.5.  Use sys.stdout.write.
203         (AM_PYTHON_CHECK_VERSION): Do not use string; adjust to xrange
204         removal in Python 3.0, and changed semantics of map.
205         * doc/automake.texi (Python, Hard-Coded Install Paths): Update
206         Python versions mentioned in the manual, using 2.5 everywhere.
207         * NEWS, THANKS: Update.
209 2008-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
211         * lib/Automake/Channels.pm (@chain): Drop unused variable.
213         Cleanup of per-input global variables in automake.in.
214         * automake.in ($output_vars, $output_all, $output_header)
215         ($output_rules, $output_trailer): Fix comment, and sort
216         declarations in the order they will appear in the output.
217         ($all_target): Unused variable, remove.
218         (Variables not reset by &initialize_per_input.): New section,
219         clarify that %am_file_cache is not reset.
220         (initialize_per_input): Reset $am_file_name, $am_relative_dir,
221         $in_file_name, $relative_dir, and $topsrcdir to `undef' rather
222         than the empty string; $topsrcdir was not reset at all.  Sort
223         remaining variables in the same order as in the section
224         `Variables reset by &initialize_per_input'.
226         Let stderr output end up on fd 2 in testsuite.
227         * tests/defs.in (AUTOMAKE_run): Output recorded stderr on file
228         descriptor 2.
229         * tests/getopt.test: Fix erroneous multiple redirection,
230         uncovered by above change.
232 2008-10-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
234         Fix DisjConditions module to be thread-safe for perl >= 5.7.2.
235         Self-hashes of blessed references are not correctly transported
236         through thread creation.  This patch fixes that by recreating
237         the hashes upon thread creation with a CLONE special subroutine,
238         which is automatically invoked by new enough Perl versions.
239         * lib/Automake/DisjConditions.pm (CLONE): New special
240         subroutine to fix self hashes upon thread creation.
241         * lib/Automake/tests/Condition-t.pl: New, sister test to
242         Condition.pl, but spawns a new threads after each creation of a
243         new condition; skip test if perl is too old or ithreads are not
244         available.
245         * lib/Automake/tests/DisjConditions-t.pl: Likewise.
246         * lib/Automake/tests/Makefile.am (TESTS): Add them.
248 2008-10-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
250         Fix comment typos.
251         * automake.in (require_file_internal): Fix typos in comments.
252         * m4/amversion.in: Likewise.
253         * lib/Automake/Variable.pm: Likewise.
254         * lib/Automake/XFile.pm: Likewise.
256         Diagnose unsupported uses of `backname' helper function.
257         * automake.in (backname): Error out if the path points outside
258         the directory it started in.
260 2008-10-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
262         Nicer 'make dist' output.
263         * lib/am/distdir.am (distdir): Hide the complex script
264         used for computing the relative subdirs; echo the sub-make
265         command.
267 2008-10-12  William Pursell <bill.pursell@gmail.com>  (tiny patch)
269         * tests/defs.in: Fix comment typo.
271 2008-10-12  William Pursell <bill.pursell@gmail.com>
272             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
274         Fix grammar w.r.t. plurals in test reports.
275         * lib/am/check.am: Fix singular/plural forms in test reports.
276         * tests/check10.test: New test.
277         * tests/Makefile.am: Update.
279 2008-10-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
281         Require texi2dvi in tests, makeinfo may not be enough.
282         * tests/txinfo16.test: RHEL 5.2 has makeinfo and texi2dvi in
283         separate packages, so also list the latter as required, as the
284         test generates DVI and/or PDF output (through distcheck).
285         * tests/txinfo18.test: Likewise.
286         * tests/txinfo21.test: Likewise.
287         * tests/txinfo22.test: Likewise.
288         * tests/txinfo3.test: Likewise.
289         * tests/version7.test: Likewise.
290         * THANKS: Update.
291         Report by Alexander Martens.
293         Fix bootstrap to remove read-only directories right.
294         * bootstrap: Remove automake-$APIVERSION correctly.
296 2008-10-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
298         Improve test coverage of current TESTS semantics.
299         * tests/check8.test: New test, for subdir tests and setting of
300         $srcdir.
301         * tests/check9.test: New test, check @substituted@ TESTS.
302         * tests/Makefile.am: Update.
304 2008-10-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
306         * m4/minuso.m4 (AM_PROG_CC_C_O): Work around shell quoting issue
307         with AIX sh; fixes depcomp6.test failure.
308         * NEWS, THANKS: Update.
309         Report by Rainer Tammer.
311         Print captured output before failing.
312         * tests/acloca14.test, tests/acloca17.test, tests/acloca18.test,
313         tests/aclocal.test, tests/acsilent.test, tests/alpha.test,
314         tests/check4.test, tests/color.test, tests/fn99.test,
315         tests/fn99subdir.test, tests/help.test, tests/init.test,
316         tests/lisp8.test, tests/missing3.test, tests/pr220.test,
317         tests/python11.test, tests/python4.test, tests/python5.test,
318         tests/unused.test, tests/version8.test: When Exit is called
319         after a command that has stdout or stderr redirected to a file
320         for later inspection, output the file before failing the test.
322         Fix some comment typos.
323         * automake.in: Fix some comment typos.
324         * lib/Automake/Condition.pm: Likewise.
325         * lib/Automake/DisjConditions.pm: Likewise.
326         * lib/Automake/Variable.pm: Likewise.
327         * lib/Automake/tests/DisjConditions.pl: Likewise.
329 2008-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
331         * tests/aclibobj.test: Fix race condition.
333 2008-09-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
335         Fix man page creation without installed files.
336         * doc/Makefile.am (update_mans): Use wrappers in tests/
337         directory.
338         ($(srcdir)/aclocal-$(APIVERSION).1): Use versioned wrapper as
339         input program to help2man.
340         ($(srcdir)/automake-$(APIVERSION).1): Likewise.
341         Report by Eric Blake.
343 2008-09-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
345         Remove unneeded per-rule *INSTALL variables.
346         * NEWS: Update.
347         * lib/am/data.am (%DIR%%PRIMARY%_INSTALL): Remove.
348         (install-%DIR%%PRIMARY%): Adjust.
349         * lib/am/libs.am (%DIR%LIBRARIES_INSTALL): Remove.
350         (install-%DIR%LIBRARIES): Adjust.
351         * lib/am/ltlibs.am (%DIR%LTLIBRARIES_INSTALL): Remove.
352         (install-%DIR%LTLIBRARIES): Adjust.
353         * lib/am/progs.am (%DIR%PROGRAMS_INSTALL): Remove.
354         (install-%DIR%PROGRAMS): Adjust.
355         * lib/am/python.am (%DIR%PYTHON_INSTALL): Remove.
356         (install-%DIR%PYTHON): Adjust.
357         * lib/am/scripts.am (%DIR%SCRIPT_INSTALL): Remove.
358         (install-%DIR%SCRIPTS): Adjust.
360         Compactify program rules using ternary operators.
361         * lib/am/progs.am (install-%DIR%PROGRAMS): Uglify^WCompactify
362         using ternary operators `%KEY?TRUE:FALSE%'.
363         (uninstall-%DIR%PROGRAMS): Likewise.
365         New doc section about command line length limits.
366         * doc/automake.texi (Length limitations): New node.
367         (Alternative): `nobase_' is not always equivalent to several
368         base variables.
369         (Install): Mention multi-file install.
370         * NEWS: Expand on the issue, list some more user-visible
371         consequences.
373         Install nobase_lib_LTLIBRARIES before bin_PROGRAMS.
374         * automake.in (generate_makefile): If nobase_lib_LTLIBRARIES are
375         used, add an ugly hack to install them before bin_PROGRAMS, just
376         like done with lib_LTLIBRARIES.
377         * tests/ltorder.test: Add program, to expose this.
379         Do not reorder nobase ltlib installation.
380         This patch changes back the order of installation of nobase
381         LTLIBRARIES to that in which files are listed in the variables.
382         It does not fix the issue of strict dependency ordering, as
383         implied by *_LIBADD, but as before allows to steer the order by
384         listing the libraries in nobase_*_LTLIBRARIES appropriately.
385         As an advantage over the state of 1.10, multiple consecutive
386         nobase libraries to be installed in the same directory are
387         passed to libtool in one invocation.
388         * lib/am/ltlib.am (install-%DIR%LTLIBRARIES) [!%?BASE%]: Do not
389         reorder libraries upon installation.  Remove spurious empty
390         line.
391         * tests/ltorder.test: New test.
392         * tests/Makefile.am: Update.
394         Fix -rpath arguments for nobase_*_LTLIBRARIES.
395         * automake.in (handle_ltlibraries): New hash %instsubdirs to
396         track the dirname of nobase ltlibraries, and tack it onto the
397         end of the -rpath argument.  Also, fix the warning about ltlibs
398         installed in multiple locations to fit a bit better.
399         * tests/pr300-ltlib.test: Expose this bug here.
400         * tests/ltinstloc.test: New test.
401         * tests/Makefile.am: Update.
402         * NEWS: Update.
404         Man pages for automake and aclocal.
405         * configure.ac (HELP2MAN): New substitution.
406         * doc/Makefile.am (dist_man1_MANS, MAINTAINERCLEANFILES)
407         (update_mans): New macros.
408         ($(srcdir)/aclocal-$(APIVERSION).1)
409         ($(srcdir)/automake-$(APIVERSION).1): New rules, generate
410         man pages from the command line help with help2man.
411         ($(srcdir)/aclocal.1, $(srcdir)/automake.1): New rules, for
412         `.so' man page links to the versioned pages.
413         * NEWS: Update.
415 2008-09-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
417         Faster install for libtool outputs.
418         * lib/am/ltlib.am (install-%DIR%LTLIBRARIES): Invoke `libtool
419         --mode=install' with multiple libraries at once.
420         (%DIR%LTLIBRARIES_INSTALL): No need to use install_sh any more.
421         * lib/am/progs.am (install-%DIR%PROGRAMS): Likewise, remove much
422         of the libtool special-casing by invoking it for multiple
423         programs at once.
425 2008-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
427         Fast install and uninstall for SCRIPTS.
428         * lib/am/scripts.am [%?INSTALL%]: Include inst-vars.am
429         independent of `%?BASE%'.
430         (install-%DIR%SCRIPTS): Install multiple scripts at once,
431         using awk and a number of sed scripts.
432         (uninstall-%DIR%SCRIPTS): Compute the installed names, and
433         remove them, all at once.
434         (%DIR%SCRIPT_INSTALL) [!BASE]: No need to use install-sh any
435         more.
437         Multi-file install for PROGRAMS.
438         * lib/am/progs.am (install-%DIR%PROGRAMS): Allow to install
439         several programs with one install invocation, when not using
440         libtool; employs some trickery to cater for nobase_, $(EXEEXT),
441         create needed directories, libtool, while only forking a
442         constant number of times in the fast path; uses awk and sed also
443         in the default path.
444         (%DIR%PROGRAMS_INSTALL) [!BASE]: No need to use install-sh any
445         more.
447         Enhance cleaning of programs in libtool mode.
448         * lib/am/progs.am (clean-%DIR%PROGRAMS) [?LIBTOOL?]: Fork less
449         often, avoid removing programs twice if $(EXEEXT) is empty.
450         * tests/nobase-libtool.test: Also test PROGRAMS, in order to
451         exercise the code path.
452         * THANKS: Update.
453         Report by Toralf Förster.
455 2008-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
456             Jim Meyering <jim@meyering.net>
458         Reliable multi-file install for man pages.
459         * lib/am/mans.am: Include inst-vars.am.
460         (install-man%SECTION%): Gather lists of man pages to install,
461         and install up to 40 of those that do not have to be renamed
462         at once.  Fail if installation of any file fails.
463         (uninstall-man%SECTION%): Rewrite to use fewer sed invocations.
464         * doc/automake.texi (Man pages): Hint the user to the fast path.
465         Indentation fix.
466         * tests/instmany-mans.test: New test.
467         * tests/Makefile.am: Update.
469 2008-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
471         Faster `make uninstall'; fast install for JAVA.
472         * lib/am/inst-vars.am (am__nobase_strip_setup)
473         (am__nobase_strip): New macros.
474         (am__nobase_list): Factorize.
475         * lib/am/data.am (uninstall-%DIR%%PRIMARY%): Use them, for a
476         constant number of forks per uninstall.
477         * lib/am/libs.am (uninstall-%DIR%LIBRARIES): Likewise.
478         * lib/am/lisp.am (uninstall-%DIR%LISP): Likewise.
479         * lib/am/progs.am (uninstall-%DIR%PROGRAMS): Fast uninstall.
480         * lib/am/python.am (uninstall-%DIR%PYTHON): Fast uninstall.
481         Echo all `rm' commands that are are executed.
482         * lib/am/java.am (install-%DIR%JAVA, uninstall-%DIR%JAVA):
483         Fast install and uninstall.
485         AIX ranlib dislikes spaces in the argument.
486         * lib/am/libs.am (install-%DIR%LIBRARIES): Fix instsh.test
487         failure on AIX due to ranlib and whitespace in the directory.
488         * THANKS: Update.
489         Report by John F Trudeau.
491         Fail upon install or ranlib failure, part two.
492         * lib/am/java.am (install-%DIR%JAVA): Fail upon install failure.
493         * lib/am/lisp.am (install-%DIR%LISP): Likewise.
494         * lib/am/ltlib.am (install-%DIR%LTLIBRARIES): Likewise.
495         * lib/am/libs.am (install-%DIR%LIBRARIES): Likewise, for
496         `install' as well as `ranlib'.
497         * lib/am/progs.am (install-%DIR%PROGRAMS): If `install' fails,
498         return its exit failure, not 1.
499         * tests/instfail.test: New test, for PROGRAMS (without libtool),
500         LIBRARIES, including nobase variants.
501         * tests/instfail-info.test: Likewise, for TEXINFOS.
502         * tests/instfail-java.test: Likewise, for JAVA.
503         * tests/instfail-libtool.test: Likewise, for PROGRAMS (with
504         libtool) and LTLIBRARIES.
505         * tests/Makefile.am: Adjust.
507         Exit upon `install' failure, part one.
508         * lib/am/data.am (install-%DIR%%PRIMARY%): Exit if any install
509         command fails.
510         * lib/am/python.am (install-%DIR%PYTHON): Likewise.
511         * lib/am/scripts.am (install-%DIR%SCRIPTS): Likewise.
512         * lib/am/texinfos.am (install-dvi-am, install-html-am)
513         (install-info-am:, install-pdf-am): Likewise.
514         * tests/instmany.test: New test, for SCRIPTS, DATA, and HEADERS.
515         * tests/instmany-python.test: New test, for PYTHON.
516         * tests/Makefile.am: Adjust.
518 2008-09-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
520         Fix multi-file installation for files in srcdir.
521         For files that can live in the build tree or the source tree,
522         we have to expect that prepending `$(srcdir)/' to each name
523         will let the install command line exceed length limitations.
524         Thus use a new macro, $(am__base_list), to install in chunks
525         of 40 files, similar to what we do for nobase_* files.  There,
526         lower the limit to 40, too.
527         * lib/am/inst-vars.am (am__install_max): Lower to 40.
528         (am__base_list): New macro.
529         * lib/am/data.am (install-%DIR%%PRIMARY%) [%?BASE%]: Use it.
530         * lib/am/texinfos.am (install-dvi-am, install-html-am)
531         (install-info-am, install-pdf-am, install-ps-am): Likewise.
533 2008-09-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
535         Use `Exit' instead of `exit' in test suite.
536         Cater to Bourne shells like Solaris sh that do not pass the
537         `exit' argument as status to the cleanup trap.
538         * Makefile.am (maintainer-check): Check that here-documents
539         use only `END' or `EOF' as delimiter in the test suite.
540         Check that, outside of here-documents, the tests do not use
541         `exit' with an argument, but use `Exit' instead.
542         * tests/defs.in (Exit): New function.  Use it throughout,
543         starting with the introduction of the exit trap.
544         * tests/aclibobj.test, tests/acloca10.test, tests/acloca11.test,
545         tests/acloca12.test, tests/acloca13.test, tests/acloca14.test,
546         tests/acloca15.test, tests/acloca16.test, tests/acloca17.test,
547         tests/acloca18.test, tests/acloca19.test, tests/acloca20.test,
548         tests/acloca21.test, tests/acloca22.test, tests/aclocal.test,
549         tests/aclocal3.test, tests/aclocal4.test, tests/aclocal5.test,
550         tests/aclocal6.test, tests/aclocal7.test, tests/aclocal8.test,
551         tests/aclocal9.test, tests/acoutbs.test, tests/acoutbs2.test,
552         tests/acoutnoq.test, tests/acoutpt.test, tests/acoutpt2.test,
553         tests/acoutqnl.test, tests/acsilent.test, tests/acsubst.test,
554         tests/acsubst2.test, tests/all.test, tests/alloca.test,
555         tests/alloca2.test, tests/alpha.test, tests/alpha2.test,
556         tests/amassign.test, tests/ammissing.test, tests/amopt.test,
557         tests/amsubst.test, tests/ansi.test, tests/ansi10.test,
558         tests/ansi2.test, tests/ansi3.test, tests/ansi3b.test,
559         tests/ansi4.test, tests/ansi5.test, tests/ansi6.test,
560         tests/ansi7.test, tests/ansi8.test, tests/ansi9.test (main),
561         tests/ar.test, tests/ar2.test, tests/asm.test, tests/asm2.test,
562         tests/asm3.test, tests/automake.test, tests/auxdir.test,
563         tests/auxdir2.test, tests/auxdir3.test, tests/auxdir4.test,
564         tests/backsl.test, tests/backsl2.test, tests/backsl3.test,
565         tests/backsl4.test, tests/badline.test, tests/badopt.test,
566         tests/badprog.test, tests/block.test, tests/bsource.test,
567         tests/canon-name.test, tests/canon.test, tests/canon2.test,
568         tests/canon3.test, tests/canon4.test, tests/canon5.test,
569         tests/ccnoco.test, tests/ccnoco2.test, tests/check.test,
570         tests/check2.test, tests/check3.test, tests/check4.test,
571         tests/check5.test, tests/check6.test, tests/check7.test,
572         tests/checkall.test, tests/clean.test, tests/clean2.test,
573         tests/colneq.test, tests/colneq2.test, tests/colon.test,
574         tests/colon2.test, tests/colon3.test, tests/colon4.test,
575         tests/colon5.test, tests/colon6.test, tests/colon7.test,
576         tests/color.test (test_no_color), tests/commen10.test,
577         tests/comment.test, tests/comment2.test, tests/comment3.test,
578         tests/comment4.test, tests/comment5.test, tests/comment6.test,
579         tests/comment7.test, tests/comment8.test, tests/comment9.test,
580         tests/compile.test, tests/compile_f90_c_cxx.test,
581         tests/compile_f_c_cxx.test, tests/cond.test, tests/cond10.test,
582         tests/cond11.test, tests/cond13.test, tests/cond14.test,
583         tests/cond15.test, tests/cond16.test, tests/cond17.test,
584         tests/cond18.test, tests/cond19.test, tests/cond2.test,
585         tests/cond20.test, tests/cond21.test, tests/cond22.test,
586         tests/cond27.test, tests/cond3.test, tests/cond37.test,
587         tests/cond39.test, tests/cond4.test, tests/cond40.test,
588         tests/cond41.test, tests/cond5.test, tests/cond6.test,
589         tests/cond7.test (AC_INIT), tests/cond8.test, tests/cond9.test,
590         tests/condd.test, tests/condhook.test, tests/condinc.test,
591         tests/condinc2.test, tests/condlib.test, tests/condman.test,
592         tests/condman2.test, tests/conf2.test, tests/confdeps.test,
593         tests/conff.test, tests/conff2.test, tests/confh.test,
594         tests/confh4.test, tests/confh5.test, tests/config.test,
595         tests/confincl.test, tests/conflnk.test, tests/conflnk2.test,
596         tests/conflnk3.test, tests/conflnk4.test, tests/confsub.test,
597         tests/confvar.test, tests/confvar2.test, tests/copy.test,
598         tests/ctarget1.test, tests/cxx.test, tests/cxx2.test,
599         tests/cxxansi.test, tests/cxxcpp.test, tests/cxxlibobj.test,
600         tests/cxxlink.test, tests/cxxnoc.test, tests/cxxo.test,
601         tests/cygwin32.test, tests/dash.test, tests/defs.in (else),
602         tests/defun.test, tests/defun2.test, tests/dejagnu.test,
603         tests/dejagnu2.test, tests/dejagnu3.test, tests/dejagnu4.test,
604         tests/dejagnu5.test, tests/dejagnu6.test, tests/dejagnu7.test,
605         tests/depacl2.test, tests/depcomp.test, tests/depcomp2.test,
606         tests/depcomp3.test, tests/depcomp4.test, tests/depcomp5.test,
607         tests/depcomp6.test, tests/depcomp7.test, tests/depdist.test,
608         tests/depend.test, tests/depend2.test, tests/depend3.test,
609         tests/depend4.test, tests/destdir.test, tests/dirforbid.test,
610         tests/dirlist.test, tests/dirlist2.test, tests/discover.test,
611         tests/distcom2.test, tests/distcom3.test, tests/distcom4.test,
612         tests/distcom5.test, tests/distcom6.test, tests/distcom7.test,
613         tests/distdir.test, tests/distname.test, tests/dollar.test,
614         tests/double.test, tests/dup2.test, tests/else.test,
615         tests/empty.test, tests/empty2.test, tests/empty3.test,
616         tests/empty4.test, tests/exdir.test, tests/exdir2.test,
617         tests/exdir3.test, tests/exeext.test, tests/exeext2.test,
618         tests/exeext3.test, tests/exeext4.test, tests/exsource.test,
619         tests/ext.test, tests/extra.test, tests/extra2.test,
620         tests/extra3.test, tests/extra4.test, tests/extra5.test,
621         tests/extra6.test, tests/extra7.test, tests/f90only.test,
622         tests/flibs.test, tests/fn99.test, tests/fn99subdir.test,
623         tests/fnoc.test, tests/fo.test, tests/fonly.test,
624         tests/fort1.test, tests/fort2.test, tests/fort4.test,
625         tests/fort5.test, tests/fortdep.test, tests/fpinst2.test,
626         tests/fpinstall.test, tests/gcj.test, tests/gcj2.test,
627         tests/gcj3.test, tests/gcj4.test, tests/gcj5.test,
628         tests/getopt.test, tests/gettext.test, tests/gettext2.test,
629         tests/gettext3.test, tests/gnits.test, tests/gnits2.test (main),
630         tests/gnits3.test, tests/gnumake.test, tests/gnuwarn.test,
631         tests/gnuwarn2.test, tests/header.test, tests/help.test,
632         tests/hosts.test, tests/implicit.test, tests/include.test,
633         tests/include2.test, tests/info.test, tests/init.test,
634         tests/insh2.test, tests/install2.test, tests/installdir.test,
635         tests/instdat.test, tests/instdat2.test, tests/instexec.test,
636         tests/insthook.test, tests/instman.test, tests/instman2.test,
637         tests/instsh.test, tests/instsh2.test, tests/instsh3.test,
638         tests/instspc.test, tests/interp.test, tests/interp2.test,
639         tests/java.test, tests/java2.test, tests/java3.test,
640         tests/javaprim.test, tests/javasubst.test, tests/ldadd.test,
641         tests/ldflags.test, tests/lex.test, tests/lex2.test,
642         tests/lex3.test, tests/lex4.test, tests/lex5.test (main),
643         tests/libexec.test, tests/libobj10.test, tests/libobj11.test,
644         tests/libobj12.test, tests/libobj13.test, tests/libobj2.test,
645         tests/libobj3.test, tests/libobj4.test, tests/libobj5.test,
646         tests/libobj7.test, tests/libobj8.test, tests/library.test,
647         tests/library2.test, tests/library3.test, tests/libtoo10.test,
648         tests/libtool.test, tests/libtool2.test, tests/libtool3.test
649         (main), tests/libtool4.test, tests/libtool5.test,
650         tests/libtool6.test, tests/libtool7.test, tests/libtool8.test,
651         tests/libtool9.test (main), tests/license.test,
652         tests/link_c_cxx.test, tests/link_dist.test,
653         tests/link_f90_only.test, tests/link_f_only.test,
654         tests/link_fc.test, tests/link_fccxx.test, tests/link_fcxx.test,
655         tests/lisp2.test, tests/lisp3.test, tests/lisp4.test,
656         tests/lisp5.test, tests/lisp6.test, tests/lisp7.test,
657         tests/lisp8.test, tests/listval.test, tests/location.test,
658         tests/longlin2.test, tests/longline.test, tests/ltcond.test,
659         tests/ltcond2.test, tests/ltconv.test, tests/ltdeps.test,
660         tests/ltlibobjs.test, tests/ltlibsrc.test, tests/lzma.test,
661         tests/maintclean.test, tests/make.test, tests/makej.test,
662         tests/makevars.test, tests/man.test, tests/man2.test,
663         tests/man3.test, tests/mclean.test, tests/mdate.test,
664         tests/mdate2.test, tests/mdate3.test, tests/mdate4.test,
665         tests/mdate5.test, tests/missing.test, tests/missing2.test,
666         tests/missing3.test, tests/missing4.test, tests/missing5.test,
667         tests/missing6.test, tests/mkinst2.test, tests/mkinst3.test,
668         tests/mkinstall.test, tests/mmode.test, tests/mmodely.test,
669         tests/multlib.test, tests/nobase-libtool.test,
670         tests/nobase-python.test, tests/nobase.test, tests/nodef.test,
671         tests/nodef2.test, tests/nodep.test, tests/nodep2.test,
672         tests/nodepcomp.test, tests/nodist.test, tests/nodist2.test,
673         tests/nodist3.test, tests/nogzip.test, tests/nogzip2.test,
674         tests/noinst.test, tests/noinstdir.test, tests/nolink.test,
675         tests/nostdinc.test, tests/notrans.test, tests/number.test,
676         tests/objc.test, tests/objc2.test, tests/obsolete.test,
677         tests/order.test, tests/outdir.test, tests/output-order.test,
678         tests/output.test, tests/output10.test, tests/output11.test,
679         tests/output12.test, tests/output13.test, tests/output2.test,
680         tests/output3.test, tests/output4.test, tests/output5.test,
681         tests/output6.test, tests/output7.test, tests/output8.test,
682         tests/output9.test, tests/overrid.test, tests/parse.test,
683         tests/pluseq.test, tests/pluseq10.test, tests/pluseq2.test,
684         tests/pluseq3.test, tests/pluseq4.test, tests/pluseq5.test,
685         tests/pluseq6.test, tests/pluseq7.test, tests/pluseq8.test,
686         tests/pluseq9.test, tests/postproc.test, tests/ppf77.test,
687         tests/pr2.test, tests/pr204.test, tests/pr211.test,
688         tests/pr220.test, tests/pr224.test, tests/pr229.test,
689         tests/pr243.test, tests/pr266.test, tests/pr279-2.test,
690         tests/pr279.test, tests/pr287.test, tests/pr300-lib.test,
691         tests/pr300-ltlib.test, tests/pr300-prog.test, tests/pr307.test,
692         tests/pr401.test, tests/pr401b.test, tests/pr401c.test,
693         tests/pr72.test, tests/pr87.test, tests/pr9.test,
694         tests/prefix.test, tests/primary.test, tests/primary2.test,
695         tests/primary3.test, tests/proginst.test, tests/python.test,
696         tests/python10.test, tests/python11.test, tests/python12.test,
697         tests/python2.test, tests/python3.test, tests/python4.test,
698         tests/python5.test, tests/python6.test, tests/python7.test,
699         tests/python8.test, tests/python9.test, tests/recurs.test,
700         tests/recurs2.test, tests/regex.test, tests/remake.test,
701         tests/remake2.test, tests/remake3.test, tests/remake4.test,
702         tests/remake5.test, tests/remake6.test, tests/remake7.test,
703         tests/req.test, tests/reqd.test, tests/reqd2.test,
704         tests/rulepat.test, tests/scripts.test, tests/seenc.test,
705         tests/sinclude.test, tests/space.test, tests/specflg.test,
706         tests/specflg2.test, tests/specflg3.test, tests/specflg6.test,
707         tests/specflg7.test, tests/specflg8.test, tests/specflg9.test,
708         tests/spell.test, tests/spell2.test, tests/spell3.test,
709         tests/spelling.test, tests/spy.test, tests/srcsub.test,
710         tests/srcsub2.test, tests/stamph2.test, tests/stdinc.test,
711         tests/stdlib.test, tests/stdlib2.test, tests/strip.test,
712         tests/subcond.test, tests/subcond2.test, tests/subcond3.test,
713         tests/subdir.test, tests/subdir2.test, tests/subdir3.test,
714         tests/subdir4.test, tests/subdir5.test, tests/subdir6.test,
715         tests/subdir7.test, tests/subdir8.test, tests/subdir9.test,
716         tests/subdirbuiltsources.test, tests/subobj.test,
717         tests/subobj10.test, tests/subobj2.test, tests/subobj3.test,
718         tests/subobj4.test, tests/subobj5.test, tests/subobj6.test,
719         tests/subobj7.test, tests/subobj8.test, tests/subobj9.test,
720         tests/subobjname.test, tests/subpkg.test, tests/subpkg2.test,
721         tests/subpkg3.test, tests/subst.test, tests/subst2.test,
722         tests/subst3.test, tests/substre2.test, tests/substref.test,
723         tests/substtarg.test, tests/suffix.test, tests/suffix10.test,
724         tests/suffix11.test, tests/suffix12.test, tests/suffix2.test,
725         tests/suffix3.test, tests/suffix4.test, tests/suffix5.test,
726         tests/suffix6.test, tests/suffix7.test, tests/suffix8.test,
727         tests/suffix9.test, tests/symlink.test, tests/symlink2.test,
728         tests/symlink3.test, tests/syntax.test, tests/tags.test,
729         tests/tagsub.test, tests/tar.test, tests/tar2.test,
730         tests/tar3.test, tests/target-cflags.test,
731         tests/targetclash.test, tests/transform.test, tests/txinfo.test,
732         tests/txinfo10.test, tests/txinfo13.test, tests/txinfo16.test,
733         tests/txinfo17.test, tests/txinfo18.test, tests/txinfo19.test,
734         tests/txinfo2.test, tests/txinfo20.test, tests/txinfo21.test,
735         tests/txinfo22.test, tests/txinfo23.test, tests/txinfo24.test,
736         tests/txinfo25.test, tests/txinfo26.test, tests/txinfo27.test,
737         tests/txinfo28.test, tests/txinfo29.test, tests/txinfo3.test,
738         tests/txinfo30.test, tests/txinfo31.test, tests/txinfo4.test,
739         tests/txinfo5.test, tests/txinfo6.test, tests/txinfo7.test,
740         tests/txinfo8.test, tests/txinfo9.test, tests/unused.test,
741         tests/upc.test, tests/upc2.test, tests/upc3.test,
742         tests/vars.test, tests/vars3.test, tests/vartar.test,
743         tests/version.test, tests/version2.test, tests/version3.test,
744         tests/version4.test, tests/version6.test, tests/version7.test,
745         tests/version8.test, tests/vpath.test, tests/vtexi.test,
746         tests/vtexi2.test, tests/warnopts.test, tests/werror.test,
747         tests/werror2.test, tests/whoami.test, tests/xsource.test,
748         tests/yacc.test, tests/yacc2.test, tests/yacc3.test,
749         tests/yacc4.test, tests/yacc5.test, tests/yacc6.test,
750         tests/yacc7.test, tests/yacc8.test, tests/yaccpp.test,
751         tests/yaccvpath.test: Use `Exit $arg' instead of `exit $arg'
752         throughout, except inside created files.
754 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
756         Avoid Heisenbug with verbose testing on HP-UX.
757         * tests/output-order.test: Remove spurious redirection line
758         from output for comparison.
760         For all possibly-relative subdirs, use $(am__cd).
761         Up to now, $(am__cd) was only used within backquotes, to avoid
762         extraneous output.  This patch also uses it for every `cd' to a
763         relative subdir, to prevent CDPATH from entering an unwanted
764         directory.
765         * Makefile.am (maintainer-check): Fix current check for
766         $(am__cd) within backquotes a bit.  Add new check for `cd' to a
767         relative subdir.
768         * automake.in (handle_tags, handle_configure):  Adjust rules.
769         * lib/am/ansi2knr.am: Likewise.
770         * lib/am/configure.am: Likewise.
771         * lib/am/distdir.am: Likewise.
772         * lib/am/remake-hdr.am: Likewise.
773         * lib/am/subdirs.am: Likewise.
774         * lib/am/tags.am: Likewise.
775         * lib/am/texibuild.am: Likewise.
777         Fix nobase-python.test for BSD make.
778         * tests/nobase-python.test: Listing a dependency to be found
779         via VPATH search explicitly, without the path, as a target,
780         will turn off VPATH search for FreeBSD make.  So move the
781         creation of the files outside of the Makefile.
783 2008-09-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
785         Implement AM_MAINTAINER_MODE([DEFAULT-MODE]).
786         * m4/maintainer.m4 (AM_MAINTAINER_MODE): Allow for an optional
787         first argument of `enable' or `disable', setting the default.
788         * doc/automake.texi (Optional, maintainer-mode): Document.
789         * tests/mmode.test: New test.
790         * tests/Makefile.am: Adjust.
791         * NEWS: Update.
792         Suggestion by Vincent Lefevre.
794 2008-08-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
796         Copyright year updates.
797         * lib/am/header-vars.am: Update copyright years.
798         * lib/am/remake-hdr.am: Likewise.
799         * lib/am/tags.am: Likewise.
801 2008-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
803         * THANKS: Use Cyrillic name instead of ASCII transcription.
805 2008-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
807         Fix rebuilding of removed subdir/Makefile.in files.
808         * lib/am/configure.am (%MAKEFILE-IN%) [?!TOPDIR_P?]: If
809         subdir/Makefile.in was removed, am--refresh would not update
810         it.  Fix up for it by running the per-directory rebuild rule.
811         * tests/remake6.test, tests/remake7.test: New tests.
812         * tests/Makefile.am: Adjust.
813         * NEWS, THANKS: Update.
814         Report and initial patch by Ilya N. Golubev.
816 2008-08-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
818         * tests/notrans.test: Use multiple man files of each type.
820         Fix maintainer-check failures.
821         * doc/automake.texi (Conditionals): Drop TAB.
822         * tests/missing6.test: Use 'rm -f'.
824 2008-08-19  Reuben Thomas <rrt@sc3d.org>  (tiny patch)
826         * doc/automake.texi (Flag Variables Ordering, Per-Object Flags):
827         Fix grammaros.
829 2008-08-02  Karl Berry  <karl@freefriends.org>
831         * lib/gnupload: Provide also a simple example.
833 2008-06-25  Thien-Thi Nguyen  <ttn@gnuvola.org>
835         Small doc fix.
836         * doc/automake.texi (Public Macros): Close open paren.
838 2008-06-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
840         Introduce macro $(am__mv) to facilitate 'libtool --dry-run'.
841         * lib/am/depend.am (am__mv): New macro, set to 'mv -f'.
842         * lib/am/depend2.am: Use throughout to move the temporary
843         depfile *.Tpo to its final destination *.Po.
845 2008-06-18  Rafael Espindola  <espindola@google.com>
847         * lib/config-ml.in: don't handle --enable-shared and --enable-static.
849 2008-06-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
851         * lib/am/inst-vars.am (am__install_max): New variable.
852         (am__nobase_list): Use it.
854         Fix conditional rules competing with config.status rules.
855         * automake.in (handle_configure): Teach targets about the
856         conditional config.status rule.
857         * tests/cond39.test: Adjust test to expose this.
859         For AC_CONFIG_LINKS(X,X), do not clean X in a non-VPATH build.
860         * automake.in (rewrite_inputs_into_dependencies): Do distribute
861         inputs where input and output name are equal.  This relies on
862         the assumption that it only happens with AC_CONFIG_LINKS.
863         (handle_configure) <CONFIG_CLEAN_VPATH_FILES>: New variable, for
864         links where source and dest are equal.
865         * lib/am/clean.am (distclean-generic): Remove, if build tree not
866         equal source tree.
867         * tests/conflnk4.test: New test.
868         * tests/Makefile.am: Adjust.
869         * NEWS: Update.
871 2008-06-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
873         * doc/automake.texi (Extending): Fix ambivalent wording.
874         Report by Ben Pfaff.
876 2008-06-04  Karl Berry  <karl@freefriends.org>
878         * doc/automake.texi (Install, Hard-Coded Install Paths):  Fix
879         punctuation and markup.
880         (Extending): Improve wording and clarify order semantics of
881         *-local and *-hook targets.
883 2008-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
885         * doc/automake.texi (Extending): Fix grammar.
886         Report by Karl Berry.
888 2008-05-13  Stepan Kasal  <skasal@redhat.com>
890         Fix typos.
891         * doc/automake.texi (Timeline): Reported by Reuben Thomas.
892         * lib/am/remake-hdr.am: A few typos in comments.
894 2008-04-10  Eric Blake  <ebb9@byu.net>
896         Prefer a released version of autoconf.
897         * NEWS: Bump requirement to autoconf 2.62.
898         * m4/init.m4 (AM_INIT_AUTOMAKE): Likewise.
899         * configure.ac: Likewise.
900         (AC_PREREQ): Remove check, done by AM_INIT_AUTOMAKE instead.
902         AC_AUTOCONF_VERSION can inadvertently expand to a macro name.
903         * m4/amversion.in (AM_SET_CURRENT_AUTOMAKE_VERSION): Use proper
904         m4 quoting.
905         * aclocal.in (write_aclocal): Likewise.
906         * tests/missing6.test: New test.
907         * tests/Makefile.am (TESTS): Run it.
908         * tests/missing4.test: Adjust.
910 2008-04-02  Eric Blake  <ebb9@byu.net>
912         Make gnupload friendlier for VPATH usage.
913         * lib/gnupload: Allow uploads from separate directory.
915 2008-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
917         Implement conditional AC_CONFIG_FILES: AM_COND_IF.
918         * automake.in (%ac_config_files_condition): New.
919         (scan_autoconf_config_files): Record condition if any.
920         (scan_autoconf_traces): Trace _AM_COND_IF, _AM_COND_ELSE,
921         _AM_COND_ENDIF, updating @cond_stack as appropriate.
922         (handle_configure): Prefix config.status rule with condition.
923         Check that m4 quotation is done consistently.
924         * m4/cond.m4 (AM_CONDITION): Define `_AM_COND_VALUE_name'
925         with `name' being the name of the condition, to its shell
926         condition.
927         * m4/cond-if.m4: New file.
928         (_AM_COND_IF, _AM_COND_ELSE, _AM_COND_ENDIF): New trace helpers.
929         (AM_COND_IF): New macro, implements conditionals.
930         * m4/Makefile.am: Adjust.
931         * doc/automake.texi (Requirements, Optional, Conditionals):
932         Document AM_COND_IF.
933         * NEWS: Update.
934         * tests/cond39.test, tests/cond40.test, tests/cond41.test,
935         tests/cond42.test, tests/cond43.test: New tests.
936         * tests/Makefile.am: Adjust.
938 2008-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
940         * doc/automake.texi (@ovar): New macro, from autoconf.texi.
941         (Python): Use it.
942         Suggestion by Eric Blake.
944 2008-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
946         * lib/texinfo.tex: Sync from upstream.
948 2008-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
950         * doc/automake.texi (Requirements, Linking, Extending):
951         Fix underfull and overfull lines, fix wording a bit.
953         * lib/config.guess, lib/config.sub, lib/texinfo.tex: Sync from
954         upstream.
956         * Makefile.am (WGET_SV_GIT_CF): New.
957         (fetch): Pull config.guess and config.sub from git repo now.
959         * lib/Autom4te/FileUtils.pm (handle_exec_errors): New argument
960         $hint, show if the executing program does not exist.
961         (xsystem_hint): New function, like xsystem but allows to pass
962         a hint.
964 2008-03-11  Peter Breitenlohner  <peb@mppmu.mpg.de>
966         Implement the `notrans_' prefix for untransformed manpages.
967         * automake.in (handle_man_pages), lib/am/mans.am: Implement
968         notrans_ prefix for MANS primary and rework dependencies for
969         install-man%SECTION%; use only vars defined in Makefile.am.
970         * doc/automake.texi (Renaming, Uniform, Man pages):
971         Document notrans_ prefix.
972         * NEWS: Update.
973         * tests/notrans.test: New test.
974         * tests/Makefile.am: Update.
976         * automake.in (handle_man_pages): Reindent, for next patch.
978 2008-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
980         Use `install' with multiple files at once for some primaries.
981         With nobase targets, at most 50 files are installed at once,
982         to avoid quadratic string concatenation and line length limits.
983         This isn't yet done with base targets.  One hope is that there,
984         the typical file name length is lower.  If this turns out to be
985         a problem, it should be revisited.
987         * lib/am/inst-vars.am (am__nobase_list): New helper macro for
988         installation of multiple nobase files at once: sorts and lists
989         files keyed by their target directory.
990         * lib/am/data.am (%DIR%%PRIMARY%_INSTALL): No need to set it to
991         $(install_sh_DATA) any more, not even for nobase targets.
992         (install-%DIR%%PRIMARY%): Split base and nobase cases.
993         Rewrite to pass lists of files which all go in the same
994         directory to `install'.  In the nobase case, make use of
995         $(am__nobase_list) and $(MKDIR_P) each directory before
996         populating it.  Take care of files in source and build trees,
997         and avoid creating directories where no files are to be
998         installed.
999         * lib/am/libs.am (%DIR%LIBRARIES_INSTALL): Likewise.
1000         (install-%DIR%LIBRARIES): Likewise.
1001         * lib/am/python.am (%DIR%PYTHON_INSTALL): Likewise.
1002         (install-%DIR%PYTHON): Likewise.  Also take care to keep note of
1003         a list for byte compilation after installation.
1004         * lib/am/texinfos.am (install-dvi-am, install-html-am)
1005         (install-info-am, install-pdf-am, install-ps-am): Use file lists
1006         to install multiple files at once.
1007         * NEWS: Update.
1008         Suggested by Akim Demaille.
1010 2008-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1012         Require unreleased Autoconf for fixed AC_PROG_INSTALL.
1013         * m4/init.m4 (AM_INIT_AUTOMAKE): Bump AC_PREREQ to 2.61-341,
1014         regenerate files.
1015         * configure.ac: Also require Autoconf 2.61-341, to catch
1016         failure early and provide a sensible error message.
1018         Drop usage of obsolete macros AC_EXEEXT and AC_OBJEXT.
1019         * tests/ansi4.test: Drop AC_OBJEXT and AC_EXEEXT.
1020         * tests/ansi6.test: Likewise.
1021         * tests/ansi7.test: Likewise.
1022         * tests/condlib.test: Likewise.
1023         * tests/cygwin32.test: Likewise.
1024         * tests/exeext2.test: Likewise.
1025         * tests/libobj11.test: Likewise.
1026         * tests/library.test: Likewise.
1027         * tests/txinfo5.test: Likewise.
1029 2008-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1031         Skip instsh3.test if `touch -t' does not work.
1032         * tests/instsh3.test: Test for `touch -t', fails with Solaris
1033         /usr/ucb/touch.
1034         * THANKS: Update.
1035         Report by Younes Younes.
1037 2008-02-27  Reuben Thomas  <rrt@sc3d.org>
1039         * doc/automake.texi (wildcards): Improve "Why doesn't Automake
1040         support wildcards" node's English and sense.
1042 2008-02-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1044         * lib/am/check.am (check-TESTS): In the case patterns for
1045         XFAILed tests, add literal bracket expression for matching
1046         whitespace, as NetBSD 4.99.54 ksh does not understand a
1047         bracket expression resulting from variable expansion.
1048         * README: Explain how to run the Automake test suite, including
1049         setting MAKE to test gmake.
1050         Report by Patrick Welche.
1052 2008-02-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1054         PR automake/498
1055         * m4/options.m4 (_AM_SET_OPTIONS): Use m4_foreach_w instead of
1056         obsolete AC_FOREACH.
1057         Report by NightStrike and gurganbl@rose-hulman.edu.
1059 2008-02-17  Colin Watson  <cjwatson@debian.org>  (tiny change)
1061         * lib/am/tags.am (ID): Fix typo in workaround for old awk.
1063 2008-02-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1065         * doc/.gitignore: Ignore files generated by `make ps pdf html'.
1067 2008-02-05  Reuben Thomas  <rrt@sc3d.org>
1069         * doc/automake.texi (CVS): configure.ac will appear newer, not
1070         older, than configure.  Use `lexical' instead of `alphabetical'.
1072 2008-01-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1074         * tests/man3.test: Avoid `make VAR=value'.
1076         * tests/subst3.test: New test.
1077         * tests/Makefile.am: Update.
1079         * tests/instsh2.test: Split off testing of `install-sh -C' ...
1080         * tests/instsh3.test: ... to this new test, requiring non-root.
1081         * tests/Makefile.am: Adjust.
1082         * THANKS: Update.
1083         Report by Theodoros V. Kalamatianos.
1085 2008-01-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1087         * tests/nobase.test: Extend test to generated files.
1089         * tests/nobase-python.test: New test, nobase for python files.
1090         * tests/Makefile.am: Update.
1092         * tests/nobase.test: Split off libtool part of nobase.test for
1093         increased test exposure, to ...
1094         * tests/nobase-libtool.test: ... this new test.
1095         * tests/Makefile.am: Update.
1097 2008-01-23  Eric Blake  <ebb9@byu.net>
1099         Fix color.test when using BSD grep.
1100         * tests/color.test: Ensure that grep can handle non-printing
1101         characters.
1103 2008-01-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1105         * tests/lisp3.test: Fix typo.
1107 2008-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1109         * lib/am/mans.am (install-man%SECTION%): Prefer generated manpages
1110         over distributed ones.
1111         Report and patch by Peter Breitenlohner.
1112         * tests/man3.test: New test.
1113         * tests/Makefile.am: Update.
1115 2008-01-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1117         * tests/tar.test: Skip if no appropriate tar was found.
1119 2008-01-19  NightStrike  <nightstrike@gmail.com>
1121         * doc/automake.texi (Dependency Tracking): Fix typo.
1123 2008-01-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1125         * lib/config-ml.in, lib/config.guess, lib/config.sub,
1126         lib/symlink-tree: Sync from upstream.
1128         * Makefile.am (WGET_SV_CVS): Renamed from WGETSGO.
1129         (WGET_SV_GIT_AC, WGET_SV_GIT_GL, WGET_GCC): New.
1130         (fetch): Update to match current upstream locations.
1132 2008-01-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1134         * doc/automake.texi (DESTDIR, Built sources example): Fix wording.
1135         * THANKS: Update.
1136         Reports and suggestions by William Pursell and nightstrike@gmail.com.
1138 2008-01-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1140         Do not fail if `autoupdate' is not present.
1141         * tests/obsolete.test: Check for presence of autoupdate.  Apparently,
1142         FreeBSD may install the other Autoconf programs without a version
1143         suffix but not autoupdate.
1145         Fix Heisenbug trying to unset a sometimes-not-set variable.
1146         * tests/check5.test: Do not error out upon `unset TESTS' due to
1147         `set -e', in case TESTS was not set.
1148         * tests/color.test: Likewise.
1150         * doc/automake.texi (amhello Explained): Fix odd sentence.
1151         Report by nightstrike@gmail.com.
1153 2008-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1155         * m4/init.m4 (_AC_AM_CONFIG_HEADER_HOOK): Rewrite to be more
1156         resistant to different quoting styles of $1.
1158         Clarify texinfo.tex and TEXINFO_TEX semantics.
1159         * doc/automake.texi (Texinfo): Clarify that by default,
1160         texinfo.tex is searched in the same directory as the Makefile.am
1161         that needs it.  Clarify that TEXINFO_TEX has precedence over
1162         AC_CONFIG_AUX_DIR, and that it requires the user to install and
1163         distribute it.
1164         * tests/txinfo22.test: Ensure TEXINFO_TEX is not distributed.
1165         * THANKS: Update.
1166         Reports by Dilyan Palauzov and Roumen Petrov.
1168 2008-01-11  Bruno Haible  <bruno@clisp.org>
1169             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1171         * tests/output-order.test: New test, for the stable output fix.
1172         * tests/Makefile.am: Update.
1174 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1176         * Makefile.am (dist-hook): New, ensure world-executable tests.
1177         * THANKS: Update.
1178         Report by Arto C. Nirkko.
1180         * tests/acloca20.test: Use `--force' with the second $AUTOCONF,
1181         to force update on fast machines where both autoconf invocations
1182         happen within the same second.
1183         Report by Greg Schafer.
1185 2008-01-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1187         * automake.in (scan_autoconf_files): Sort loop over
1188         %required_aux_file, for stable verbose output.
1189         Report by Bruno Haible.
1191         * lib/config.guess, lib/config.sub, lib/texinfo.tex: Sync from
1192         upstream.
1194         * tests/ccnoco.test (Mycomp): Use a tighter match for -c -o,
1195         to avoid matching for example `LDFLAGS=-Wl,--sort-common'.
1196         * THANKS: Update.
1197         Report and analysis by Carsten Lohrke and Mike Frysinger.
1199 2008-01-07  Stepan Kasal  <skasal@redhat.com>
1201         * automake.in (handle_texinfo_helper, handle_lib_objects): Fix
1202         typos in comments.
1204 2008-01-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1206         Bump copyright years.
1207         * aclocal.in (write_aclocal, version): Likewise.
1208         * automake.in ($gen_copyright, version): Likewise.
1209         * doc/automake.texi: Likewise.
1211 2007-12-18  Jim Meyering  <meyering@redhat.com>
1213         * lib/gnupload (GPG): Don't use an absolute path.
1214         This reverts part of the 2004-01-28 change.
1216 2007-12-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1218         * lib/Automake/FileUtils.pm (open_quote): New function.
1219         (update_file, contents): Use it.
1221         Reword the copyright notices to match what's suggested in GPLv3.
1223 2007-12-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1225         * tests/defs.in: Quote $srcdir, $PATH; skip libtool and gettext
1226         tests if the absolute source or build tree name contain whitespace.
1228         Modify some tests for absolute trees containing whitespace.
1229         * tests/missing.test: Use "./missing" instead of "`pwd`/missing".
1230         * tests/missing2.test: Likewise.
1231         * tests/mmodely.test: Add `pwd` to $PATH instead of absolute
1232         references to myyacc.sh and mylex.sh.
1233         * tests/multlib.test: Likewise for mycc.
1234         * tests/txinfo26.test: Skip if `pwd` contains whitespace, as
1235         an absolute --srcdir does not work there.
1237         * INSTALL, lib/INSTALL, lib/config-ml.in, lib/config.guess,
1238         lib/config.sub, lib/texinfo.tex: Sync from upstream.
1240         Fix the distdir target to cope with spaces in absolute file names.
1241         * lib/am/distdir.am: Quote all instances of $(distdir) and
1242         $(top_distdir).  They could contain white space, coming from
1243         a toplevel package bootstrapped with an older Automake version.
1244         (am__relativize): New macro, taken from gnulib code, written by
1245         Bruno Haible.
1246         (distdir): Use it to compute relative paths to distdir and
1247         top_distdir for enclosed subpackages.
1248         Also, quote $(distuninstallcheck_dir).
1249         * lib/am/texinfos.am: Likewise, quote $(distdir).
1251 2007-11-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1253         Quote file names in tests that can be absolute.
1254         * tests/auxdir.test, tests/check3.test, tests/check4.test,
1255         tests/compile.test, tests/cond33.test, tests/condhook.test,
1256         tests/distdir.test, tests/dollar.test, tests/empty.test,
1257         tests/gnits2.test, tests/gnits3.test, tests/include2.test,
1258         tests/insthook.test, tests/java.test, tests/libtool7.test,
1259         tests/lisp4.test, tests/lisp5.test, tests/lisp6.test,
1260         tests/ltcond.test, tests/ltconv.test, tests/mkinst2.test,
1261         tests/multlib.test, tests/nobase.test, tests/nodist2.test,
1262         tests/obsolete.test, tests/pr287.test, tests/pr300-lib.test,
1263         tests/pr300-ltlib.test, tests/pr300-prog.test, tests/python10.test,
1264         tests/python3.test, tests/strip.test, tests/transform.test,
1265         tests/txinfo13.test, tests/txinfo19.test, tests/txinfo22.test,
1266         tests/txinfo23.test, tests/txinfo26.test, tests/txinfo27.test:
1267         Likewise.
1269         Quote @abs_top_builddir@ and @abs_top_srcdir@.
1270         * tests/aclocal.in: Likewise.
1271         * tests/automake.in: Likewise.
1273         Fix TAGS and GTAGS rules to cope with whitespace in `pwd`.
1274         * lib/am/tags.am (TAGS): Use positional parameters to avoid
1275         the need to quote absolute file names.
1276         (GTAGS): Quote absolute file name.
1277         (CTAGS): Simplify, dropping unused variable `$tags'.
1279 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1281         * lib/am/ltlib.am (uninstall-%DIR%LTLIBRARIES): Fix another instance
1282         of am__strip_dir.  Fixes nobase and pr300-ltlib test failures.
1284 2007-11-25  Akim Demaille  <akim@lrde.epita.fr>
1286         Several *-local in a rule do not work.
1287         * tests/all.test: Check this case.
1288         Use set -e.
1289         * tests/Makefile.am (XFAIL_TESTS): Add it.
1291 2007-11-25  Akim Demaille  <akim@lrde.epita.fr>
1293         Fix uses of am__strip_dir.
1294         * lib/am/libs.am, lib/am/ltlib.am: Catch up with the change of
1295         definition of am__strip_dir.
1297 2007-11-25  Akim Demaille  <akim@lrde.epita.fr>
1299         Define and use register_action.
1300         * lib/Automake/Rule.pm: Fix a few typos in the doc.
1301         (&rule): Use || to simplify the code.
1302         (&register_action): New.
1303         Export it.
1304         * automake.in (&handle_factored_dependencies, &file_contents_internal):
1305         Use it.
1307 2007-11-25  Akim Demaille  <akim@lrde.epita.fr>
1309         * bootstrap: Fix typos on redirections.
1311 2007-11-24  Akim Demaille  <akim@lrde.epita.fr>
1313         Skip comments and empty lines in dirlist in the tests.
1314         * defs.in (extra_includes): Skip comments and empty lines in dirlist.
1316 2007-11-24  Akim Demaille  <akim@lrde.epita.fr>
1318         Ternary operator in lib/am files.
1319         * automake.in (&transform_token): New.
1320         (&transform): Use it.
1321         Support %KEY?TRUE:FALSE%.
1322         (&make_paragraphs): Adjust the regexp to call %transform.
1323         * lib/am/data.am, lib/am/libs.am, lib/am/lisp.am, lib/am/ltlib.am,
1324         * lib/am/progs.am, lib/am/python.am, lib/am/scripts.am:
1325         Use %KEY?TRUE:FALSE%.
1326         * lib/am/inst-vars.am (am__strip_dir): Assign the result to f
1327         to be more alike am__vpath_adj.
1328         Adjust dependencies.
1330 2007-11-24  Akim Demaille  <demaille@gostai.com>
1332         * automake.in: Normalize white spaces.
1334 2007-11-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1336         * configure.ac (ACLOCAL, AUTOMAKE): Fix quoting for rebuilding
1337         rules, if the absolute build directory name contains white space.
1339 2007-11-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1341         * aclocal.in (trace_used_macros): Quote input files.
1343         * lib/ylwrap: Cope with white space in `PROGRAM' and `pwd`.
1345         * lib/am/tags.am (ID, TAGS, CTAGS): Make awk scripts portable again.
1346         (CTAGS): Drop unneeded variable `here'.
1348 2007-11-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1350         * tests/output13.test: New test.
1351         * tests/Makefile.am: Adjust.
1352         Prompted by report from Bruno Haible in
1353         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00479.html>.
1355         Fix signal handling in aclocal.
1356         * aclocal.in (unlink_tmp): If invoked by a signal, note so
1357         in verbose mode.  Reinstall default signal handler and reraise,
1358         to transport the interrupt information.
1360 2007-11-13  Bob Proulx  <bob@proulx.com>
1362         Fix color test failure on dumb (and other) terminals.
1363         * tests/color.test: Set TERM to `ansi'.
1365 2007-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1367         Avoid spurious test failure with `make check TESTS=check5.test'.
1368         * tests/check5.test: unset TESTS.
1370         Fix maintainer-check failure.
1371         * tests/color.test: unset TESTS, use `make -e' rather than
1372         `make MACRO=val'.
1374 2007-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1376         * configure.ac (AM_INIT_AUTOMAKE): Require version 1.10a.
1378         * automake.in (handle_tests): Remove debugging leftover.
1380         Run each test in a process-private subdirectory.
1381         * tests/defs.in: Employ a trap to clean up at the end of the
1382         test in case the test succeeded.  This needs to be revisited
1383         because we would like to keep the output of XPASSing tests.
1384         Also, note when we were interrupted by a signal.  Code taken
1385         from Autoconf's _AC_INIT_PREPARE.
1386         If $keep_testdirs is set, keep them even for successful tests.
1387         * tests/Makefile.am (check-clean-local): New target.  Remove all
1388         tests subdirs, but also make them writable first.  The latter
1389         was already needed without per-test subdirs.
1390         (distclean-local): Depend upon check-clean-local.
1391         * tests/Makefile.in: Regenerate.
1392         * tests/.cvsignore, tests/.gitignore: Adjust.
1394         Fix default includes ordering to be `-I. -I$(srcdir) ...' again.
1395         * automake.in (handle_compile): Put -I$(srcdir) before include
1396         paths for config headers, as was done before Automake 1.10, but
1397         keep uniquified list without multiple adjacent spaces.
1398         * doc/automake.texi (Program variables): List include paths
1399         in order.
1400         * NEWS: Mention 1.10 regression.
1401         * tests/stdinc.test: New test.
1402         * tests/Makefile.am: Adjust.
1403         * THANKS: Update.
1404         Report by Kent Boortz.
1406 2007-11-08  Akim Demaille  <akim@lrde.epita.fr>
1407             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1408             Bob Proulx  <bob@proulx.com>
1410         Implement colorized test output.
1411         * automake.in (handle_tests): Set COLOR depending on `color-tests'.
1412         * configure.ac (AM_INIT_AUTOMAKE): Use `color-tests'.
1413         * doc/automake.texi (Tests, Options): Document test results,
1414         document new option, document AM_COLOR_TESTS.
1415         * lib/Automake/Options.pm (_process_option_list): Handle it.
1416         * lib/am/check.am (am__tty_colors): New variable.  Enable colored
1417         output if TERM is not dumb and depending on AM_COLOR_TESTS and
1418         whether stdout is connected to a terminal.
1419         (check-TESTS): Use am__tty_colors.
1420         * NEWS: Mention color-tests.
1421         * tests/color.test: New test.
1422         * tests/Makefile.am: Adjust.
1424 2007-11-08  NightStrike  <nightstrike@gmail.com>  (tiny change)
1426         For PR automake/526:
1427         * doc/automake.texi (Basic Installation): Fix typo.
1429 2007-10-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1431         Accommodate for new macro AC_AUTOCONF_VERSION.
1432         * aclocal.in (write_aclocal): Use AC_AUTOCONF_VERSION rather
1433         than m4_PACKAGE_VERSION.  Define the former if not defined.
1434         * m4/amversion.in (AM_SET_CURRENT_AUTOMAKE_VERSION): Likewise.
1435         * tests/missing4.test: Use AC_AUTOCONF_VERSION.
1437 2007-10-29  Bruno Haible  <bruno@clisp.org>
1439         * doc/automake.texi (Program variables): Clarify that
1440         Automake does not put DEFAULT_INCLUDES in AM_CPPFLAGS, but
1441         passes it directly to compilation commands.
1443 2007-10-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1445         Move to git as primary source repository.
1446         * Makefile.am (git-dist, git-release): Renamed and adjusted from ...
1447         (cvs-dist, cvs-release): ... these.
1448         (git-diff): New target, taken and adjusted from cvs-diff.
1449         * Makefile.in: Regenerate.
1450         * bootstrap: Adjust.
1451         * NEWS: Announce change.
1452         * doc/automake.texi (General Operation): cvs-dist is git-dist now.
1453         (Timeline): Mention change.
1455 2007-10-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1457         * automake.in: Treat extension .sx also like preprocessed
1458         assembler (.S), following GCC.
1459         * NEWS: Update.
1460         * doc/automake.texi (Assembly Support): Adjust.
1461         * tests/asm3.test: New test.
1462         * tests/Makefile.am: Update.
1464 2007-10-09  Jim Meyering  <meyering@redhat.com>
1466         Add lzma compression support.
1467         * NEWS: Mention it.
1468         * automake.in (handle_dist): Recognize dist-lzma.
1469         (make_paragraphs): Map LZMA to dist-lzma.
1470         * doc/automake.texi (Dist): Add dist-lzma.
1471         (Options): Likewise.
1472         * lib/Automake/Options.pm (_process_option_list):
1473         (dist dist-all): Add command to create an lzma-compressed tarball.
1474         (distcheck): Handle lzma-compressed tarballs just like the others.
1475         * tests/defs.in: Test for lzma, too.
1476         * tests/lzma.test: New file, based on nogzip.test.
1477         * tests/Makefile.am (TESTS): Add lzma.test.
1478         Suggestion from Karl Berry.
1480 2007-09-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1482         * automake.in (TARGET_PATTERN): Allow leading digit.
1483         * tests/exeext3.test: Adjust to expose this.
1484         Report by Claudio Fontana and Laurence Finston.
1486 2007-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1488         * tests/defs.in (required): For gcj, check whether `gcj -v'
1489         works, to avoid broken installations without libgcj.spec.
1490         Export $GCJ.
1491         * tests/gcj4.test: Setting GCJ not needed any more.
1492         * THANKS: Update.
1493         Report by Jesse Chisholm.
1495 2007-08-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1497         * lib/config-ml.in, lib/config.guess, lib/config.sub,
1498         lib/symlink-tree, lib/texinfo.tex: New upstream versions.
1500 2007-08-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1502         * doc/automake.texi (gettext): Fix link to gettext manual.
1504 2007-08-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1506         In ChangeLog files, use more-permissive notice rather than GPL,
1507         as per usual GNU standards these days.
1509 2007-08-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1511         * automake.in (handle_programs): Also clean .libs/_libs
1512         directory for _PROGRAMS.
1513         * tests/libtoo10.test: New test.
1514         * tests/Makefile.am: Update.
1515         * THANKS: Update.
1516         Report by Guillermo Ontañón.
1518 2007-08-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1520         * configure.ac: Actually require version 2.60 in the test for
1521         Autoconf, and recommend it in the error messages.
1522         * THANKS: Update.
1523         Report by Robert Swafford.
1525 2007-07-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1527         * doc/automake.texi (VPATH Builds): Fix wording.
1528         Report by Reuben Thomas.
1530 2007-07-22  Noah Misch  <noah@cs.caltech.edu>
1532         * tests/subst.test: Move the AC_SUBST into a macro definition.
1533         Avoids an error from CVS Autoconf.
1534         * THANKS: Update.
1535         Report by Benoit Sigoure.
1537 2007-07-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1538             Alexandre Duret-Lutz  <adl@gnu.org>
1540         * lib/am/configure.am (%?REGEN-ACLOCAL-M4%): New target
1541         $(am__aclocal_m4_deps) without any dependencies, to avoid the
1542         "deleted .m4 file" problem.
1543         * tests/acloca22.test: New test.
1544         * tests/Makefile.am: Update.
1545         * NEWS: Update.
1547 2007-07-22  Francesco Salvestrini  <salvestrini@gmail.com>
1548             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1550         * lib/am/ltlib.am (install-%DIR%LTLIBRARIES)
1551         (uninstall-%DIR%LTLIBRARIES): Use $(AM_LIBTOOLFLAGS) and
1552         $(LIBTOOLFLAGS).
1553         * lib/am/progs.am (install-%DIR%PROGRAMS)
1554         (uninstall-%DIR%PROGRAMS): Likewise.
1555         * tests/libtool7.test: Update test for `install' and
1556         `uninstall' cases.
1557         * NEWS, THANKS: Update.
1559 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1561         * doc/automake.texi: Remove Front-Cover and Back-Cover Texts,
1562         this manual is not printed by the FSF.
1564 2007-07-16  Alexandre Duret-Lutz  <adl@gnu.org>
1566         * NEWS: Clarify that COPYING files are not updated.
1568 2007-07-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1570         * doc/automake.texi: New Back-Cover Text.
1571         Report by Karl Berry.
1573 2007-07-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1575         * aclocal.in (version): Fix output to match GCS requirements.
1576         * automake.in (version): Likewise.
1577         Report by Eric Blake.
1579         * COPYING, lib/COPYING: Update to GPLv3.  All uses changed.
1580         * NEWS: Update.
1582 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1584         * lib/gnupload: Fix shell portability issues with for loops.
1585         Report by Karl Berry.
1587 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
1588             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1590         * aclocal.in (write_aclocal): Warn about autoconf
1591         incompatibilities instead of making them fatal.
1592         * tests/missing4.test: Adjust.
1593         * NEWS: Update.
1594         Problem reported by Bruno Haible in
1595         <http://lists.gnu.org/archive/html/bug-automake/2007-06/msg00010.html>.
1597 2007-05-03  Stepan Kasal  <kasal@ucw.cz>
1599         * doc/automake.texi, lib/Automake/Rule.pm: Fix typos.
1600         * automake.in: Likewise.
1601         (am_primary_prefixes): Keep the intentional typo there.
1603 2007-04-25  Eric Blake  <ebb9@byu.net>
1605         * doc/stamp-vti: Remove generated file from revision control.
1606         * doc/version.texi: Likewise.
1608 2007-04-23  Reuben Thomas  <rrt@sc3d.org>  (tiny change)
1610         * doc/automake.texi (Python): Fix typo.
1612 2007-03-30  Eric Blake  <ebb9@byu.net>
1613             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1615         * lib/mdate-sh (ls_command): Use -n when available to avoid
1616         problems with spaces in user/group names.
1617         * tests/mdate5.test: New test.
1618         * tests/Makefile.am: Adjust.
1620 2007-03-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1622         * automake.in (handle_tests): Rewrite XFAIL_TESTS just like
1623         TESTS, appending $(EXEEXT), so that matching continues to work
1624         on w32.
1625         * NEWS: Mention this.
1626         * doc/automake.texi (EXEEXT, Extending): Update.
1627         * tests/check7.test: New test.
1628         * tests/Makefile.am: Adjust.
1629         Bug report by Ed Hartnett.
1631 2007-03-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1633         * m4/depout.m4 (_AM_OUTPUT_DEPENDENCY_COMMANDS): Again search
1634         the whole file, but use sed to reduce the line length.
1635         Fixes 1.10 regression.  Report by David Byron.
1636         * THANKS, NEWS: Update.
1638 2007-03-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1640         * lib/depcomp (aix): Rewrite depmode in the spirit of the tru64
1641         one.  Fixes failure to catch dependencies with libtool and xlc
1642         in case of enable_static=no (which is the default on AIX without
1643         runtimelinking).
1644         * tests/depcomp7.test: Run test once with --disable-shared and
1645         once with --disable-static, to expose failure systematically.
1646         * NEWS: Update.
1648 2007-03-29  Stepan Kasal  <kasal@ucw.cz>
1649             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1651         * automake.in (handle_LIBOBJS_or_ALLOCA): Fix the error message.
1652         * tests/pr401.test: Update to expose the error.
1653         * tests/pr401b.test: Likewise.
1654         * tests/pr401c.test: Likewise.
1656 2007-03-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1658         * automake.in (scan_autoconf_config_files): Warn about leading
1659         `./' in config file names.
1660         * tests/canon-name.test: New test.
1661         * tests/Makefile.am: Update.
1662         * THANKS: Update.
1663         Suggestion by Claudio Fontana.
1665         * tests/yacc6.test: Add the generated headers to `BUILT_SOURCES'
1666         as documented in the manual.  Fixes parallel make failure.
1667         Report by Dieter Jurzitza.
1668         * THANKS: Update.
1670         * ChangeLog, TODO, tests/exdir3.test: Fix copyright notice.
1672         * TODO: Kill a couple of outdated items.
1673         * tests/exdir3.test: New test.
1674         * tests/Makefile.am: Update.
1676 2007-01-27 Bruno Haible  <bruno@clisp.org>
1678         * doc/automake.texi (Multiple Outputs): Fix the multiple outputs
1679         with locking example.
1681 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1683         * doc/automake.texi (Subpackages): Fix ambiguous wording.
1684         Report and suggestions by Reuben Thomas.
1685         * THANKS: Update.
1687 2007-01-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1689         * tests/defs.in (is_newest): Cope with multiple newer files.
1690         * NEWS: mention `install-sh -C'.
1692 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
1694         * lib/install-sh (initialize_posix_glob): New var.
1695         Use it instead of setting posix_glob inline.
1696         (posix_glob): Use '?'/''/: instead of ''/yes/no, for convenience.
1697         (cmpprog, CMPPROG): New vars, since we use cmp rather than the diff
1698         of Akim's patch.
1699         Use LC_ALL before invoking 'ls' when we depend on its output format.
1700         Don't use awk; just use the shell's builtin features.
1701         Clean up $dsttmp if -C detects no installation is needed.
1702         * tests/defs.in (is_newest): Renamed from is_younger; the new
1703         name is more accurate.  All uses changed.
1704         (old_timestamp): New var.
1705         * tests/instsh2.test: Rewrite to avoid the need for sleeping.
1707 2006-12-25  Akim Demaille  <akim@epita.fr>
1709         * lib/install-sh: Implement install-sh -C.
1710         (This patch is the remaining part of the patch proposed in
1711         <http://lists.gnu.org/archive/html/automake-patches/2006-10/msg00077.html>.)
1712         (usage): Document it.
1713         (copy_on_change): New var.
1714         * tests/defs.in (is_younger): New function.
1715         * tests/instsh2.test: Check install-sh -C.
1717 2006-12-24  Paul Eggert  <eggert@cs.ucla.edu>
1719         * lib/install-sh: Fix typo in previous patch for handling --.
1720         Use more-consistent style for ';;'.
1721         Prefer || to if-then-else-:.
1722         * tests/install2.test: Rework to avoid set -e problems.
1724 2006-12-24  Akim Demaille  <akim@epita.fr>
1726         Simplify install-sh and its test.  This shouldn't change any behavior.
1727         (This patch is a subset of the patch proposed in
1728         <http://lists.gnu.org/archive/html/automake-patches/2006-10/msg00077.html>.)
1729         * lib/install-sh (usage): Use usual GNU style.
1730         (dstarg): Rename as...
1731         (dst_arg): this for consistency.
1732         Simplify quoting of assignments.
1733         Sort them.
1734         Don't use '\' to continue commands: && suffices.
1735         Remove useless "continue" in the argument processing,
1736         and factor the shifts.
1737         * tests/defs.in: Some improvements to make it set -e clean.
1738         Use the traditional ":" trick to protect loops from being empty.
1739         Remove an empty straightforward piece of code prepared to define
1740         additional variables.
1741         Use test instead of [], for consistency.
1742         * tests/install2.test: Use set -e, to simplify code.
1744 2006-12-20  Reuben Thomas  <rrt@sc3d.org>  (tiny change)
1746         * doc/automake.texi: Fix typo.
1748 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1750         * doc/Makefile.am: Use $(MAKE) $(AM_MAKEFLAGS) for building
1751         amhello, to prevent gmake from invoking make with MAKEFLAGS
1752         it does not understand.
1753         Report by Patrick Welche.
1755         * lib/gnupload: Revert last change.  Add pointer to upload
1756         instructions of the GNU Maintenance Instructions.
1757         Suggestion by Karl Berry.
1759 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1761         * lib/gnupload: Add missing 'gnu' to example URL.
1762         Report by Karl Berry.
1764 2006-10-28  Bobby Jack <bobbykjack@yahoo.co.uk>  (tiny change)
1766         * doc/automake.texi (amhello Explained): autoconf creates
1767         configure, not configure.ac.
1768         * THANKS: Update.
1770 2006-10-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1772         * doc/automake.texi (Dist, Dependency Tracking Evolution):
1773         Fix some typos.
1774         * lib/Automake/Condition.pm: Likewise.
1775         * lib/Automake/DisjConditions.pm: Likewise.
1776         * lib/Automake/ItemDef.pm: Likewise.
1777         * lib/Automake/Options.pm: Likewise.
1778         * lib/Automake/Rule.pm: Likewise.
1779         * lib/Automake/VarDef.pm: Likewise.
1780         * lib/Automake/Variable.pm: Likewise.
1781         * lib/Automake/Wrap.pm: Likewise.
1782         * lib/Automake/XFile.pm: Likewise.
1783         * m4/substnot.m4: Likewise.
1785 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
1787         * lib/gnupload: Update to version 1.1 of directive file.
1789 2006-10-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1791         * lib/am/depend2.am (%SOURCEFLAG%): New substitution, goes
1792         right before the expanded source file name.
1793         * automake.in (%sourceflags): New global: per-extension flag
1794         to denote that the next compiler argument is the source file.
1795         (scan_autoconf_traces): Trace AC_FC_SRCEXT; initialize
1796         %sourceflags accordingly.
1797         (handle_single_transform): Store source file extension in...
1798         (%lang_specific_files): ...this and...
1799         (handle_languages): ...adjust here.  Pass flag in SOURCEFLAG.
1800         * doc/automake.texi (Optional): Add AC_FC_SRCEXT.
1801         (Fortran 9x Support): Update.
1802         * tests/fort2.test: New test.
1803         * tests/Makefile.am: Adjust.
1804         * NEWS, THANKS: Update.
1805         Suggested by Steven G. Johnson.
1807         For PR automake/480.
1808         * automake.in (lang_f77_rewrite, lang_fc_rewrite)
1809         (lang_ppfc_rewrite, lang_ppf77_rewrite, lang_ratfor_rewrite):
1810         return `lang_sub_obj' to support subdir-object mode for the
1811         Fortran dialects.
1812         * tests/fort4.test, tests/fort5.test: New tests.
1813         * tests/Makefile.am: Update.
1814         * NEWS, THANKS: Update.
1815         Report by Davyd Madeley and Shannon L. Brown.
1817         * lib/am/header-vars.am (pkglibexecdir): New variable.
1818         * automake.in (%standard_prefix): Add it.
1819         * doc/automake.texi (Uniform): Document it.
1820         (Program Sources): Adjust.
1821         * NEWS: Update.
1822         * tests/libexec.test: New test.
1823         * tests/Makefile.am: Update.
1824         Suggested by Eric Blake.
1826 2006-10-15  Alexandre Duret-Lutz  <adl@gnu.org>
1828         * lib/gnupload: Update to version 1.1 of directive file.
1830         * configure.ac, NEWS: Bump version to 1.10a.
1832         * configure.ac, NEWS: Bump version to 1.10.
1833         * doc/automake.texi (Releases): Update for 1.10.
1835         * lib/config.sub, lib/texinfo.tex: New upstream versions.
1837         * lib/am/depend2.am: Typo.
1838         * lib/depcomp (scriptversion): Bump, to account for recent changes.
1840         * doc/automake.texi (Examples): Introduce the example, and point
1841         to Hello World.
1842         (Hello): Remove this obsolete node.
1844 2006-10-15  Hans Ulrich Niedermann  <hun@n-dimensional.de>
1845             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1847         For PR automake/507:
1848         * lib/am/distdir.am (distdir): filename-length-max check is not
1849         done in sub-packages.
1850         * doc/automake.texi (Options): Document this.
1851         * tests/fn99subdir.test: New test.
1852         * tests/Makefile.am: Update.
1853         * THANKS: Update.
1855 2006-10-14  Alfred M. Szmidt  <ams@gnu.org>  (tiny change)
1857         * doc/automake.texi (Third-Party Makefiles): Fix typo.
1858         * THANKS: Update.
1860 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1862         * aclocal.in (write_aclocal): Improve warning for mismatched
1863         Autoconf version.
1865         * automake.in: For preprocessed assembler, add `$(DEFS)
1866         $(DEFAULT_INCLUDES) $(INCLUDES)' to the compile rule.
1867         * doc/automake.texi (Assembly Support): Update.
1868         * NEWS: Update.
1869         Suggested by Thomas Schwinge and Ralf Corsepius.
1871         For PR automake/492.
1872         * automake.in (output_flag): Set to `-o' for Assembler and
1873         preprocessed Assembler, assuming that all understand `-c -o'.
1874         * THANKS, NEWS: Update.
1875         * tests/subobj10.test: New test.
1876         * tests/Makefile.am: Update.
1877         Report by Thomas Schwinge.
1879         * automake.in (%_macro_for_cond): New variable.
1880         (cond_stack_if): Use it for better error message about
1881         missing dependency tracking conditionals.
1882         * tests/asm2.test: New test, modeled after asm.test.
1883         * tests/Makefile.am: Adjust.
1884         Report by Ralf Corsepius.
1886         * doc/automake.texi (Options): `no-dependencies' is similar
1887         to `--ignore-deps', not `--include-deps'.
1888         * m4/as.m4 (AM_PROG_AS): If `no-dependencies', do not invoke
1889         _AM_DEPENDENCIES.
1890         * tests/nodep2.test: New test.
1891         * tests/Makefile.am: Adjust.
1893         * automake.in (handle_LIBOBJS_or_ALLOCA): If we are in the
1894         LIBOBJDIR, then we should not add a DEPDIR prefix.
1895         * tests/pr401.test: Update test.
1896         * tests/pr401b.test: Likewise.
1897         * tests/pr401c.test: Likewise.
1898         Report by Jim Meyering and Eric Blake.
1900         * lib/depcomp (gcc3): Put dependency extraction flags before the
1901         `-c' flag, so they appear at the same position as in %FASTDEP%
1902         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
1903         which ignores unknown options only after the first non-option.
1904         Bug report against M4 by Nelson H. F. Beebe.
1906 2006-10-14  Bruno Haible  <bruno@clisp.org>
1907             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1909         * automake.in ($seen_gettext_intl): New variable.
1910         (handle_gettext): Consider it.
1911         (scan_autoconf_traces): Add AM_GNU_GETTEXT_INTL_SUBDIR to the list.
1912         Set $seen_gettext_intl when it is seen.
1913         * doc/automake.texi (gettext, Optional): Update.
1914         * tests/gettext3.test: New test.
1915         * tests/Makefile.am: Update.
1917 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
1919         * lib/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
1920         which incorrectly sets the mode of an existing destination
1921         directory.  In some cases the unpatched install-sh could do the
1922         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
1923         system.  We hope this is rare in practice, but it's clearly worth
1924         fixing.  Problem reported by Alex Unleashed in
1925         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
1926         Also, don't bother to check for -m bugs unless we're using -m;
1927         suggested by Stepan Kasal.
1929 2006-10-14  Geoffrey Keating  <geoffk@apple.com> (tiny change)
1931         * m4/multi.m4: Non-default multilibs may be cross compilation.
1933 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1935         * automake.in: Fix some typos in comments.
1936         * lib/Automake/Variable.pm: Likewise.
1938 2006-10-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1940         * automake.in (handle_compile): Use subst, for maintainer-check.
1942 2006-10-09  Andreas Köhler  <andi5.py@gmx.net>  (tiny change)
1944         For PR automake/505:
1945         * lib/am/configure.am (am__CONFIG_DISTCLEAN_FILES):
1946         Fix typo: `config.status.lineno', not `configure.status.lineno'.
1948 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1950         * NEWS: Mention that `install-sh' needs executable permissions.
1951         * tests/nobase.test: Adjust.
1952         Report by Patrick Welche.
1954 2006-09-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1956         * lib/am/check.am (check-TESTS): Fix matching of XFAIL_TESTS
1957         against currently running test for the first and last element
1958         of $(TESTS): add spacing so Solaris make does VPATH expansion
1959         on these words, too.
1960         * tests/check6.test: Update.
1962 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
1964         For PR automake/501:
1965         * lib/am/depend2.am (?GENERIC?%EXT%.o, ?!GENERIC?%OBJ%):
1966         Abbreviate output a bit by not bothering to quote the .Po file
1967         name (the quoting doesn't suffice in general anyway), and by not
1968         bothering to remove junk .Tpo files (as they'll be removed later).
1969         This also lets 'make' run faster by avoiding a subshell.
1971 2006-08-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1973         * automake.in: Fortran 77 and Fortran should require variables
1974         F77 resp. FC to be defined, and suggest the respective Autoconf
1975         macros otherwise.
1976         * tests/fort1.test: New test.
1977         * tests/Makefile.am: Update.
1979         * tests/ext.test: Add extensions f95, F90, F95.
1981 2006-08-30  Alexandre Duret-Lutz  <adl@gnu.org>
1983         For PR automake/500:
1984         * automake.in (handle_compile) <$default_includes>: Do not output
1985         the same -I twice.  Use @am__isrc@ instead of ` -I$(srcdir)'.
1986         * m4/init.m4: Define am__isrc as ` -I$(srcdir)' only in
1987         non-VPATH builds since we always have `-I.'.
1988         * tests/subpkg.test: Make sure config headers are found in VPATH
1989         and non-VPATH builds.
1991 2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1993         * doc/automake.texi, lib/Automake/Rule.pm: Fix some typos.
1994         * NEWS: Likewise.  Clarify that only one LIBOBJDIR is supported.
1996 2006-08-23  Alexandre Duret-Lutz  <adl@gnu.org>
1998         * lib/Automake/ChannelDefs.pm (usage): Mention that -Wportability
1999         is enabled by default with gnu and gnits strictness.
2000         Report from Bruno Haible.
2002 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
2004         * NEWS: Mark de-ANSI-fication as being obsolete.
2005         * doc/automake.texi: Likewise.
2007 2006-08-21  Stepan Kasal  <kasal@ucw.cz>
2009         * Makefile.am, THANKS: Fix typos.
2011 2006-08-20  Alexandre Duret-Lutz  <adl@gnu.org>
2013         * NEWS, configure.ac: Bump version to 1.9c.
2015         * NEWS, configure.ac: Bump version to 1.9b.
2017         * Makefile.am (maintainer-check): Check for mkdir_p in automake.in
2018         too.
2019         * automake.in (require_build_directory): Use MKDIR_P, not mkdir_p.
2021         * m4/mkdirp.m4: Typo in previous patch.
2023         * Makefile.am (maintainer-check): Fine-tune the "Unescaped @"
2024         check so it doesn't complain about the '@ 's in node "Standard
2025         Directory Variables".
2027         * INSTALL, lib/INSTALL, lib/texinfo.tex, lib/config.sub: New
2028         upstream versions.
2030         * m4/mkdirp.m4 (AM_PROG_MKDIR_P): Prefix mkdir_p with
2031         $(top_builddir)/ if it is a relative directory.
2033 2006-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
2035         * lib/am/lex.am, lib/am/yacc.am: Drop the inline rules, always use
2036         ylwrap.  Suggested by Akim Demaille long ago, to ease maintenance.
2037         * automake.in (handle_languages): Do not define MORE-THAN-ONE.
2038         (yacc_lex_finish_helper, lang_yacc_finish, lang_lex_finish): Always
2039         require ylwrap.
2040         * doc/automake.texi (Auxiliary Programs, Yacc and Lex): Update the
2041         documentation of ylwrap.
2042         * tests/lex.test, tests/lex4.test, tests/mmodely.test,
2043         tests/yacc.test, tests/yacc2.test, tests/yacc3.test,
2044         tests/yaccpp.test: Adjust.
2046         * doc/automake.texi (Releases): Update statistics until 1.9.6.
2048         * Makefile.am (maintainer-check): Check for mkdir_p.
2049         * automake.texi (Obsolete macros): Document AM_PROG_MKDIR_P.
2050         * lib/am/data.am, lib/am/distdir.am, lib/am/install.am,
2051         lib/am/java.am, lib/am/libs.am, lib/am/lisp.am, lib/am/ltlib.am,
2052         lib/am/mans.am, lib/am/progs.am, lib/am/python.am,
2053         lib/am/scripts.am, lib/am/texinfos.am: Use MKDIR_P instead of mkdir_p.
2054         * m4/mkdirp.m4 (AM_PROG_MKDIR_P): Define mkdir_p using $MKDIR_P, not
2055         as '$(MKDIR_P)', otherwise it will break `Makefile.in's that use
2056         mkdir_p without defining MKDIR_P.
2057         * tests/distdir.test, tests/instman.test, tests/txinfo21.test:
2058         Adjust.
2060         * Makefile.am (SUBDIRS): Build lib first, for lib/Automake/Config.pm.
2061         * configure.ac (ACLOCAL): Use --acdir=m4 in addition to
2062         -I m4.  Running aclocal during the rebuild rules will fail
2063         if the default acdir does not exist.
2065         * NEWS, configure.ac, m4/init.m4, m4/lispdir.m4, m4/mkdirp.m4:
2066         Require Autoconf 2.60 instead of some intermediate development
2067         version.
2069         * doc/automake.texi (Standard Directory Variables): Fix multitable
2070         width.
2071         (Autotools Introduction): Fix @uref usage.
2073 2006-08-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2075         * doc/automake.texi: Fix some typos in the introduction,
2076         adjust some spacing; spell `GNU Build System' consistently.
2077         (menu): Unify node naming.
2078         (Standard Directory Variables): Clarify that this list is not
2079         exhaustive.
2080         (DESTDIR): Fix example.
2082 2006-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
2084         * doc/automake.texi (Autotools Introduction) New chapter.
2085         Thanks to Ben Pfaff and Ralf Wildenhues for comments.
2086         (Auxiliary Programs, Install, Dist, Third-Party Makefiles)
2087         (distcleancheck): More cross references.
2088         * doc/amhello/configure.ac, doc/amhello/README,
2089         doc/amhello/Makefile.am, doc/amhello/src/Makefile.am,
2090         doc/amhello/src/main.c: New files.
2091         * doc/Makefile.am (dist_noinst_DATA): Distribute them.
2092         ($(srcdir)/amhello-1.0.tar.gz): New rule.
2093         (dist_doc_DATA): Install amhello-1.0.tar.gz.
2094         * Makefile.am (SUBDIRS): Update comment.
2096 2006-08-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2098         * doc/automake.texi: Fix some typos.
2100 2006-08-14  Jonathan Higa <jthiga@gmail.com>
2102         * automake.in: Register "Unified Parallel C" as language.
2103         (lang_upc_rewrite): New function.
2104         (resolve_linker): Consider UPCLINK.
2105         * lib/Automake/Variable.pm (%_ac_macro_for_var): Suggest
2106         AM_PROG_UPC for UPC and UPCFLAGS.
2107         * m4/upc.m4: New file.
2108         * m4/depend.m4 (_AM_DEPENDENCIES): Add UPC case.
2109         * m4/Makefile.am (dist_m4data_DATA): Add upc.m4.
2110         * doc/automake.texi (Unified Parallel C Support): New node.
2111         (Public macros): Mention AM_PROG_UPC.
2112         (Program and Library Variables, Flag Variables Ordering):
2113         Mention UPCFLAGS.
2114         * tests/upc.test, tests/upc2.test, tests/upc3.test: New file.
2115         * tests/Makefile.am (TESTS): Add them.
2116         * tests/ext.test: Also test upc files.
2118 2006-08-04  Alexandre Duret-Lutz  <adl@gnu.org>
2120         * doc/automake.texi (Scripts): Fix some errors in previous patch.
2122         * doc/automake.texi (Scripts): Revamp.  Show an example of script
2123         built from configure.ac.  Discuss CLEANFILES and EXTRA_DIST for
2124         other built scripts.
2126         * m4/init.m4: Suggest fixing the call to AC_INIT when
2127         AC_PACKAGE_NAME or AC_PACKAGE_VERSION is undefined.  This is for
2128         newcomers who call AC_INIT and AM_INIT_AUTOMAKE without arguments.
2129         * tests/init.test: New file.
2130         * tests/Makefile.am (TESTS): Add it.
2132 2006-08-04  Stepan Kasal  <kasal@ucw.cz>
2134         * automake.in (dist_dirs, fill_dist_dirs): Remove.
2135         * lib/am/distdir.am (DISTDIRS): Remove.
2136         * tests/distdir.test, tests/pr2.test: Do not grep, use
2137         `make distdir' instead.
2139 2006-08-04  Alexandre Duret-Lutz  <adl@gnu.org>
2141         * doc/automake.texi (Conditionals): Split in two sections, "Usage"
2142         and "Portability", and add a third one, "Limits" to explain how
2143         conditional definitions inside multi-lines definitions can be
2144         handled.
2145         * automake.in (handle_options): Do not assume that
2146         AUTOMAKE_OPTIONS is defined in TRUE, but diagnose conditional
2147         definitions of AUTOMAKE_OPTIONS.
2148         Report from Bas Wijnen.
2149         * tests/amopt.test: New test.
2150         * tests/Makefile.am (TESTS): Add it.
2152         * aclocal.in (install_file): Cannot use /dev/null while diffing
2153         new files, because Tru64's diff do not handle /dev/null.  So
2154         create an empty destination file before running diff on a new
2155         file, and erase it afterward.  Fall back to using /dev/null only
2156         if we cannot create this file.
2157         Report and initial patch from Ralf Wildenhues.
2158         (unlink_tmp): New function.
2159         * test/acloca18.test: Make sure the empty file has been erased.
2161 2006-08-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2163         * automake.in (handle_LIBOBJS_or_ALLOCA): With subdir-objects,
2164         do not prefix `$(top_builddir)/' aka `./' to nonempty LIBOBJDIR,
2165         to help BSD Make find the files also in a VPATH build.
2166         Also return the same path, possibly prefixed, for correct
2167         depdir computation.
2168         * tests/pr401.test: Update to expose wrong depdir computation.
2169         Rewrite to not use the same file name for library object and
2170         main program.
2171         * tests/pr401b.test, tests/pr401c.test: Likewise.
2173 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
2175         * lib/install-sh: Don't incorrectly claim that this implementation
2176         can install only one file at a time.
2177         (doit_exec): New var, for using 'exec' if possible, to save a process.
2178         (test_mode, intermediate_mode): Remove.
2179         (mode): Check for IFS or globbing characters in mode, since they might
2180         cause weird behavior with the other changes below.  All later uses
2181         of '"$mode"' changed to '$mode', since the ""s no longer matter.
2182         Use octal modes if the invoker specifies an octal mode, and use
2183         octal umask values if 'umask' outputs octal values; this is more
2184         likely to work with older operating systems since Automake uses
2185         octal modes, and also works around a bug with HP-UX 11.23
2186         'mkdir -p -m u=rwx,g=rx,o=rx,u+wx' reported by Ralf Wildenhues in
2187         <http://lists.gnu.org/archive/html/bug-automake/2006-06/msg00024.html>.
2188         (cp_umask, mkdir_umask): New variables, to avoid
2189         temporarily creating files or directories with too-permissive modes.
2190         (mkdir_mode): Use the FreeBSD 'install' method for computing modes of
2191         intermediate directories; this is safer.
2192         (posix_mkdir): Also test mkdir -p -m ... by making a directory in
2193         /tmp and checking the resulting mode with 'ls', to catch a bug in
2194         HP-UX 11.23 and IRIX 6.5 mkdir reported by Ralf in the same message.
2195         Use ':' for true, not 'true'; this is a bit faster on
2196         traditional implementations.
2198 2006-07-09  Jim Meyering  <jim@meyering.net>
2200         * lib/depcomp: "in in" -> "in" in comment.
2202 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2204         * tests/defs.in (AUTOMAKE_run): Redirect stdout before stderr,
2205         for consistency with the recommendation prompted by this report:
2206         <http://lists.gnu.org/archive/html/bug-coreutils/2006-06/msg00225.html>.
2208 2006-06-24  Stepan Kasal  <kasal@ucw.cz>
2209             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2211         * m4/mkdirp.m4 (AM_PROG_MKDIR_P): Set `mkdir_p' to
2212         `'$(MKDIR_P)'', so that it retains the per-directory value
2213         computed by config.status.
2214         * lib/am/distdir.am (distdir): do not use `$(mkdir_p)' from
2215         a changed directory.  Bugs reported by Ralf Menzel.
2216         * THANKS: Update.
2218 2006-06-24  Eric Dorland  <eric@debian.org>
2219             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2221         * automake.in (scan_texinfo_file): Fix matching file extension.
2222         * tests/txinfo31.test: New test.
2223         * tests/Makefile.am: Update.
2225 2006-06-07  Alexandre Duret-Lutz  <adl@gnu.org>
2227         * automake.in (handle_LIBOBJS): Don't rely on the caller defining $1.
2229 2006-06-07  Stepan Kasal  <kasal@ucw.cz>
2231         * m4/mkdirp.m4 (AM_PROG_MKDIR_P): Rewrite using AC_PROG_MKDIR_P.
2233 2006-06-06  Stepan Kasal  <kasal@ucw.cz>
2234             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2236         * lib/am/distdir.am: Do not call $(mkdir_p) for each
2237         distributed file, collect them and create them in one run,
2238         and strip $(srcdir) and $(top_srcdir) all at once.
2239         Fix some comment typos.
2241 2006-06-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2243         * m4/depend.m4 (_AM_DEPENDENCIES): The IRIX MIPSpro compiler
2244         7.4.4m may omit the first included header dependency information
2245         with `-MDupdate'.  Refine test to catch this.
2247         * configure.ac (ACLOCAL): Use `-I m4' to match `./bootstrap'
2248         procedure.
2250         * tests/gettext.test: AM_PROG_GETTEXT of gettext >= 0.14.3
2251         requires `config.rpath' to be present, and automake now enforces
2252         this.  Test this, but only if the gettext installation works and
2253         is recent enough to provide this diagnosis.
2254         * tests/gettext.test: Provide a dummy `config.rpath' for all
2255         subsequent checks.
2256         * tests/gettext2.test, tests/subcond.test: Likewise.
2258         * tests/pr401.test: Replace "perl -i" with sed and mv, for
2259         MinGW perl.
2260         * tests/pr401b.test, tests/pr401c.test, tests/python11.test,
2261         * tests/yacc6.test, tests/yacc8.test: Likewise.
2263         * m4/depout.m4 (_AM_OUTPUT_DEPENDENCY_COMMANDS): Do not use
2264         plain `grep' on the Makefile, as its line length may exceed that
2265         for grep.  Bug report against coreutils by Sam Sirlin.
2266         * THANKS: Update.
2268 2006-05-26  Sergey Poznyakoff  <gray@Mirddin.farlep.net>  (tiny change)
2270         * doc/automake.texi (Options): Add anchor `tar-formats'.
2272 2006-05-25  Noah Misch  <noah@cs.caltech.edu>
2274         * lib/Automake/XFile.pm (lock): Allow EOPNOTSUPP, besides
2275         ENOLCK.  Only mention `make -j' when applicable.  Only raise
2276         fatal errors when `make -j' is involved.  Improve error message.
2278 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2280         * lib/Automake/Configure_ac.pm (find_configure_ac): Use
2281         `$configure_in' instead of `configure.in', to preserve
2282         directory component.
2283         * lib/Automake/Configure_ac.pm: Add note that Automake owns
2284         this file.
2285         * lib/Automake/Channels.pm: Likewise.
2286         * lib/Automake/FileUtils.pm: Likewise.
2287         * lib/Automake/Struct.pm: Likewise.
2289 2006-05-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2291         * INSTALL, lib/config.guess, lib/config.sub, lib/texinfo.tex:
2292         New upstream versions.
2294 2006-05-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2296         * doc/automake.texi (Auxiliary Programs): Fix URL to GCC
2297         repository, they use SVN now.
2299 2006-05-13  Werner Lemberg  <wl@gnu.org>
2301         * lib/gnupload: Add support for savannah.gnu.org and
2302         savannah.nongnu.org.
2304 2006-05-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2306         * lib/Automake/Channels.pm, lib/Automake/Condition.pm,
2307         lib/Automake/DisjConditions.pm, lib/Automake/Options.pm,
2308         lib/Automake/VarDef.pm, lib/Automake/Wrap.pm: Fix some typos.
2310 2006-05-11  Paul Eggert  <eggert@cs.ucla.edu>
2312         * lib/install-sh: Sync from Autoconf, as follows:
2313         Don't use 'path' to talk about file names,
2314         as per GNU coding standards.  Close a race condition reported by Ralf
2315         Wildenhues and Stepan Kasal.  There is still a race condition
2316         on hosts that predate Posix 1003.1-1992, but we can't help this.
2317         Don't mishandle weird characters like space on pre-Posix hosts.
2318         Invoke mkdir at most once per dir arg on pre-Posix hosts.
2320 2006-05-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2322         * tests/missing.test, tests/missing2.test: Do not require
2323         GNUmake.
2324         * Makefile.am (maintainer-check): Make sure `required=' does not
2325         follow `. ./defs' in the tests.
2327         * tests/ansi10.test: Use AC_PROG_CC_STDC.  Fix test that
2328         ac_cv_prog_cc_stdc isn't just used by Automake code in
2329         `configure'.
2330         * tests/ansi6.test, tests/ansi7.test: Likewise.
2331         * tests/ansi9.test: Likewise.  Do not override by setting
2332         $U and $(ANSI2KNR) at `make' time; that will be fragile.
2333         * tests/libobj8.test: Use AC_PROG_CC_STDC.
2334         * tests/subobj3.test: Likewise.  Use `set -e'.
2336         * lib/install-sh: Initialize IFS, so field splitting isn't
2337         turned off later.
2338         * lib/mkinstalldirs: Likewise.
2340         * lib/am/java.am (class%DIR%.stamp): Do not assume `$?' has
2341         the path of the prerequisite added; IRIX 6.5 make does not add
2342         it, Solaris 2.6 make is inconsistent about adding it.  Fixes
2343         java.test failure.
2345         * tests/distdir.test: Do not use leading `./' in EXTRA_DIST for
2346         files in the source tree.  Fixes failures with HP-UX and Tru64
2347         make.
2349         * lib/am/ansi2knr.am (ansi2knr): Rename target as...
2350         (./ansi2knr): ...this, for BSD make.
2351         (%ANSI2KNR-DIR%/ansi2knr): Adjust.
2353 2006-05-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2355         * tests/depcomp6.test, tests/depcomp7.test: Cater for OpenBSD
2356         /bin/sh -e issue with failing commands in if clauses.
2358         * tests/defs.in (Be Bourne compatible): Update from current
2359         Autoconf.
2361         * configure.ac: Recommend perl-5.8.2.
2362         * tests/automake.test: Do not fail because of buggy Getopt::Long
2363         in perl < 5.8.2.
2365         * tests/longlin2.test: Do not use `grep' on Makefile.am:
2366         it has long lines and is thus not a text file; AIX 5.1 grep
2367         fails to scan non-plain patterns from long lines.
2369         * tests/overrid.test: Change all regexes for warning messages to
2370         match after a colon, so that the prepended file names do not
2371         cause false matches.  Tighten overrides regex.  Fix typo
2372         `cleam-am-local' -> `clean-am-local'.
2374         * tests/java.test: `configure' uses a trap, so use `(exit 77);
2375         exit 77' to portably set the exit status similar to AS_EXIT.
2376         * tests/fn99.test: propagate nonzero exit status from subshell.
2378         * tests/mkinst3.test: Fix `mkdir' wrapper to not be confused
2379         if ``pwd`' contains the string `-p'.  Create the wrapper in a
2380         subdirectory so that `.' in $PATH does not lead to an endless
2381         loop.
2383         * lib/depcomp (ia64hp): Rename dependency style to..
2384         (hp2): ..this, as it works with aCC on HPPA, too; adjust
2385         comment.  Report by Olivier Fourdan (PR automake/481).
2386         * THANKS: Update.
2388         * tests/aclocal7.test: Add `$sleep's between file touching
2389         and automake resp aclocal+automake invocations, to ensure
2390         they complete with a time stamp strictly later than the touched
2391         file.
2393         * lib/missing: Remove superfluous quotes.  Replace all uses of
2394         `[' by `test', for consistency, and for..
2395         * tests/missing5.test: ..this new test.
2396         * tests/Makefile.am: Update.
2398         * lib/missing (sed_minuso, sed_output): New variables.
2399         (autom4te, help2man, makeinfo): Use them.  Unifies detection of
2400         `-o FILE', `--output FILE', `--output=FILE', stricter regex.
2401         Fixes `missing' to detect `--output' for help2man.  Fixes
2402         PR automake/483.  Report by Dennis J. Linse.
2403         (autom4te): Document in `missing --help'.
2404         * THANKS: Update.
2406 2006-04-26  Thien-Thi Nguyen  <ttn@gnu.org>  (tiny change)
2408         * doc/automake.texi (Dependency Tracking Evolution): Fix typo.
2410 2006-04-25  Stepan Kasal  <kasal@ucw.cz>
2412         * lib/install-sh: Simplify the expr implementation of dirname.
2414 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
2416         * lib/install-sh: Handle --, and diagnose unknown options.
2417         * m4/mkdirp.m4 (AM_PROG_MKDIR_P): In the normal case, set
2418         mkdir_p='mkdir -p', not to 'mkdir -p --', for consistency with
2419         the other ways that mkdir_p might be set.
2421 2006-04-21  Alexandre Duret-Lutz  <adl@gnu.org>
2423         * m4/amversion.in (_AM_AUTOCONF_VERSION): New macro.
2424         (AM_SET_CURRENT_AUTOMAKE_VERSION): Call it.
2425         * aclocal.in (trace_used_macros): Trace _AM_AUTOCONF_VERSION.
2426         (write_aclocal): Output a check for Autoconf's version in aclocal.m4.
2427         Doing so ensures that users cannot build configure and Makefiles
2428         with two different autoconf versions.  Report from Noah Misch.
2429         * tests/missing4.test: New file.
2430         * tests/Makefile.am (TESTS): Add it.
2432 2006-04-20  Paul Lunau  <temp@lunau.me.uk>  (tiny change)
2433             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2435         * lib/am/dejagnu.am (check-DEJAGNU): Fail when at least one test
2436         failed, instead of when the last one failed (PR automake/488).
2437         Report from Paul Lunau.
2438         * tests/dejagnu4.test: Update to expose this.
2439         * THANKS: Update.
2441 2006-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2443         * lib/am/check.am (check-TESTS): Match XFAIL_TESTS delimited by
2444         TABs as well as spaces.  Fixes PR automake/490.
2445         * tests/check6.test: New test.
2446         * tests/Makefile.am, THANKS: Update.
2447         Report from Diab Jerius <djerius@cfa.harvard.edu>.
2449 2006-04-17  Stepan Kasal  <kasal@ucw.cz>
2451         * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
2452         description; eliminate the duplicate error message.
2453         * doc/automake.texi (@direntry): `Invoking Automake' is the name
2454         of the usage node for `automake'
2455         * lib/Automake/Variable.pm (%_gen_varname): Fix typos in the
2456         comment.
2458 2006-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2460         * m4/lispdir.m4 (AM_PATH_LISPDIR): Require Autoconf 2.59c,
2461         because it uses `datarootdir'.  Bump copyright year and serial.
2463 2006-04-10  Stepan Kasal  <kasal@ucw.cz>
2465         * NEWS: Fix typo.
2467 2006-04-09  Alexandre Duret-Lutz  <adl@gnu.org>
2469         * lib/Automake/Variable.pm (_hash_varname, _hash_values): New functions.
2470         (_gen_varname): Use _hash_values, and return a flag indicating whether
2471         the variable name was generated or reused.
2472         (transform_variable_recursively): Do not redefine variables that
2473         are reused, and try to reuse the variable being transformed.
2474         * tests/check2.test: Make sure TESTS hasn't been redefined.
2475         * tests/check5.test, tests/exeext4.test: Make sure variables have
2476         been reused.
2477         * tests/subst2.test: Make sure bin_PROGRAMS gets rewritten.
2479         * automake.in (%ignored_configure_vars): New variable.
2480         (scan_autoconf_traces): Trace for _AM_SUBST_NOTMAKE and fill
2481         %ignored_configure_vars.
2482         (define_configure_variable): Declare ignored configure variables
2483         as VAR_SILENT.  Do not special-case AMDEPBACKSLASH and ANSI2KNR
2484         w.r.t. VAR_SILENT.
2485         * m4/substign.m4: New file.
2486         * m4/Makefile.am (dist_m4data_DATA): Add substign.m4.
2487         * m4/cond.m4: _AM_SUBST_NOTMAKE $1_TRUE and $1_FALSE (PR automake/477).
2488         * m4/depend.m4: _AM_SUBST_NOTMAKE AMDEPBACKSLASH.
2489         * m4/protos.m4: _AM_SUBST_NOTMAKE ANSI2KNR.
2490         * tests/cond.test: Make sure TEST_FALSE and TEST_TRUE are not defined.
2491         * tests/amsubst.test: New file.
2492         * tests/Makefile.am (TESTS): Add it.
2494 2006-04-09  Stepan Kasal  <kasal@ucw.cz>
2495             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2497         * automake.in (handle_single_transform): Preserve directories in
2498         direct suffix rules.
2499         * tests/suffix12.test: New test.
2500         * tests/Makefile.am (TESTS): Add it.
2501         Report from John Ratliff.
2503 2006-03-25  Mike Frysinger  <vapier@gentoo.org>  (tiny change)
2504             Alexandre Duret-Lutz  <adl@gnu.org>
2506         * aclocal.in ($m4_include_rx): Do not recognize `include', and
2507         adjust scan_configure_dep and scan_file accordingly.
2508         (scan_configure_dep): Do not search white lines.
2509         (scan_file): Strip comments from current line after checking
2510         for serial, so that aclocal does not trip on `m4_include' macros
2511         in comments.  Report from Mike Frysinger.
2512         * tests/acloca21.test: New file.
2513         * tests/Makefile.am (TESTS): Add it.
2515 2006-03-24  Stepan Kasal  <kasal@ucw.cz>
2517         * tests/mmodely.test: Fix the test on systems with no lex.
2519 2006-03-23  Stepan Kasal  <kasal@ucw.cz>
2521         * automake.in (libtool_new_api): Fix a typo in the comment.
2522         * lib/Automake/Makefile.am (Config.pm): Likewise.
2523         * lib/am/depend2.am: Likewise.
2524         * tests/xsource.test: With `set -e', `|| exit 1' is no longer
2525         needed.
2527 2006-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2529         * tests/depcomp6.test, tests/depcomp7.test: Change back to
2530         using `$MAKE && exit 1', but make sure the last command in the
2531         test is successful.
2533 2006-03-21  Clifford Wolf  <clifford@clifford.at>  (tiny change)
2534             Stepan Kasal  <kasal@ucw.cz>
2535             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2537         * aclocal.in (parse_arguments): Added wildcard support to the
2538         dirlist parser.
2539         * doc/automake.texi (Macro search path): Document it.
2540         * tests/dirlist2.test: New test.
2541         * m4/dirlist, tests/Makefile.am: Adjust.
2543 2006-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2545         * m4/init.m4 (AM_INIT_AUTOMAKE): Add `_AM_DEPENDENCIES(OBJC)'
2546         to `AC_PROG_OBJC' if provided, to fix Objective C depmode
2547         handling.
2548         * lib/Automake/Variable.pm (%_ac_macro_for_var): Add entries for
2549         OBJC and OBJCFLAGS.
2550         * tests/ext.test: Adjust.
2551         * tests/objc.test, tests/objc2.test: New tests.
2552         * tests/Makefile.am: Adjust.
2553         * doc/automake.texi (Objective C Support): New node.
2554         (Support for Other Languages): Adjust.
2556 2006-03-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2558         * lib/Automake/RuleDef.pm (DESCRIPTION): Typo.
2560         * tests/depcomp6.test, tests/depcomp7.test: Fix failure logic
2561         to work with `set -e'.
2563         * tests/depcomp6.test, tests/depcomp7.test: New tests,
2564         for general `depcomp' functionality, with and without
2565         `subdir-objects', with and without `libtool'.
2566         * tests/Makefile.am: Adjust.
2568         * aclocal.in (write_aclocal): Unlink `aclocal.m4' before
2569         writing into it, to break a symlinked file.
2570         * tests/acloca20.test: New test.
2571         * tests/Makefile.am: Updated.
2573 2006-03-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2575         Allow package trees (packages with subpackages) to share
2576         common distributed auxiliary files (and directories) that
2577         reside within a subpackage.
2579         * lib/am/distdir.am (distdir %?TOPDIR_P%): Do not fail if
2580         `$(distdir)' already exists.
2581         (%?SUBDIRS%): Set `am__remove_distdir' to `:' to prevent
2582         removal of subpackage trees for distribution.
2583         * tests/subpkg3.test: New test.
2584         * tests/Makefile.am: Update.
2586 2006-03-18  Alexandre Duret-Lutz  <adl@gnu.org>
2588         * tests/check5.test, tests/nobast.test: Fix $MAKE and rm
2589         invocations to please maintainer-check.
2591 2006-03-10  Alexandre Duret-Lutz  <adl@gnu.org>
2593         * automake.in (lang_c_rewrite): Typo in previous change.
2594         * tests/ccnoco2.test: New file.
2595         * tests/Makefile.am (TESTS): Add ccnoco2.test.
2597         * automake.in (lang_c_rewrite): Make the AM_PROG_CC_C_O requirement
2598         a 'portability' warning, so that people can ignore it.  Suggested
2599         by Ralf Wildenhues.
2601         * lib/Automake/ChannelDefs.pm: Make -Wportability the default in
2602         gnu and gnits modes.
2603         * doc/automake.texi (Invoking Automake): Adjust.
2605 2006-02-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2607         * doc/automake.texi (Yacc and Lex): Document that `.ypp' and
2608         `.lpp' file extensions are recognized.
2610 2006-02-21  Alexandre Duret-Lutz  <adl@gnu.org>
2612         * doc/automake.texi (Complete, Extending aclocal, Public macros)
2613         (Python, Conditionals, API versioning): Always quote macro arguments.
2614         Report from Stepan Kasal.
2616 2006-02-16  Alexandre Duret-Lutz  <adl@gnu.org>
2618         * doc/automake.texi (Python): More examples.
2620 2006-02-05  Alexandre Duret-Lutz  <adl@gnu.org>
2622         * doc/automake.texi (distcleancheck): Fix bad wording.  Report
2623         from Bob Rossi.
2624         (Man pages): Show dist_man_MANS, not EXTRA_DIST = $(man_MANS).
2626 2006-01-29  Alexandre Duret-Lutz  <adl@gnu.org>
2628         Append $(EXEEXT) to programs that may be listed in TESTS.
2629         Report from Simon Josefsson.
2631         * automake.in (%known_programs): New global.
2632         (initialize_per_input): Reset it.
2633         (append_exeext): Take a predicate as first argument to select
2634         the filename to rewrite.
2635         (handle_programs): Fill %known_programs.
2636         (handle_tests): Append $(EXEEXT) to all tests that are in
2637         %known_programs.
2638         (am_install_var): Update call to append_exeext.
2639         * doc/automake.texi (EXEEXT): TESTS is also rewritten.
2640         (Tests): More about the difference between check_PROGRAMS and TESTS.
2641         Give an example of TEST_ENVIRONMENT.
2642         * tests/cond32.test: Augment with a nested condition.
2643         * tests/exeext4.test: Also check TESTS.
2644         * tests/check5.test: New file.
2645         * tests/Makefile.am (TESTS): Add check5.test.
2647 2006-01-12  Paul Eggert  <eggert@cs.ucla.edu>
2649         * lib/install-sh (dstdir): Don't use semicolons inside { } in
2650         sed scripts, as Posix says it's not portable.
2651         * lib/missing (file): Likewise.
2652         * lib/am/distdir.am (distcheck): Likewise.
2653         * tests/comment7.test, tests/comment9.test, tests/confh.test: Likewise
2654         * tests/distcom2.test, tests/distcom3.test: Likewise.
2655         * tests/distcom4.test, tests/distcom5.test: Likewise.
2656         * tests/distcom6.test, tests/include.test, tests/pluseq8.test: Likewise.
2658 2006-01-12  Alexandre Duret-Lutz  <adl@gnu.org>
2660         * ChangeLog: Move 2004's entries to ...
2661         * ChangeLog.04: ... this new file.
2662         * Makefile.am (EXTRA_DIST): Add ChangeLog.04.
2664         * tests/txinfo13.test: Test fix below.
2666 2006-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2668         * lib/am/texinfos.am (dist-info): Tighten glob to avoid unwanted
2669         extra files in distribution.  Reported by Vincent Lefevre.
2671 2006-01-06  Alexandre Duret-Lutz  <adl@gnu.org>
2673         * doc/automake.texi (Linking, Program and Library Variables):
2674         Mention the file extensions that usually appear in _DEPENDENCIES,
2675         and point to BUILT_SOURCES and example of _DEPENDENCIES uses.  A
2676         couple of people have been listing sources files in _DEPENDENCIES
2677         lately.
2679         * doc/automake.texi: Bump copyright year.
2680         * automake.in ($gen_copyright, version): Likewise.
2681         * aclocal.in (write_aclocal, version): Likewise.
2683 2006-01-05  Stepan Kasal  <kasal@ucw.cz>
2684             Alexandre Duret-Lutz  <adl@gnu.org>
2686         * automake.in (topsrcdir): New global.
2687         (generate_makefile): Compute it.
2688         (fill_dist_dirs): New function extracted from handle_dist.
2689         (handle_dist, handle_configure): Use fill_dist_dirs.
2690         * tests/distdir.test: Test for cases where $(top_srcdir) or
2691         $(srcdir) appear in EXTRA_DIST.  Report from Sander Niemeijer.
2693 2006-01-05  Zack Weinberg  <zackw@panix.com>
2694             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2696         * lib/depcomp: Add 'ia64hp' dependency style.
2697         Zack's original patch was contributed to GCC on 2005-06-13.
2698         (tru64): Typo.
2700 2005-11-01  Stepan Kasal  <kasal@ucw.cz>
2702         * lib/install-sh: Use "trap '' 0" instead of "trap - 0", so that
2703         the code is portable to both POSIX and pre-POSIX shells.
2705 2005-10-17  Alexandre Duret-Lutz  <adl@gnu.org>
2707         * tests/nobase.test: Use `chmod a-x' instead of `chmod -x',
2708         suggested by Eric Blake.
2710 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
2712         * doc/automake.texi (Program and Library Variables): Typo.
2713         * lib/Automake/Variable.pm (transform_variable_recursively): Typo
2714         in a comment.
2716 2005-10-03  Stepan Kasal  <kasal@ucw.cz>
2718         * ChangeLog.03, automake.in, tests/overrid.test: Typos.
2720 2005-10-03  Alexandre Duret-Lutz  <adl@gnu.org>
2722         * tests/nobase.test: Exercise previous patch.
2724 2005-10-03  Peter O'Gorman  <peter@pogma.com>  (tiny change)
2726         * lib/am/distdir.am: Remove $(SHELL) when calling install_sh
2727         * m4/strip.m4: Ditto.
2728         * m4/install-sh.m4: Add $(SHELL) to the definition of install_sh
2730 2005-09-13  Paul Eggert  <eggert@cs.ucla.edu>
2732         * doc/automake.texi (limitations on file names): New section.
2733         * lib/install-sh: Rewrite to support '*' in file names.
2734         Also, tune so that we don't invoke so many commands in the usual case.
2735         This has the side effect of fixing `install-sh -d' to not fail if it
2736         loses the race in creating the last path component against another
2737         process.
2738         * tests/instspc.test: The "*" test is now fixed.
2740 2005-09-13  Stepan Kasal  <kasal@ucw.cz>
2742         * automake.in (Languages) <cppasm>: Fix typo in the comment.
2744 2005-09-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2746         * lib/am/ltlib.am (uninstall-%DIR%LTLIBRARIES): Do not put
2747         shell in verbose mode.
2749 2005-08-07  Alexandre Duret-Lutz  <adl@gnu.org>
2751         * lib/Automake/Variable.pm (variable_value): Do not read the TRUE
2752         value of a conditionally defined variable.
2753         Report from Juergen Leising.
2755         * automake.in (lang_yacc_target_hook): Use AM_MAKEFLAGS in recursive
2756         $(MAKE) invocations.
2757         * lib/am/texibuild.am (?GENERIC_INFO?%SOURCE_SUFFIX%%DEST_SUFFIX%):
2758         Likewise.
2759         * lib/am/texi-vers.am (%STAMPVTI%): Likewise.
2760         * lib/am/remake-hdr.am (%CONFIG_H%): Likewise.
2761         * Makefile.am (maintainer-check): Check for this.
2762         Report from Stepan Kasal.
2764         * m4/mkdirp.m4: Update misleading comment about `mkdir -p .'.
2765         Prompted by Stepan Kasal.
2767 2005-08-07  Stepan Kasal  <kasal@ucw.cz>
2769         * lib/am/texinfos.am (uninstall-info-am): Call install-info only if
2770         the $(infodir) exists.
2772 2005-07-31  Stepan Kasal  <kasal@ucw.cz>
2774         * tests/library3.test: Fix a typo which made the test fail.
2776 2005-07-27  Alexandre Duret-Lutz  <adl@gnu.org>
2778         * doc/automake.texi (Linking, Program and Library Variables):
2779         Suggest reserving -l for third-party libraries.
2781         * lib/Automake/Variable.pm (require_variables): Mention aclocal's
2782         search path when suggesting to add a macro in configure.ac.
2783         People are confused when Automake suggests adding a macro (such as
2784         AC_PROG_LIBTOOL) that is already in configure.ac.
2785         * automake.in (require_file_internal): Suggest `automake --add-missing'
2786         for missing files that can be installed.
2787         * tests/library3.test: Adjust.
2789 2005-07-27  Stepan Kasal  <kasal@ucw.cz>
2791         * tests/defs.in: When required matches both `*libtool*' and
2792         `*gettext*', check for both m4 files.
2794         * doc/automake.texi (Auxiliary Programs): Fix a typo.
2795         * tests/suffix11.test: Fix a typo.
2796         * tests/colon3.test: s/EGREP/FGREP/.
2798 2005-07-19  Paul Eggert  <eggert@cs.ucla.edu>
2800         * tests/instspc.test: Major rewrite to test for many other
2801         problematic file names, e.g., '$', '"', '('.  Automake and
2802         Autoconf can't handle many of them, so do not report a failure
2803         if the usual candidates show up.
2805 2005-07-19  Stepan Kasal  <kasal@ucw.cz>
2807         * Makefile.am (automake, aclocal): Merge the rules.
2809 2005-07-10  Alexandre Duret-Lutz  <adl@gnu.org>
2811         * lib/config.guess, lib/config.sub, lib/texinfo.tex: New upstream
2812         versions.
2814 2005-07-09  Alexandre Duret-Lutz  <adl@gnu.org>
2816         * lib/install-sh: Use IFS=/ to split directories on /, don't translate
2817         / into % as it prevents directory names using %...
2819 2005-07-09  Stepan Kasal  <kasal@ucw.cz>
2821         * doc/automake.texi (Public macros): Typo.
2822         * aclocal.in: Typo in comment.
2824 2005-07-09  Zack Weinberg  <zack@codesourcery.com>  (tiny change)
2826         * lib/depcomp: Handle "#line" markers as well as "# " markers in
2827         "cpp" style, so it can work with newer HP compilers (for their
2828         ia64 systems).
2830 2005-07-02  Alexandre Duret-Lutz  <adl@gnu.org>
2832         * doc/automake.texi (Public macros) <AM_WITH_DMALLOC>: Reword to
2833         fix an underful hbox.
2834         * lib/INSTALL, lib/config.guess, lib/config.sub, lib/texinfo.tex:
2835         New upstream versions.
2837 2005-07-01  Alexandre Duret-Lutz  <adl@gnu.org>
2839         * m4/python.m4 (_AM_PYTHON_INTERPRETER_LIST): Add python2.5.
2841 2005-06-30  Alexandre Duret-Lutz  <adl@gnu.org>
2843         * automake.in (make_paragraphs): Do not define %TOPDIR%, now that
2844         lib/am/header-vars.am no longer uses it.
2845         * lib/am/libtool.am (distclean-am, distclean-libtool): Define
2846         if TOPDIR_P is true, not TOPDIR.
2847         Suggested by Stepan Kasal.
2849         * automake.in (read_am_file): Correctly diagnose comments following
2850         trailing backslash.
2851         * tests/commen10.test: New file.
2852         * tests/Makefile.am (TESTS): Add commen10.test.
2853         Report from Harald Dunkel.
2855         * automake.in (scan_autoconf_traces): Scan AC_SUBST_TRACE instead
2856         of AC_SUBST.
2857         * lib/am/header-vars.am (srcdir, top_srcdir, top_builddir, INSTALL):
2858         Do not define, they are AC_SUBST_TRACEd by Autoconf.
2859         * m4/init.m4 (AM_INIT_AUTOMAKE): Require Autoconf 2.59c.
2860         * tests/include.test: Call AC_OUTPUT.
2862 2005-06-29  Alexandre Duret-Lutz  <adl@gnu.org>
2864         * lib/mkinstalldirs: Fix support for directory name with spaces if
2865         `mkdir -p' does not work.
2866         * tests/Makefile.am (TESTS): Add mkinst3.test.
2867         * tests/mkinst3.test: New file.
2868         Report from Noah Friedman.
2870         * doc/automake.texi (Include, Extending aclocal): Typos.
2871         Report from Karl Berry.
2873 2005-06-28  Stepan Kasal  <kasal@ucw.cz>
2874             Alexandre Duret-Lutz  <adl@gnu.org>
2876         * lib/mdate-sh: Avoid infinite loop with GNU ls when TIME_STYLE is set.
2877         * tests/txinfo28.test: Set TIME_STYLE.
2878         Report from Vincent Lefevre and James Youngman.
2880 2005-06-24  Alexandre Duret-Lutz  <adl@gnu.org>
2882         * lib/Automake/Variable.pm (define, _new): Remember the helper
2883         variable created for the last conditional += on each variable, and
2884         only append further += in the same condition to this last helper
2885         variable, not to older helper variables.  This way the order of
2886         the items appended to the variable is preserved.
2887         * tests/cond21.test: Adjust.
2888         * tests/cond38.test: New file.
2889         * tests/Makefile.am (TESTS): Add cond38.test.
2890         Report from Ed Hartnett.
2892 2005-06-22  Alexandre Duret-Lutz  <adl@gnu.org>
2894         * tests/aclocal5.test: Adjust to recent CVS Autoconf changes.
2896         * automake.in (handle_footer): Do not output an unformatted
2897         definition of SOURCES, it is already done correctly in
2898         generate_makefile.  This superfluous definition introduced long
2899         lines in some Makefiles, hence breakages in tools with a limited
2900         line length.  Report from Mathias Froehlich.
2902 2005-06-11  Alexandre Duret-Lutz  <adl@gnu.org>
2904         * lib/am/texibuild.am (?GENERIC_INFO?%SOURCE_SUFFIX%%DEST_SUFFIX%):
2905         Fix redirections in previous patch.
2907 2005-06-08  Alexandre Duret-Lutz  <adl@gnu.org>
2909         * lib/am/texibuild.am (?GENERIC_INFO?%SOURCE_SUFFIX%%DEST_SUFFIX%):
2910         Do not backup any file if makeinfo is not installed.
2911         * lib/missing (makeinfo): Do not touch a missing info file.
2912         * tests/txinfo30.test: New file.
2913         * tests/Makefile.am (TESTS): Add txinfo30.test.
2914         Report from Bob Proulx.
2916         * doc/automake.texi (Extending aclocal): Typo.
2918 2005-05-24  Brian Gough  <bjg@network-theory.co.uk>  (tiny change)
2920         * lib/am/texinfos.am (.dvi.ps): Add $(am__TEXINFO_TEX_DIR) to TEXINPUTS.
2922 2005-05-15  Alexandre Duret-Lutz  <adl@gnu.org>
2924         Fix PR automake/461:
2925         * automake.in (require_build_directory): Canonicalize directories
2926         with different names, such as `foo/bar' and `./foo//bar'.
2927         * tests/subobj9.test: Augment to test that.
2928         Report from Tom Tromey.
2930 2005-05-14  Alexandre Duret-Lutz  <adl@gnu.org>
2932         * COPYING, ChangeLog, ChangeLog.00, ChangeLog.01, ChangeLog.02,
2933         ChangeLog.03, ChangeLog.96, ChangeLog.98, HACKING, Makefile.am,
2934         NEWS, README, TODO, aclocal.in, automake.in, bootstrap, configure,
2935         configure.ac, doc/Makefile.am, doc/fdl.texi, lib/COPYING,
2936         lib/Makefile.am, lib/acinstall, lib/compile, lib/config-ml.in,
2937         lib/config.guess, lib/config.sub, lib/depcomp, lib/elisp-comp,
2938         lib/gnupload, lib/mdate-sh, lib/missing, lib/py-compile,
2939         lib/symlink-tree, lib/texinfo.tex, lib/ylwrap,
2940         lib/Automake/ChannelDefs.pm, lib/Automake/Channels.pm,
2941         lib/Automake/Condition.pm, lib/Automake/Config.in,
2942         lib/Automake/Configure_ac.pm, lib/Automake/DisjConditions.pm,
2943         lib/Automake/FileUtils.pm, lib/Automake/General.pm,
2944         lib/Automake/Item.pm, lib/Automake/ItemDef.pm,
2945         lib/Automake/Location.pm, lib/Automake/Makefile.am,
2946         lib/Automake/Options.pm, lib/Automake/Rule.pm,
2947         lib/Automake/RuleDef.pm, lib/Automake/Struct.pm,
2948         lib/Automake/VarDef.pm, lib/Automake/Variable.pm,
2949         lib/Automake/Version.pm, lib/Automake/Wrap.pm,
2950         lib/Automake/XFile.pm, lib/Automake/tests/Condition.pl,
2951         lib/Automake/tests/DisjConditions.pl,
2952         lib/Automake/tests/Makefile.am, lib/Automake/tests/Version.pl,
2953         lib/Automake/tests/Wrap.pl, lib/am/Makefile.am,
2954         lib/am/ansi2knr.am, lib/am/check.am, lib/am/clean-hdr.am,
2955         lib/am/clean.am, lib/am/compile.am, lib/am/configure.am,
2956         lib/am/data.am, lib/am/dejagnu.am, lib/am/depend.am,
2957         lib/am/depend2.am, lib/am/distdir.am, lib/am/footer.am,
2958         lib/am/header-vars.am, lib/am/header.am, lib/am/inst-vars.am,
2959         lib/am/install.am, lib/am/java.am, lib/am/lang-compile.am,
2960         lib/am/lex.am, lib/am/library.am, lib/am/libs.am,
2961         lib/am/libtool.am, lib/am/lisp.am, lib/am/ltlib.am,
2962         lib/am/ltlibrary.am, lib/am/mans-vars.am, lib/am/mans.am,
2963         lib/am/multilib.am, lib/am/program.am, lib/am/progs.am,
2964         lib/am/python.am, lib/am/remake-hdr.am, lib/am/scripts.am,
2965         lib/am/subdirs.am, lib/am/tags.am, lib/am/texi-vers.am,
2966         lib/am/texibuild.am, lib/am/texinfos.am, lib/am/yacc.am,
2967         m4/Makefile.am, tests/aclibobj.test, tests/acloca10.test,
2968         tests/acloca11.test, tests/acloca12.test, tests/acloca13.test,
2969         tests/acloca14.test, tests/acloca15.test, tests/acloca16.test,
2970         tests/acloca17.test, tests/acloca18.test, tests/acloca19.test,
2971         tests/aclocal.test, tests/aclocal3.test, tests/aclocal4.test,
2972         tests/aclocal5.test, tests/aclocal6.test, tests/aclocal7.test,
2973         tests/aclocal8.test, tests/aclocal9.test, tests/acoutbs.test,
2974         tests/acoutbs2.test, tests/acoutnoq.test, tests/acoutpt.test,
2975         tests/acoutpt2.test, tests/acoutqnl.test, tests/acsilent.test,
2976         tests/acsubst.test, tests/acsubst2.test, tests/all.test,
2977         tests/alloca.test, tests/alloca2.test, tests/alpha.test,
2978         tests/alpha2.test, tests/amassign.test, tests/ammissing.test,
2979         tests/ansi.test, tests/ansi10.test, tests/ansi2.test,
2980         tests/ansi3.test, tests/ansi3b.test, tests/ansi4.test,
2981         tests/ansi5.test, tests/ansi6.test, tests/ansi7.test,
2982         tests/ansi8.test, tests/ansi9.test, tests/ar.test, tests/ar2.test,
2983         tests/asm.test, tests/autohdr.test, tests/autohdr2.test,
2984         tests/autohdr3.test, tests/autohdr4.test, tests/automake.test,
2985         tests/auxdir.test, tests/auxdir2.test, tests/auxdir3.test,
2986         tests/auxdir4.test, tests/backsl.test, tests/backsl2.test,
2987         tests/backsl3.test, tests/backsl4.test, tests/badline.test,
2988         tests/badopt.test, tests/badprog.test, tests/block.test,
2989         tests/bsource.test, tests/canon.test, tests/canon2.test,
2990         tests/canon3.test, tests/canon4.test, tests/canon5.test,
2991         tests/ccnoco.test, tests/check.test, tests/check2.test,
2992         tests/check3.test, tests/check4.test, tests/checkall.test,
2993         tests/clean.test, tests/clean2.test, tests/colneq.test,
2994         tests/colneq2.test, tests/colon.test, tests/colon2.test,
2995         tests/colon3.test, tests/colon4.test, tests/colon5.test,
2996         tests/colon6.test, tests/colon7.test, tests/comment.test,
2997         tests/comment2.test, tests/comment3.test, tests/comment4.test,
2998         tests/comment5.test, tests/comment6.test, tests/comment7.test,
2999         tests/comment8.test, tests/comment9.test, tests/compile.test,
3000         tests/compile_f90_c_cxx.test, tests/compile_f_c_cxx.test,
3001         tests/cond.test, tests/cond10.test, tests/cond11.test,
3002         tests/cond13.test, tests/cond14.test, tests/cond15.test,
3003         tests/cond16.test, tests/cond17.test, tests/cond18.test,
3004         tests/cond19.test, tests/cond2.test, tests/cond20.test,
3005         tests/cond21.test, tests/cond22.test, tests/cond23.test,
3006         tests/cond24.test, tests/cond25.test, tests/cond26.test,
3007         tests/cond27.test, tests/cond28.test, tests/cond29.test,
3008         tests/cond3.test, tests/cond30.test, tests/cond31.test,
3009         tests/cond32.test, tests/cond33.test, tests/cond34.test,
3010         tests/cond35.test, tests/cond36.test, tests/cond37.test,
3011         tests/cond4.test, tests/cond5.test, tests/cond6.test,
3012         tests/cond7.test, tests/cond8.test, tests/cond9.test,
3013         tests/condd.test, tests/condhook.test, tests/condinc.test,
3014         tests/condinc2.test, tests/condlib.test, tests/condman.test,
3015         tests/condman2.test, tests/conf2.test, tests/confdeps.test,
3016         tests/conff.test, tests/conff2.test, tests/confh.test,
3017         tests/confh4.test, tests/confh5.test, tests/config.test,
3018         tests/confincl.test, tests/conflnk.test, tests/conflnk2.test,
3019         tests/conflnk3.test, tests/confsub.test, tests/confvar.test,
3020         tests/confvar2.test, tests/copy.test, tests/ctarget1.test,
3021         tests/cxx.test, tests/cxx2.test, tests/cxxansi.test,
3022         tests/cxxcpp.test, tests/cxxlibobj.test, tests/cxxlink.test,
3023         tests/cxxnoc.test, tests/cxxo.test, tests/cygwin32.test,
3024         tests/dash.test, tests/defs.in, tests/defun.test,
3025         tests/defun2.test, tests/dejagnu.test, tests/dejagnu2.test,
3026         tests/dejagnu3.test, tests/dejagnu4.test, tests/dejagnu5.test,
3027         tests/dejagnu6.test, tests/dejagnu7.test, tests/depacl2.test,
3028         tests/depcomp.test, tests/depcomp2.test, tests/depcomp3.test,
3029         tests/depcomp4.test, tests/depcomp5.test, tests/depdist.test,
3030         tests/depend.test, tests/depend2.test, tests/depend3.test,
3031         tests/depend4.test, tests/destdir.test, tests/dirforbid.test,
3032         tests/dirlist.test, tests/discover.test, tests/distcom2.test,
3033         tests/distcom3.test, tests/distcom4.test, tests/distcom5.test,
3034         tests/distcom6.test, tests/distcom7.test, tests/distdir.test,
3035         tests/distname.test, tests/dollar.test, tests/double.test,
3036         tests/dup2.test, tests/else.test, tests/empty.test,
3037         tests/empty2.test, tests/empty3.test, tests/empty4.test,
3038         tests/exdir.test, tests/exdir2.test, tests/exeext.test,
3039         tests/exeext2.test, tests/exeext3.test, tests/exeext4.test,
3040         tests/exsource.test, tests/ext.test, tests/ext2.test,
3041         tests/extra.test, tests/extra2.test, tests/extra3.test,
3042         tests/extra4.test, tests/extra5.test, tests/extra6.test,
3043         tests/extra7.test, tests/f90only.test, tests/flibs.test,
3044         tests/fn99.test, tests/fnoc.test, tests/fo.test, tests/fonly.test,
3045         tests/fortdep.test, tests/fpinst2.test, tests/fpinstall.test,
3046         tests/gcj.test, tests/gcj2.test, tests/gcj3.test, tests/gcj4.test,
3047         tests/gcj5.test, tests/getopt.test, tests/gettext.test,
3048         tests/gettext2.test, tests/gnits.test, tests/gnits2.test,
3049         tests/gnits3.test, tests/gnumake.test, tests/gnuwarn.test,
3050         tests/gnuwarn2.test, tests/header.test, tests/help.test,
3051         tests/hfs.test, tests/hosts.test, tests/implicit.test,
3052         tests/include.test, tests/include2.test, tests/info.test,
3053         tests/insh2.test, tests/install2.test, tests/installdir.test,
3054         tests/instdat.test, tests/instdat2.test, tests/instexec.test,
3055         tests/insthook.test, tests/instman.test, tests/instman2.test,
3056         tests/instsh.test, tests/instsh2.test, tests/instspc.test,
3057         tests/interp.test, tests/interp2.test, tests/java.test,
3058         tests/java2.test, tests/java3.test, tests/javaprim.test,
3059         tests/javasubst.test, tests/ldadd.test, tests/ldflags.test,
3060         tests/lex.test, tests/lex2.test, tests/lex3.test, tests/lex4.test,
3061         tests/lex5.test, tests/libobj10.test, tests/libobj11.test,
3062         tests/libobj12.test, tests/libobj13.test, tests/libobj14.test,
3063         tests/libobj2.test, tests/libobj3.test, tests/libobj4.test,
3064         tests/libobj5.test, tests/libobj7.test, tests/libobj8.test,
3065         tests/library.test, tests/library2.test, tests/library3.test,
3066         tests/libtool.test, tests/libtool2.test, tests/libtool3.test,
3067         tests/libtool4.test, tests/libtool5.test, tests/libtool6.test,
3068         tests/libtool7.test, tests/libtool8.test, tests/libtool9.test,
3069         tests/license.test, tests/link_c_cxx.test, tests/link_dist.test,
3070         tests/link_f90_only.test, tests/link_f_only.test,
3071         tests/link_fc.test, tests/link_fccxx.test, tests/link_fcxx.test,
3072         tests/lisp2.test, tests/lisp3.test, tests/lisp4.test,
3073         tests/lisp5.test, tests/lisp6.test, tests/lisp7.test,
3074         tests/lisp8.test, tests/listval.test, tests/location.test,
3075         tests/longlin2.test, tests/longline.test, tests/ltcond.test,
3076         tests/ltcond2.test, tests/ltconv.test, tests/ltdeps.test,
3077         tests/ltlibobjs.test, tests/ltlibsrc.test, tests/maintclean.test,
3078         tests/make.test, tests/makej.test, tests/makevars.test,
3079         tests/man.test, tests/man2.test, tests/mclean.test,
3080         tests/mdate.test, tests/mdate2.test, tests/mdate3.test,
3081         tests/mdate4.test, tests/missing.test, tests/missing2.test,
3082         tests/missing3.test, tests/mkinst2.test, tests/mkinstall.test,
3083         tests/mmodely.test, tests/multlib.test, tests/nobase.test,
3084         tests/nodef.test, tests/nodef2.test, tests/nodep.test,
3085         tests/nodepcomp.test, tests/nodist.test, tests/nodist2.test,
3086         tests/nodist3.test, tests/nogzip.test, tests/nogzip2.test,
3087         tests/noinst.test, tests/noinstdir.test, tests/nolink.test,
3088         tests/nostdinc.test, tests/number.test, tests/obsolete.test,
3089         tests/order.test, tests/outdir.test, tests/output.test,
3090         tests/output10.test, tests/output11.test, tests/output12.test,
3091         tests/output2.test, tests/output3.test, tests/output4.test,
3092         tests/output5.test, tests/output6.test, tests/output7.test,
3093         tests/output8.test, tests/output9.test, tests/overrid.test,
3094         tests/parse.test, tests/percent.test, tests/percent2.test,
3095         tests/phony.test, tests/pluseq.test, tests/pluseq10.test,
3096         tests/pluseq2.test, tests/pluseq3.test, tests/pluseq4.test,
3097         tests/pluseq5.test, tests/pluseq6.test, tests/pluseq7.test,
3098         tests/pluseq8.test, tests/pluseq9.test, tests/postproc.test,
3099         tests/ppf77.test, tests/pr2.test, tests/pr204.test,
3100         tests/pr211.test, tests/pr220.test, tests/pr224.test,
3101         tests/pr229.test, tests/pr243.test, tests/pr266.test,
3102         tests/pr279-2.test, tests/pr279.test, tests/pr287.test,
3103         tests/pr300-lib.test, tests/pr300-ltlib.test,
3104         tests/pr300-prog.test, tests/pr307.test, tests/pr401.test,
3105         tests/pr401b.test, tests/pr401c.test, tests/pr72.test,
3106         tests/pr87.test, tests/pr9.test, tests/prefix.test,
3107         tests/primary.test, tests/primary2.test, tests/primary3.test,
3108         tests/proginst.test, tests/python.test, tests/python10.test,
3109         tests/python11.test, tests/python12.test, tests/python2.test,
3110         tests/python3.test, tests/python4.test, tests/python5.test,
3111         tests/python6.test, tests/python7.test, tests/python8.test,
3112         tests/python9.test, tests/recurs.test, tests/recurs2.test,
3113         tests/regex.test, tests/remake.test, tests/remake2.test,
3114         tests/remake3.test, tests/remake4.test, tests/remake5.test,
3115         tests/req.test, tests/reqd.test, tests/reqd2.test,
3116         tests/rulepat.test, tests/scripts.test, tests/seenc.test,
3117         tests/sinclude.test, tests/space.test, tests/specflg.test,
3118         tests/specflg2.test, tests/specflg3.test, tests/specflg6.test,
3119         tests/specflg7.test, tests/specflg8.test, tests/specflg9.test,
3120         tests/spell.test, tests/spell2.test, tests/spell3.test,
3121         tests/spelling.test, tests/spy.test, tests/srcsub.test,
3122         tests/srcsub2.test, tests/stamph2.test, tests/stdlib.test,
3123         tests/stdlib2.test, tests/strip.test, tests/subcond.test,
3124         tests/subcond2.test, tests/subcond3.test, tests/subdir.test,
3125         tests/subdir2.test, tests/subdir3.test, tests/subdir4.test,
3126         tests/subdir5.test, tests/subdir6.test, tests/subdir7.test,
3127         tests/subdir8.test, tests/subdir9.test,
3128         tests/subdirbuiltsources.test, tests/subobj.test,
3129         tests/subobj2.test, tests/subobj3.test, tests/subobj4.test,
3130         tests/subobj5.test, tests/subobj6.test, tests/subobj7.test,
3131         tests/subobj8.test, tests/subobj9.test, tests/subobjname.test,
3132         tests/subpkg.test, tests/subpkg2.test, tests/subst.test,
3133         tests/subst2.test, tests/substre2.test, tests/substref.test,
3134         tests/substtarg.test, tests/suffix.test, tests/suffix10.test,
3135         tests/suffix11.test, tests/suffix2.test, tests/suffix3.test,
3136         tests/suffix4.test, tests/suffix5.test, tests/suffix6.test,
3137         tests/suffix7.test, tests/suffix8.test, tests/suffix9.test,
3138         tests/symlink.test, tests/symlink2.test, tests/symlink3.test,
3139         tests/syntax.test, tests/tags.test, tests/tagsub.test,
3140         tests/tar.test, tests/tar2.test, tests/tar3.test,
3141         tests/target-cflags.test, tests/targetclash.test,
3142         tests/transform.test, tests/txinfo.test, tests/txinfo10.test,
3143         tests/txinfo13.test, tests/txinfo16.test, tests/txinfo17.test,
3144         tests/txinfo18.test, tests/txinfo19.test, tests/txinfo2.test,
3145         tests/txinfo20.test, tests/txinfo21.test, tests/txinfo22.test,
3146         tests/txinfo23.test, tests/txinfo24.test, tests/txinfo25.test,
3147         tests/txinfo26.test, tests/txinfo27.test, tests/txinfo28.test,
3148         tests/txinfo29.test, tests/txinfo3.test, tests/txinfo4.test,
3149         tests/txinfo5.test, tests/txinfo6.test, tests/txinfo7.test,
3150         tests/txinfo8.test, tests/txinfo9.test, tests/unused.test,
3151         tests/vars.test, tests/vars3.test, tests/vartar.test,
3152         tests/version.test, tests/version2.test, tests/version3.test,
3153         tests/version4.test, tests/version6.test, tests/version7.test,
3154         tests/version8.test, tests/vpath.test, tests/vtexi.test,
3155         tests/vtexi2.test, tests/warnopts.test, tests/werror.test,
3156         tests/werror2.test, tests/whoami.test, tests/xsource.test,
3157         tests/yacc.test, tests/yacc2.test, tests/yacc3.test,
3158         tests/yacc4.test, tests/yacc5.test, tests/yacc6.test,
3159         tests/yacc7.test, tests/yacc8.test, tests/yaccpp.test,
3160         tests/yaccvpath.test: Update FSF postal mail address.
3162         * tests/cxxnoc.test: Adjust grep pattern for CC, because CVS
3163         Autoconf currently defines a CCC variable.
3165         * tests/output11.test, tests/output12.test: Use rm -f.
3167 2005-04-25  Gary V. Vaughan  <gary@gnu.org>
3168             Alexandre Duret-Lutz  <adl@gnu.org>
3170         Support for remote LIBOBJS (and friends) with subdir-objects.
3171         Fixes PR automake/401.
3173         * automake.in (config_libobj_dir): New variable.
3174         (scan_autoconf_traces): Set config_libobj_dir from AC_CONFIG_LIBOBJ_DIR.
3175         (handle_LIBOBJS_or_ALLOCA, require_libsource_with_macro): New functions.
3176         (handle_LIBOBJS, handle_ALLOCA): Use them.  Adjust location of
3177         dependency files, possibly in a subdirectory.
3178         * tests/pr401.test, tests/pr401b.test, tests/pr401c.test: New tests.
3179         * tests/Makefile.am (TESTS): Add them.
3180         * doc/automake.texi (Optional) <AC_CONFIG_LIBOBJ_DIR>: Document.
3181         (LIBOBJS): Document changes in behaviour of
3182         LIBOBJS, ALLOCA, LTLIBOBJS & LTALLOCA in the presence of
3183         subdir-objects and an invocation of AC_CONFIG_LIBOBJ_DIR.
3185 2005-04-18  Jim Meyering  <jim@meyering.net>
3187         * doc/automake.texi (Dist): Correct English.
3189 2005-03-31  Stepan Kasal  <kasal@ucw.cz>
3191         * doc/automake.texi: When the phrase "for instance" introduces a
3192         sentence, it should be delimited by a comma.
3194         * doc/automake.texi: Fix a few typos.
3196 2005-03-30  Alexandre Duret-Lutz  <adl@gnu.org>
3198         * doc/automake.texi (Uniform): Use xmldir instead of htmldir as
3199         example, since the GCS now define htmldir.
3200         (Auxiliary Programs): Mention config-ml.in and symlink-tree.
3201         Give a URL for texinfo.tex.
3202         (Public macros): Sort alphabetically, and move obsolete macros...
3203         (Obsolete macros): ... here.
3204         Prompted by Karl Berry.
3206 2005-03-29  Alexandre Duret-Lutz  <adl@gnu.org>
3208         * doc/automake.texi (Multiple Outputs): Fix mistakes reported by
3209         Jim Meyering.
3211         * lib/am/lisp.am ($(am__ELCFILES)): Prevent races if the recover
3212         rule is run with `make -j'.
3213         * doc/automake.texi (Multiple Outputs): Adjust.
3214         * tests/lisp6.test: Augment it.
3215         * tests/lisp8.test: New file.
3216         * tests/Makefile.am (TESTS): Add lisp8.test.
3217         Suggested by Bruno Haible.
3219 2005-03-27  Alexandre Duret-Lutz  <adl@gnu.org>
3221         * doc/automake.texi: Use @:, @., @!, and @tie{} where appropriate.
3223 2005-03-16  Alexandre Duret-Lutz  <adl@gnu.org>
3225         * lib/am/lisp.am ($(am__ELCFILES)): Do not attempt to recover
3226         a missing *.elc file if it cannot be created because emacs does
3227         not exist.
3228         * tests/lisp7.test: New file.
3229         * tests/Makefile.am (TESTS): Add lisp7.test.
3230         Report from Greg Schafer.
3232 2005-03-05  Alexandre Duret-Lutz  <adl@gnu.org>
3234         * doc/automake.texi: Replace wicked whiches by thats.
3236 2005-03-04  Alexandre Duret-Lutz  <adl@gnu.org>
3238         * aclocal.in (scan_configure_dep, scan_file): Include file names
3239         are relative to the directory of configure.ac, not to the
3240         directory of the file doing the include.  Remove code for this
3241         latter case.
3242         * tests/acloca13.test: Run distcheck and make sure all macros are
3243         actually distributed.
3245 2005-03-03  Alexandre Duret-Lutz  <adl@gnu.org>
3247         For PR automake/450:
3248         * aclocal.in (scan_file, scan_configure_dep): Skip missing sincluded
3249         files.
3250         * automake.in (scan_autoconf_traces): Likewise.
3251         * tests/sinclude.test: Augment.
3252         Report from Peter Breitenlohner.
3254         For PR automake/450:
3255         * aclocal.in (write_aclocal, trace_used_macros): Do not add/remove
3256         acinclude.m4 and configure.ac to the include map in these two
3257         places ...
3258         (strip_redundant_includes): ... do it here.  This completes the
3259         previous change from 2005-03-01, that did not update
3260         write_aclocal.
3261         * tests/acloca19.test: Augment.
3262         Report from Peter Breitenlohner.
3264 2005-03-02  Alexandre Duret-Lutz  <adl@gnu.org>
3266         * tests/comment9.test: Typo.
3268 2005-03-01  Alexandre Duret-Lutz  <adl@gnu.org>
3270         * automake.in (read_am_file): Preserve backslashes preceding ##-lines.
3271         * tests/comment9.test: New file.
3272         * tests/Makefile.am (TESTS): Add comment9.test.
3273         Report from Julien Sopena.
3275         For PR automake/450:
3276         * aclocal.in (trace_used_macros): Do not explicitly trace files
3277         included by configure.ac.
3278         * tests/acloca19.test: New file.
3279         * tests/Makefile.am (TESTS): Add acloca19.test.
3280         Report from Peter Breitenlohner.
3282 2005-02-27  Alexandre Duret-Lutz  <adl@gnu.org>
3284         Fix for PR automake/448:
3285         * automake.in (handle_factored_dependencies): Flag install-hook as
3286         an error.
3287         * tests/insthook.test: Exercise this.
3289         * m4/lispdir.m4: Use datarootdir instead of datadir to match GCS.
3290         * doc/automake.texi (Hard-Coded Install Paths): Adjust.
3292         * doc/automake.texi: Replace many uses of @samp by @code, and
3293         vice versa.  Use @command, @option, and @env where appropriate.
3295 2005-02-26  Alexandre Duret-Lutz  <adl@gnu.org>
3297         * doc/automake.texi: "filename" -> "file name", for consistency
3298         with GNU Coding Standards.  See also Paul's change on 2004-08-20
3299         in Autoconf.
3301         * doc/automake.texi (A Library, Libtool Libraries): Show how to link
3302         a program with a static or libtool library.
3303         (Program and Library Variables): Make clearer that _LDADD and
3304         _LIBADD may also list libraries.
3305         Prompted by a mail from Bruce Korb.
3307         * doc/automake.texi (Alternative): Show how to rewrite nobase_
3308         variables using custom directory variables, and link to node
3309         Uniform.  Suggested by Leonardo Boiko.
3311         * doc/automake.texi (Flag Variables Ordering, User Variables):
3312         Make clearer who the maintainer is, and that he can AC_SUBST AM_
3313         variables in configure.ac.  Suggested by Norman Gray.
3314         (Uniform, Public macros, Libtool Issues, Java Support,
3315         Conditionals): Use `---' for em dash, and stick them to the
3316         enclosing text.
3318         * doc/automake.texi: Reword a few sentences to fix all underflow
3319         and overflow warnings during `make dvi'.
3320         (Auxiliary Programs) <configure.guess, config.sub>: Update URL.
3321         (Public macros) <AM_WITH_DMALLOC>: Likewise.
3323 2005-02-12  Alexandre Duret-Lutz  <adl@gnu.org>
3325         * lib/INSTALL, lib/config-ml.in, lib/config.guess, lib/config.sub,
3326         lib/texinfo.tex: New upstream versions.
3328         * doc/automake.texi (Hard-Coded Install Paths): New node.
3329         (Extending, Extending aclocal, Python): Link to it.
3330         (Extending): Don't show how to install a file in /etc/ directly,
3331         this is insane.
3333         * automake.in (read_am_file): Define variables containing long
3334         lines as VAR_PRETTY to work around tools with limited input width.
3335         * tests/longlin2.test: New file.
3336         * tests/Makefile.am (TESTS): Add it.
3337         Report from Albert Chin.
3339 2005-02-09  Alexandre Duret-Lutz  <adl@gnu.org>
3341         Fix for PR automake/447:
3342         * lib/depcomp (tru64) [libtool]: Also check for $dir.libs/$base.o.d.
3343         Report from Mathias Doreille.  Add some old comments from
3344         Nicolas Joly for reference.
3346 2005-02-08  Stepan Kasal  <kasal@ucw.cz>
3348         * lib/mdate-sh: Check the size of the word following the month to
3349         catch Darwin.  This way the filename can contain spaces.
3351         * doc/automake.texi (Requirements, Options): Typos.
3353 2005-02-08  Alexandre Duret-Lutz  <adl@gnu.org>
3355         * lib/missing (makeinfo): Compute the output file if neither -o
3356         nor @setfilename is used.
3357         Reported by Miroslaw Dobrzanski-Neumann and Bruno Haible.
3359 2005-02-07  Alexandre Duret-Lutz  <adl@gnu.org>
3361         * doc/automake.texi (Requirements): Show one example of
3362         AC_CONFIG_FILES with multiple outputs, and correct a few typos.
3364         * aclocal.in ($serial_line_rx): Expect at least one space between
3365         `serial' and the following number.
3366         Report from Jim Meyering.
3368         * lib/mdate-sh: Cope with Darwin's Day/Month/Year output.
3369         Report from Peter O'Gorman.
3371 2005-02-06  Alexandre Duret-Lutz  <adl@gnu.org>
3373         * aclocal.in (usage, parse_arguments): New --dry-run and --diff
3374         options.
3375         (install_file, write_aclocal): Honor --dry-run and --diff.
3376         * doc/automake.texi (aclocal options): Document --dry-run and --diff.
3377         (Serials): Mention --diff.
3378         * lib/Automake/FileUtils.pm (handle_exec_errors): Accept an
3379         $expected_exit_code argument.
3380         (xsystem): Take a list of arguments, not a string.
3381         * tests/acloca18.test: Use --dry-run and --diff.
3382         Suggested by Paul Eggert.
3384         * doc/automake.texi (aclocal options, Macro search path,
3385         Extending aclocal, Local Macros, Serials, Future of aclocal): Make
3386         these subsection of ...
3387         (Invoking aclocal): ... this.
3389         * aclocal.in ($serial_line_rx): Allow trailing garbage after the
3390         serial number.
3391         (scan_file): Explicitly mark the "ill-formed serial" message
3392         as a warning.
3393         * doc/automake.texi (aclocal options, Local Macros): Link to...
3394         (Serials): ... this new section.
3396 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
3398         * lib/compile: Likewise.
3400 2005-02-02  Alexandre Duret-Lutz  <adl@gnu.org>
3402         * lib/elisp-comp: Use `(exit N); exit N', not `(exit N); exit';
3403         see 2004-12-17.
3404         * lib/mdate-sh, lib/py-compile, lib/ylwrap: Exit with nonzero
3405         status if a write failure occurs with --help or --version option,
3406         as below.
3408 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
3410         * lib/depcomp: Exit with nonzero status if a write failure occurs
3411         with --help or --version option.
3412         * lib/elisp-comp: Likewise.
3413         * lib/gnupload: Likewise.
3414         * lib/install-sh: Likewise.
3415         * lib/missing: Likewise.
3416         * lib/mkinstalldirs: Likewise.
3418 2005-02-01  Alexandre Duret-Lutz  <adl@gnu.org>
3420         * doc/automake.texi (aclocal options): Typo.
3422         * aclocal.in (list_compare): New functions.
3423         (scan_file): Honor #serial lines.
3424         * tests/acloca18.test: New test.
3425         * tests/Makefile.am (TESTS): Add it.
3426         * doc/automake.texi (aclocal options, Local Macros): Document
3427         #serial.
3429 2005-01-30  Alexandre Duret-Lutz  <adl@gnu.org>
3431         Preliminary support for `aclocal --install'.
3432         This still lacks #serial support.
3433         * aclocal.in (reset_maps, install_file): New functions.
3434         (write_aclocal): Copy files if --install.
3435         (usage, parse_arguments): Recognize --install.
3436         ("MAIN"): Start aclocal again if some file were installed.
3437         * tests/acloca10.test: Augment to test --install.
3438         * tests/aclocal.in, tests/defs.in: Add support for
3439         ACLOCAL_TESTSUITE_FLAGS, used by acloca10.test.
3440         * doc/automake.texi (aclocal options, Local Macros): Document
3441         --install.
3442         (Future of aclocal): Adjust.
3444         * doc/automake.texi (Macro search path): Using --acdir is not
3445         obvious, it's erroneous.
3447         * doc/automake.texi (direntry): Let `info Automake' point to the
3448         manual, and `info automake' to the `Invoking automake' node.  Like
3449         in Autoconf.
3451 2005-01-27  Akim Demaille  <akim@epita.fr>
3453         * lib/Automake/Configure_ac.pm: s/filename/file_name/g.
3454         From Paul Eggert.
3456 2005-01-24  Akim Demaille  <akim@epita.fr>
3458         * lib/Automake/FileUtils.pm: Rename filename as file_name to be
3459         consistent with the terminology of the GNU coding standards.
3460         From Paul Eggert.
3461         (update_file): Accept a $force argument, so that --force always
3462         updates the time stamps.
3464 2005-01-23  Alexandre Duret-Lutz  <adl@gnu.org>
3466         * doc/automake.texi (How the Linker is Chosen): Explain how the
3467         linker is chosen without diagram, and update to match the code.
3468         Suggestion from Adrian Bunk.
3470 2005-01-16  Alexandre Duret-Lutz  <adl@gnu.org>
3472         * lib/am/subdirs.am ($(RECURSIVE_TARGETS), $(RECURSIVE_CLEAN_TARGETS)):
3473         Process all words of $MAKEFLAGS when checking for -k.
3474         * tests/check4.test: New file.
3475         * tests/Makefile.am (TESTS): Add check4.test.
3476         Report from Eric Blake.
3478 2005-01-13  Alexandre Duret-Lutz  <adl@gnu.org>
3480         * m4/amversion.in (AM_AUTOMAKE_VERSION): Point users to
3481         AM_INIT_AUTOMAKE if the version passed is incorrect.
3482         * tests/version8.test: New file.
3483         * tests/Makefile.am (TESTS): Add version8.test.
3485 2005-01-09  Alexandre Duret-Lutz  <adl@gnu.org>
3487         * m4/amversion.in, m4/as.m4, m4/auxdir.m4, m4/ccstdc.m4,
3488         m4/cond.m4, m4/depend.m4, m4/depout.m4, m4/dmalloc.m4, m4/gcj.m4,
3489         m4/header.m4, m4/init.m4, m4/install-sh.m4, m4/lead-dot.m4,
3490         m4/lex.m4, m4/lispdir.m4, m4/maintainer.m4, m4/make.m4,
3491         m4/minuso.m4, m4/missing.m4, m4/mkdirp.m4, m4/multi.m4,
3492         m4/obsol-gt.m4, m4/obsol-lt.m4, m4/obsolete.m4, m4/options.m4,
3493         m4/protos.m4, m4/python.m4, m4/regex.m4, m4/runlog.m4,
3494         m4/sanity.m4, m4/strip.m4, m4/tar.m4: Use the same all-permissive
3495         license that is used in aclocal.m4.  Relicensing backed by RMS.
3497         * doc/automake.texi (A Library, LIBOBJS): Mention that empty
3498         libraries are not portable.
3500 2005-01-05  Akim Demaille  <akim@epita.fr>
3502         * aclocal.in ($ac_defun_rx): Match AU_ALIAS.
3503         * tests/aclocal5.test (MORE_DEFS): Rename as...
3504         (AM_TEST): this so that undefined macros are caught.
3505         And make it an alias of AC_SUBST.
3506         Test AU_ALIAS.
3507         Reported by Martin Bravenboer.
3509 2005-01-03  Alexandre Duret-Lutz  <adl@gnu.org>
3511         Fix handling of per-target flags in link rules.
3512         * automake.in (define_per_target_linker_variable): New function.
3513         (handle_programs, handle_ltlibraries): Use it.
3514         (%link_languages): New map.
3515         (register_language): Fill it.
3516         * lib/am/ltlibrary.am (%LTLIBRARY%): Do not append
3517         $(%XLTLIBRARY%_LDFLAGS) to the command, this is now done by
3518         define_per_target_linker_variable if needed.
3519         * lib/am/program.am (%PROGRAM%%EXEEXT%): Likewise with
3520         $(%XPROGRAM%_LDFLAGS).
3521         * doc/automake.texi (Program and Library Variables): Mention
3522         AM_LDFLAGS and AM_LIBTOOLFLAGS in the definition of maude_LDFLAGS
3523         and maude_LIBTOOLFLAGS.
3524         * tests/libtool9.test: New file.
3525         * tests/Makefile.am (TESTS): Add it.
3526         * NEWS: Explain the backward incompatibility.
3527         Report from Akim Demaille.
3529 2005-01-01  Alexandre Duret-Lutz  <adl@gnu.org>
3531         * doc/automake.texi (Requirements) <AC_CONFIG_FILES>: Discuss
3532         specifications with shell variables.
3533         (Optional) <AC_CONFIG_HEADERS, AC_CONFIG_LINKS>: Point to
3534         AC_CONFIG_FILES for this explanation.
3535         * automake.in (substitute_ac_subst_variables_worker,
3536         substitute_ac_subst_variables): Mew functions.
3537         (rewrite_inputs_into_dependencies): Use substitute_ac_subst_variables
3538         to ignore dependencies that contain unAC_SUBSTed shell variables.
3539         (handle_configure): Likewise, do not output rules for
3540         AC_CONFIG_HEADERS, AC_CONFIG_FILES, and AC_CONFIG_LINKS targets that
3541         unAC_SUBSTed contain shell variables.
3542         * tests/autohdr4.test: Use an AC_SUBST variable in a specification.
3543         * tests/output11.test, tests/output12.test: New files.
3544         * tests/Makefile.am (TESTS): Add output11.test and output12.test.
3546         * aclocal.in (parse_arguments, write_aclocal): Bump copyright year.
3547         * automake.in ($gen_copyright, version): Likewise.
3549 -----
3551 Copyright (C) 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
3553 Copying and distribution of this file, with or without modification, are
3554 permitted provided the copyright notice and this notice are preserved.
3556 ;; Variables:
3557 ;; coding: utf-8
3558 ;; End: