tags: unify recursion for tags targets with that of "usual" targets
[platform/upstream/automake.git] / NEWS
1 New in 1.13:
2
3 * Version requirements:
4
5   - Autoconf 2.65 or greater is required.
6
7   - The rules to build PDF and DVI output from Texinfo input now
8     requires Texinfo 4.9 or later.
9
10 * Obsolete features removed:
11
12   - Use of the long-deprecated two- and three-arguments invocation forms
13     of the AM_INIT_AUTOMAKE is not supported anymore.
14
15   - Support for the "Cygnus-style" trees (once enabled by the 'cygnus'
16     option) has been removed.  See discussion about automake bug#11034
17     for more background.
18
19   - The automake-provided '@mkdir_p@' configure substitution and
20     AM_PROG_MKDIR m4 macro have been removed.  They had been obsolete
21     since automake 1.10, and actively deprecated since Automake 1.12.1.
22     However, to maintain a degree of backward-compatibility, the make
23     variable '$(mkdir_p)' is still defined (now simple as an alias to
24     '$(MKDIR_P)').  It will probably be removed in future major versions
25     of Automake (probably 1.14).
26
27   - The deprecated aclocal option '--acdir' has been removed.  You
28     should use the options '--automake-acdir' and '--system-acdir'
29     instead (which have been introduced in Automake 1.11.2).
30
31   - The following long-obsolete m4 macros have been removed:
32
33       AM_PROG_CC_STDC:    superseded by AC_PROG_CC since October 2002
34       fp_PROG_CC_STDC:    broken alias for AM_PROG_CC_STDC
35       fp_WITH_DMALLOC:    old alias for AM_WITH_DMALLOC
36       AM_CONFIG_HEADER:   superseded by AC_CONFIG_HEADERS since July 2002
37       ud_PATH_LISPDIR:    old alias for AM_PATH_LISPDIR
38       jm_MAINTAINER_MODE: old alias for AM_MAINTAINER_MODE
39       ud_GNU_GETTEXT:     old alias for AM_GNU_GETTEXT
40       gm_PROG_LIBTOOL:    old alias for AC_PROG_LIBTOOL
41       fp_C_PROTOTYPES:    old alias for AM_C_PROTOTYPES (which was part
42                           of the now-removed automatic de-ANSI-fication
43                           support of Automake)
44
45   - All the "old alias" macros in 'm4/obsolete.m4' have been removed.
46
47 * Changes to Automake-generated testsuite harnesses:
48
49   - The parallel testsuite harness (previously only enabled by the
50     'parallel-tests' option) is the default one; the older serial
51     testsuite harness will still be available through the use of the
52     'serial-tests' option (introduced in Automake 1.12).
53
54 * Silent rules support:
55
56   - Support for silent rules is now always active in Automake-generated
57     Makefiles.  So, although the verbose output is still the default,
58     the user can now always use "./configure --enable-silent-rules" or
59     "make V=0" to enable quieter output in the package he's building.
60
61   - The 'silent-rules' option has now become a no-op, preserved for
62     backward-compatibility only.  In particular, its use does not disable
63     the warnings in the 'portability-recursive' category anymore.
64
65 * Texinfo Support:
66
67   - The rules to build PDF and DVI files from Texinfo input now use the
68     ' --build-dir' option, to keep the auxiliary files used by texi2dvi
69     and texi2pdf around without cluttering the build directory, and to
70     make it possible to run the "dvi" and "pdf" recipes in parallel.
71
72 * Automatic remake rules and 'missing' script:
73
74   - The 'missing' script does not try anymore to update the timestamp
75     of out-of-date files that require a maintainer-specific tool to be
76     remade, in case the user lacks such a tool (or has a too-old version
77     of it).  It just give a useful warning, and in some cases also a tip
78     about how to obtain such a tool.
79
80   - The missing script has thus become useless as a (poor) way to work
81     around the sketched-timestamps issues that can happen for projects
82     that keep generated files committed in their VCS repository.  Such
83     projects are now encouraged to write a custom "fix-timestamps.sh"
84     script to avoid such issues; a simple example is provided in the
85     "CVS and generated files" chapter of the automake manual.
86
87 * Recursive targets:
88
89   The user can now define his own recursive targets that recurse
90   in the directories specified in $(SUBDIRS).  This can be done by
91   specifying the name of such targets in invocations of the new
92   'AM_EXTRA_RECURSIVE_TARGETS' m4 macro.
93
94   - Any failure in the recipe of the "tags", "ctags", "cscope" or
95     "cscopelist" targets in a subdirectory is now propagated to the
96     top-level make invocation.
97
98 * Improvements to aclocal and related rebuilds rules:
99
100   - The Autoconf-provided macro AC_CONFIG_MACRO_DIR is now traced by
101     aclocal, and can be used to declare the local m4 include directory.
102     Formerly, one had to specify it with an explicit '-I' option to the
103     'aclocal' invocation.
104
105   - The special make variable ACLOCAL_AMFLAGS is deprecated; future
106     Automake versions will warn about its use, and later version will
107     remove support for it altogether.
108
109 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
110
111 New in 1.12.3:
112
113 * WARNING: Future backward-incompatibilities!
114
115   - Future versions of Automake will likely drop support for the
116     long-deprecated 'configure.in' name for the Autoconf input file.
117     You are advised to use the recommended name 'configure.ac' instead.
118
119   - Starting from the next major Automake version (1.13), the rules to
120     build pdf, ps and dvi output from Texinfo input will use the '--tidy'
121     option by default.  Since such an option was introduced in Texinfo
122     4.9, this means that Makefiles generated by future Automake versions
123     will require at least that version of Texinfo.
124
125   - Starting from the next major Automake version (1.13), the parallel
126     testsuite harness (previously only enabled by the 'parallel-tests'
127     option) will become the default one; the older serial testsuite
128     harness will still be available through the use of the 'serial-tests'
129     option.
130
131   - Support for the two- and three-arguments invocation forms of the
132     AM_INIT_AUTOMAKE macro is deprecated, and will be removed in the
133     next major Automake version (1.13).
134
135   - The exact order in which the directories in the aclocal macro
136     search path are looked up is probably going to be changed in the
137     next Automake release (1.13).
138
139   - The 'missing' script will not try anymore to update the timestamp
140     of out-of-date files that require a maintainer-specific tool to be
141     remade, in case the user lacks such a tool (or has a too-old version
142     of it).  In fact, starting from Automake 1.13, all it'll do will be
143     giving more useful warnings than a bare "command not found" from a
144     make recipe would.
145
146 * M4 files:
147
148   - The '.m4' files provided by Automake does not define serial numbers
149     anymore.  This should cause no difference in the behaviour of aclocal
150     though.
151
152 * Automake Testsuite:
153
154   - Some testsuite weaknesses and spurious failures have been fixed.
155
156 * Long-standing bugs:
157
158   - Instead of renaming only self-references of files (typically for
159     #lines), ylwrap now also renames references to the other generated
160     files.  This fixes support for GLR and C++ parsers from Bison (PR
161     automake/491 and automake bug#7648): 'parser.c' now properly
162     #includes 'parser.h' instead of 'y.tab.h'.
163
164   - Generated files unknown to ylwrap are now preserved.  This fixes
165     C++ support for Bison (automake bug#7648): location.hh and the
166     like are no longer discarded.
167
168 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
169
170 New in 1.12.2:
171
172 * Warnings and deprecations:
173
174   - Automake now issues a warning (in the 'portability' category) if
175     'configure.in' is used instead of 'configure.ac' as the Autoconf
176     input file.  Such a warning will also be present in the next
177     Autoconf version (2.70).
178
179 * Cleaning rules:
180
181   - Recursive cleaning rules descends into the $(SUBDIRS) in the natural
182     order (as done by the other recursive rules), rather than in the
183     inverse order.  They used to do that in order to work a round a
184     limitation in an older implementation of the automatic dependency
185     tracking support, but that limitation had been lifted years ago
186     already, when the automatic dependency tracking based on side-effects
187     of compilation had been introduced.
188
189   - Cleaning rules for compiled objects (both "plain" and libtool) work
190     better when subdir objects are involved, not triggering a distinct
191     'rm' invocation for each such object.  They do so by removing *any*
192     compiled object file that is in the same directory of a subdir
193     object.  See automake bug#10697.
194
195 * Silent rules support:
196
197   - A new predefined $(AM_V_P) make variable is provided; it expands
198     to a shell conditional that can be used in recipes to know whether
199     make is being run in silent or verbose mode.
200
201 Bugs fixed in 1.12.2:
202
203 * SECURITY VULNERABILITIES!
204
205   - The 'distcheck' recipe no longer grants temporary world-write
206     permissions on the extracted distdir.  Even if such rights were
207     only granted for a vanishingly small time window, the implied
208     race condition proved to be enough to allow a local attacker
209     to run arbitrary code with the privileges of the user running
210     "make distcheck".  This is CVE-2012-3386.
211
212 * Long-standing bugs:
213
214   - The "recheck" targets behaves better in the face of build failures
215     related to previously failed tests.  For example, if a test is a
216     compiled program that must be rerun by "make recheck", and its
217     compilation fails, it will still be rerun by further "make recheck"
218     invocations.  See automake bug#11791.
219
220 * Bugs introduced by 1.12.1:
221
222   - Automake provides once again the '$(mkdir_p)' make variable and the
223     '@mkdir_p@' substitution (both as simple aliases for '$(MKDIR_P)'),
224     for better backward-compatibility.
225
226 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
227
228 New in 1.12.1:
229
230 * New supported languages:
231
232   - Support for Objective C++ has been added; it should work similarly to
233     the support for Objective C.
234
235 * Deprecated obsolescent features:
236
237   - Use of the long-deprecated two- and three-arguments invocation forms
238     of the AM_INIT_AUTOMAKE macro now elicits a warning in the 'obsolete'
239     category.  Starting from the next major Automake release (1.13), such
240     usages won't be allowed anymore.
241
242   - Support for the "Cygnus-style" trees (enabled by the 'cygnus' option) is
243     now deprecated (its use triggers a warning in the 'obsolete' category).
244     It will be removed in the next major Automake release (1.13).
245
246   - The long-obsolete (since 1.10) automake-provided $(mkdir_p) make
247     variable, @mkdir_p@ configure-time substitution and AM_PROG_MKDIR
248     m4 macro are deprecated, eliciting a warning in the 'obsolete'
249     category.
250
251 * Miscellaneous changes:
252
253   - The Automake test cases now require a proper POSIX-conforming shell.
254     Older non-POSIX Bourne shells (like Solaris 10 /bin/sh) won't be
255     accepted anymore.  In most cases, the user shouldn't have to specify
256     such POSIX shell explicitly, since it will be looked up at configure
257     time.  Still, when this lookup fails, or when the user wants to
258     override its conclusion, the variable 'AM_TEST_RUNNER_SHELL' can be
259     used (pointing to the shell that will be used to run the Automake
260     test cases).
261
262 Bugs fixed in 1.12.1:
263
264 * Bugs introduced by 1.12:
265
266   - Several weaknesses in Automake's own build system and test suite
267     have been fixed.
268
269 * Bugs introduced by 1.11.3:
270
271   - When given non-option arguments, aclocal rejects them, instead of
272     silently ignoring them.
273
274 * Long-standing bugs:
275
276   - When the 'color-tests' option is in use, forcing of colored testsuite
277     output through "AM_COLOR_TESTS=always" works even if the terminal is
278     a non-ANSI one, i.e., if the TERM environment variable has a value of
279     "dumb".
280
281   - Several inefficiencies and poor performances in the implementation
282     of the parallel-tests 'check' and 'recheck' targets have been fixed.
283
284   - The post-processing of output "#line" directives done the ylwrap
285     script is more faithful w.r.t. files in a subdirectory; for example,
286     if the processed file is "src/grammar.y", ylwrap will correctly
287     produce directives like:
288         #line 7 "src/grammar.y"
289     rather than like
290         #line 7 "grammar.y"
291     as it did before.
292
293 * Bugs with new Perl versions:
294
295   - Aclocal works correctly with perl 5.16.0 (automake bug#11543).
296
297 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
298
299 New in 1.12:
300
301 * Obsolete features removed:
302
303   - The never documented nor truly used script 'acinstall' has been
304     removed.
305
306   - Support for automatic de-ANSI-fication has been removed.
307
308   - The support for the "obscure" multilib feature has been removed
309     from Automake core (but remains available in the 'contrib/'
310     directory of the Automake distribution).
311
312   - Support for ".log -> .html" conversion and the check-html and
313     recheck-html targets has been removed from Automake core (but
314     remains available in the 'contrib/' directory of the Automake
315     distribution).
316
317   - The deprecated 'lzma' compression format for distribution archives
318     has been removed, in favor of 'xz' and 'lzip'.
319
320   - The obsolete AM_WITH_REGEX macro has been removed.
321
322   - The long-deprecated options '--output-dir', '--Werror' and
323     '--Wno-error' have been removed.
324
325   - The chapter on the history of Automake has been moved out of the
326     reference manual, into a new dedicated Texinfo file.
327
328 * New targets:
329
330   - New 'cscope' target to build a cscope database for the source tree.
331
332 * Changes to Automake-generated testsuite harnesses:
333
334   - The new automake option 'serial-tests' has been introduced.  It can
335     be used to explicitly instruct automake to use the older serial
336     testsuite harness.  This is still the default at the moment, but it
337     might change in future versions.
338
339   - The 'recheck' target (provided by the parallel testsuite harness) now
340     depends on the 'all' target.  This allows for a better user-experience
341     in test-driven development.  See automake bug#11252.
342
343   - Test scripts that exit with status 99 to signal an "hard error" (e.g.,
344     and unexpected or internal error, or a failure to set up the test case
345     scenario) have their outcome reported as an 'ERROR' now.  Previous
346     versions of automake reported such an outcome as a 'FAIL' (the only
347     difference with normal failures being that hard errors were counted
348     as failures even when the test originating them was listed in
349     XFAIL_TESTS).
350
351   - The testsuite summary displayed by the parallel-test harness has a
352     completely new format, that always list the numbers of passed, failed,
353     xfailed, xpassed, skipped and errored tests, even when these numbers
354     are zero (but using smart coloring when the color-tests option is in
355     effect).
356
357   - The default testsuite driver offered by the 'parallel-tests' option is
358     now implemented (partly at least) with the help of automake-provided
359     auxiliary scripts (e.g., 'test-driver'), instead of relying entirely
360     on code in the generated Makefile.in.
361     This has two noteworthy implications.  The first one is that projects
362     using the 'parallel-tests' option should now either run automake with
363     the '--add-missing' option, or manually copy the 'test-driver' script
364     into their tree.  The second, and more important, implication is that
365     now, when the 'parallel-tests' option is in use, TESTS_ENVIRONMENT can
366     not be used anymore to define a test runner, and the command specified
367     in LOG_COMPILER (and <ext>_LOG_COMPILER) must be a *real* executable
368     program or script.  For example, this is still a valid usage (albeit
369     a little contorted):
370
371       TESTS_ENVIRONMENT = \
372         if test -n '$(STRICT_TESTS)'; then \
373           maybe_errexit='-e'; \
374         else \
375           maybe_errexit=''; \
376         fi;
377       LOG_COMPILER = $(SHELL) $$maybe_errexit
378
379     while this is not anymore:
380
381       TESTS_ENVIRONMENT = \
382         $(SHELL) `test -n '$(STRICT_TESTS_CHECKING)' && echo ' -e'`
383
384     neither is this:
385
386       TESTS_ENVIRONMENT = \
387         run_with_perl_or_shell () \
388         { \
389           if grep -q '^#!.*perl' $$1; then
390             $(PERL) $$1; \
391           else \
392             $(SHELL) $$1; \
393           fi; \
394         }
395       LOG_COMPILER = run_with_perl_or_shell
396
397   - The package authors can now use customary testsuite drivers within
398     the framework provided by the 'parallel-tests' testsuite harness.
399     Consistently with the existing syntax, this can be done by defining
400     special makefile variables 'LOG_DRIVER' and '<ext>_LOG_DRIVER'.
401
402   - A new developer-reserved variable 'AM_TESTS_FD_REDIRECT' can be used
403     to redirect/define file descriptors used by the test scripts.
404
405   - The parallel-tests harness generates now, in addition the '.log' files
406     holding the output produced by the test scripts, a new set of '.trs'
407     files, holding "metadata" derived by the execution of the test scripts;
408     among such metadata are the outcomes of the test cases run by a script.
409
410   - Initial and still experimental support for the TAP test protocol is
411     now provided.
412
413 * Changes to Yacc and Lex support:
414
415   - C source and header files derived from non-distributed Yacc and/or
416     Lex sources are now removed by a simple "make clean" (while they were
417     previously removed only by "make maintainer-clean").
418
419   - Slightly backward-incompatible change, relevant only for use of Yacc
420     with C++: the extensions of the header files produced by the Yacc
421     rules are now modelled after the extension of the corresponding
422     sources.  For example, yacc files named "foo.y++" and "bar.yy" will
423     produce header files named "foo.h++" and "bar.hh" respectively, where
424     they would have previously produced header files named simply "foo.h"
425     and "bar.h".  This change offers better compatibility with 'bison -o'.
426
427 * Miscellaneous changes:
428
429   - The AM_PROG_VALAC macro now causes configure to exit with status 77,
430     rather than 1, if the vala compiler found is too old.
431
432   - The build system of Automake itself now avoids the use of make
433     recursion as much as possible.
434
435   - Automake now prefers to quote 'like this' or "like this", rather
436     than `like this', in diagnostic message and generated Makefiles,
437     to accommodate the new GNU Coding Standards recommendations.
438
439   - Automake has a new option '--print-libdir' that prints the path of the
440     directory containing the Automake-provided scripts and data files.
441
442   - The 'dist' and 'dist-all' targets now can run compressors in parallel.
443
444   - The rules to create pdf, dvi and ps output from Texinfo files now
445     works better with modern 'texi2dvi' script, by explicitly passing
446     it the '--clean' option to ensure stray auxiliary files are not
447     left to clutter the build directory.
448
449   - Automake can now generate silenced rules for texinfo outputs.
450
451   - Some auxiliary files that are automatically distributed by Automake
452     (e.g., 'install-sh', or the 'depcomp' script for packages compiling
453     C sources) might now be listed in the DIST_COMMON variable in many
454     Makefile.in files, rather than in the top-level one.
455
456   - Messages of types warning or error from 'automake' and 'aclocal'
457     are now prefixed with the respective type, and presence of -Werror
458     is noted.
459
460   - Automake's early configure-time sanity check now tries to avoid
461     sleeping for a second, which slowed down cached configure runs
462     noticeably.  In that case, it will check back at the end of the
463     configure script to ensure that at least one second has passed, to
464     avoid time stamp issues with makefile rules rerunning autotools
465     programs.
466
467   - The warnings in the category 'extra-portability' are now enabled by
468     '-Wall'.  In previous versions, one has to use '-Wextra-portability'
469     to enable them.
470
471 Bugs fixed in 1.12:
472
473   - Various minor bugfixes for recent or long-standing bugs.
474
475 * Bugs introduced by 1.11:
476
477   - The AM_COND_IF macro also works if the shell expression for the
478     conditional is no longer valid for the condition.
479
480   - The automake-provided parallel testsuite harness does not fail anymore
481     with BSD make used in parallel mode when there are test scripts in a
482     subdirectory, like in:
483
484       TESTS = sub/foo.test sub/bar.test
485
486 * Long-standing bugs:
487
488   - Automake's own build system finally have a real "installcheck" target.
489
490   - Vala-related cleanup rules are now more complete, and work better in
491     a VPATH setup.
492
493   - Files listed with the AC_REQUIRE_AUX_FILE macro in configure.ac are
494     now automatically distributed also if the directory of the auxiliary
495     files coincides with the top-level directory.
496
497   - Automake now detects the presence of the '-d' flag in the various
498     '*YFLAGS' variables even when their definitions involve indirections
499     through other variables, such as in:
500       foo_opts = -d
501       AM_YFLAGS = $(foo_opts)
502
503   - Automake now complains if a '*YFLAGS' variable has any conditional
504     content, not only a conditional definition.
505
506   - Explicit enabling and/or disabling of Automake warning categories
507     through the '-W...' options now always takes precedence over the
508     implicit warning level implied by Automake strictness (foreign, gnu
509     or gnits), regardless of the order in which such strictness and
510     warning flags appear.  For example, a setting like:
511       AUTOMAKE_OPTIONS = -Wall --foreign
512     will cause the warnings in category 'portability' to be enabled, even
513     if those warnings are by default disabled in 'foreign' strictness.
514
515 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
516
517 Bugs fixed in 1.11.5:
518
519 * Bugs introduced by 1.11.3:
520
521   - Vala files with '.vapi' extension are now recognized and handled
522     correctly again.  See automake bug#11222.
523
524   - Vala support work again for projects that contain some program
525     built from '.vala' (and possibly '.c') sources and some other
526     program built from '.c' sources *only*.  See automake bug#11229.
527
528 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
529
530 New in 1.11.4:
531
532 * Miscellaneous changes:
533
534   - The 'ar-lib' script now ignores the "s" (symbol index) and "S" (no
535     symbol index) modifiers as well as the "s" action, as the symbol index
536     is created unconditionally by Microsoft lib.  Also, the "q" (quick)
537     action is now a synonym for "r" (replace).  Also, the script has been
538     ignoring the "v" (verbose) modifier already since Automake 1.11.3.
539
540   - When the 'compile' script is used to wrap MSVC, it now accepts an
541     optional space between the -I, -L and -l options and their respective
542     arguments, for better POSIX compliance.
543
544   - There is an initial, experimental support for automatic dependency
545     tracking with tcc (the Tiny C Compiler).  Its associated depmode is
546     currently recognized as "icc" (but this and other details are likely
547     to change in future versions).
548
549   - Automatic dependency tracking now works also with the IBM XL C/C++
550     compilers, thanks to the new new depmode 'xlc'.
551
552 Bugs fixed in 1.11.4:
553
554 * Bugs introduced by 1.11.2:
555
556   - A definition of 'noinst_PYTHON' before 'python_PYTHON' (or similar)
557     don't cause spurious failures upon "make install" anymore.
558
559   - The user can now instruct the 'uninstall-info' rule not to update
560     the '${infodir}/dir' file by exporting the environment variable
561     'AM_UPDATE_INFO_DIR' to the value "no".  This is done for consistency
562     with how the 'install-info' rule operates since automake 1.11.2.
563
564 * Long-standing bugs:
565
566   - It is now possible for a foo_SOURCES variable to hold Vala sources
567     together with C header files, as well as with sources and headers for
568     other supported languages (e.g., C++).  Previously, only mixing C and
569     Vala sources was supported.
570
571   - If "aclocal --install" is used, and the first directory specified with
572     '-I' is non-existent, aclocal will now create it before trying to copy
573     files in it.
574
575   - An empty declaration of a "foo_PRIMARY" don't cause anymore the
576     generated install rules to create an empty $(foodir) directory;
577     for example, if Makefile.am contains something like:
578
579       pkglibexec_SCRIPTS =
580       if FALSE
581       pkglibexec_SCRIPTS += bar.sh
582       endif
583
584     the $(pkglibexec) directory will not be created upon "make install".
585
586 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
587
588 New in 1.11.3:
589
590 * Miscellaneous changes:
591
592   - Automake's own build system is more silent by default, making use of
593     the 'silent-rules' option.
594
595   - The master copy of the `gnupload' script is now maintained in gnulib,
596     not in automake.
597
598   - The `missing' script doesn't try to wrap calls to `tar' anymore.
599
600   - "make dist" doesn't wrap `tar' invocations with the `missing' script
601     anymore.  Similarly, the obsolescent variable `$(AMTAR)' (which you
602     shouldn't be using BTW ;-) does not invoke the missing script anymore
603     to wrap tar, but simply invokes the `tar' program itself.
604
605   - "make dist" can now create lzip-compressed tarballs.
606
607   - In the Automake info documentation, the Top node and the nodes about
608     the invocation of the automake and aclocal programs have been renamed;
609     now, calling "info automake" will open the Top node, while calling
610     "info automake-invocation" and "info aclocal-invocation" will access
611     the nodes about the invocation of respectively automake and aclocal.
612
613   - Automake is now distributed as a gzip-compressed and an xz-compressed
614     tarball.  Previously, bzip2 was used instead of xz.
615
616   - The last relics of Python 1.5 support have been removed from the
617     AM_PATH_PYTHON macro.
618
619   - For programs and libraries, automake now detects EXTRA_foo_DEPENDENCIES
620     and adds them to the normal list of dependencies, but without
621     overwriting the foo_DEPENDENCIES variable, which is normally computed
622     by automake.
623
624 Bugs fixed in 1.11.3:
625
626 * Bugs introduced by 1.11.2:
627
628   - Automake now correctly recognizes the prefix/primary combination
629    `pkglibexec_SCRIPTS' as valid.
630
631   - The parallel-tests harness doesn't trip anymore on sed implementations
632     with stricter limits on the length of input lines (problem seen at
633     least on Solaris 8).
634
635 * Long-standing bugs:
636
637   - The "deleted header file problem" for *.am files is avoided by stub
638     rules.  This allows `make' to trigger a rerun of `automake' also if
639     some previously needed `.am' file has been removed.
640
641   - The `silent-rules' option now generates working makefiles even
642     for the uncommon `make' implementations that do not support the
643     nested-variables extension to POSIX 2008.  For such `make'
644     implementations, whether a build is silent is determined at
645     configure time, and cannot be overridden at make time with
646     `make V=0' or `make V=1'.
647
648   - Vala support now works better in VPATH setups.
649
650 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
651
652 New in 1.11.2:
653
654 * Changes to aclocal:
655
656   - The `--acdir' option is deprecated.  Now you should use the new options
657     `--automake-acdir' and `--system-acdir' instead.
658
659   - The `ACLOCAL_PATH' environment variable is now interpreted as a
660     colon-separated list of additional directories to search after the
661     automake internal acdir (by default ${prefix}/share/aclocal-APIVERSION)
662     and before the system acdir (by default ${prefix}/share/aclocal).
663
664 * Miscellaneous changes:
665
666   - The Automake support for automatic de-ANSI-fication has been
667     deprecated.  It will probably be removed in the next major Automake
668     release (1.12).
669
670   - The `lzma' compression scheme and associated automake option `dist-lzma'
671     is obsoleted by `xz' and `dist-xz' due to upstream changes.
672
673   - You may adjust the compression options used in dist-xz and dist-bzip2.
674     The default is now merely -e for xz, but still -9 for bzip;  you may
675     specify a different level via the XZ_OPT and BZIP2 envvars respectively.
676     E.g., "make dist-xz XZ_OPT=-7" or "make dist-bzip2 BZIP2=-5"
677
678   - The `compile' script now converts some options for MSVC for a better
679     user experience.  Similarly, the new `ar-lib' script wraps Microsoft lib.
680
681   - The py-compile script now accepts empty arguments passed to the options
682     `--destdir' and `--basedir', and complains about unrecognized options.
683     Moreover, a non-option argument or a special `--' argument terminates
684     the list of options.
685
686   - A developer that needs to pass specific flags to configure at "make
687     distcheck" time can now, and indeed is advised to, do so by defining
688     the developer-reserved makefile variable AM_DISTCHECK_CONFIGURE_FLAGS,
689     instead of the old DISTCHECK_CONFIGURE_FLAGS.
690     The DISTCHECK_CONFIGURE_FLAGS variable should now be reserved for the
691     user; still, the old Makefile.am files that used to define it will
692     still continue to work as before.
693
694   - New macro AM_PROG_AR that looks for an archiver and wraps it in the new
695     'ar-lib' auxiliary script if the selected archiver is Microsoft lib.
696     This new macro is required for LIBRARIES and LTLIBRARIES when automake
697     is run with -Wextra-portability and -Werror.
698
699   - When using DejaGnu-based testsuites, the user can extend the `site.exp'
700     file generated by automake-provided rules by defining the special make
701     variable `$(EXTRA_DEJAGNU_SITE_CONFIG)'.
702
703   - The `install-info' rule can now be instructed not to create/update
704     the `${infodir}/dir' file, by exporting the new environment variable
705     `AM_UPDATE_INFO_DIR' to the value "no".
706
707 Bugs fixed in 1.11.2:
708
709 * Bugs introduced by 1.11:
710
711   - The parallel-tests driver no longer produces erroneous results with
712     Tru64/OSF 5.1 sh upon unreadable log files.
713
714   - The `parallel-tests' test driver does not report spurious successes
715     when used with concurrent FreeBSD make (e.g., "make check -j3").
716
717   - When the parallel-tests driver is in use, automake now explicitly
718     rejects invalid entries and conditional contents in TEST_EXTENSIONS,
719     instead of issuing confusing and apparently unrelated error messages
720     (e.g., "non-POSIX variable name", "bad characters in variable name",
721     or "redefinition of TEST_EXTENSIONS), or even, in some situations,
722     silently producing broken `Makefile.in' files.
723
724   - The `silent-rules' option now truly silences all compile rules, even
725     when dependency tracking is disabled.  Also, when `silent-rules' is
726     not used, `make' output no longer contains spurious backslash-only
727     lines, thus once again matching what Automake did before 1.11.
728
729   - The AM_COND_IF macro also works if the shell expression for the
730     conditional is no longer valid for the condition.
731
732 * Long-standing bugs:
733
734   - The order of Yacc and Lex flags is fixed to be consistent with other
735     languages: $(AM_YFLAGS) comes before $(YFLAGS), and $(AM_LFLAGS) before
736     $(LFLAGS), so that the user variables override the developer variables.
737
738   - "make distcheck" now correctly complains also when "make uninstall"
739     leaves one and only one file installed in $(prefix).
740
741   - A "make uninstall" issued before a "make install", or after a mere
742     "make install-data" or a mere "make install-exec" does not spuriously
743     fail anymore.
744
745   - Automake now warns about more primary/directory invalid combinations,
746     such as "doc_LIBRARIES" or "pkglib_PROGRAMS".
747
748   - Rules generated by Automake now try harder to not change any files when
749     `make -n' is invoked.  Fixes include compilation of Emacs Lisp, Vala, or
750     Yacc source files and the rule to update config.h.
751
752   - Several scripts and the parallel-tests testsuite driver now exit with
753     the right exit status upon receiving a signal.
754
755   - A per-Makefile.am setting of -Werror does not erroneously carry over
756     to the handling of other Makefile.am files.
757
758   - The code for automatic dependency tracking works around a Solaris
759     make bug triggered by sources containing repeated slashes when the
760     `subdir-objects' option was used.
761
762   - The makedepend and hp depmodes now work better with VPATH builds.
763
764   - Java sources specified with check_JAVA are no longer compiled for
765     "make all", but only for "make check".
766
767   - An usage like "java_JAVA = foo.java" will now cause Automake to warn
768     and error out if `javadir' is undefined, instead of silently producing
769     a broken Makefile.in.
770
771   - aclocal and automake now honour the configure-time definitions of
772     AUTOCONF and AUTOM4TE when they spawn autoconf or autom4te processes.
773
774   - The `install-info' recipe no longer tries to guess whether the
775     `install-info' program is from Debian or from GNU, and adaptively
776     change its behaviour; this has proven to be frail and easy to
777     regress.
778
779 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
780
781 Bugs fixed in 1.11.1:
782
783   - Lots of minor bugfixes.
784
785 * Bugs introduced by 1.11:
786
787   - The `parallel-tests' test driver works around a GNU make 3.80 bug with
788     trailing white space in the test list (`TESTS = foo $(EMPTY)').
789
790 * Long standing bugs:
791
792   - On Darwin 9, `pythondir' and `pyexecdir' pointed below `/Library/Python'
793     even if the `--prefix' argument pointed outside of a system directory.
794     AM_PATH_PYTHON has been fixed to ignore the value returned from python's
795     `get_python_lib' function if it points outside the configured prefix,
796     unless the `--prefix' argument was either `/usr' or below `/System'.
797
798   - The testsuite does not try to change the mode of `ltmain.sh' files from
799     a Libtool installation (symlinked to test directories) any more.
800
801   - AM_PROG_GCJ uses AC_CHECK_TOOLS to look for `gcj' now, so that prefixed
802     tools are preferred in a cross-compile setup.
803
804   - The distribution is tarred up with mode 755 now by the `dist*' targets.
805     This fixes a race condition where untrusted users could modify files
806     in the $(PACKAGE)-$(VERSION) distdir before packing if the toplevel
807     build directory was world-searchable.  This is CVE-2009-4029.
808
809 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
810
811 New in 1.11:
812
813 * Version requirements:
814
815   - Autoconf 2.62 or greater is required.
816
817 * Changes to aclocal:
818
819   - The autoconf version check implemented by aclocal in aclocal.m4
820     (and new in Automake 1.10) is degraded to a warning.  This helps
821     in the common case where the Autoconf versions used are compatible.
822
823 * Changes to automake:
824
825   - The automake program can run multiple threads for creating most
826     Makefile.in files concurrently, if at least Perl 5.7.2 is available
827     with interpreter-based threads enabled.  Set the environment variable
828     AUTOMAKE_JOBS to the maximum number of threads to use, in order to
829     enable this experimental feature.
830
831 * Changes to Libtool support:
832
833   - Libtool generic flags are now passed to the install and uninstall
834     modes as well.
835
836   - distcheck works with Libtool 2.x even when LT_OUTPUT is used, as
837     config.lt is removed correctly now.
838
839 * Languages changes:
840
841   - subdir-object mode works now with Fortran (F77, FC, preprocessed
842     Fortran, and Ratfor).
843
844   - For files with extension .f90, .f95, .f03, or .f08, the flag
845     $(FCFLAGS_f[09]x) computed by AC_FC_SRCEXT is now used in compile rules.
846
847   - Files with extension .sx are also treated as preprocessed assembler.
848
849   - The default source file extension (.c) can be overridden with
850     AM_DEFAULT_SOURCE_EXT now.
851
852   - Python 3.0 is supported now, Python releases prior to 2.0 are no
853     longer supported.
854
855   - AM_PATH_PYTHON honors python's idea about the site directory.
856
857   - There is initial support for the Vala programming language, when using
858     Vala 0.7.0 or later.
859
860 * Miscellaneous changes:
861
862   - Automake development is done in a git repository on Savannah now, see
863
864       http://git.sv.gnu.org/gitweb/?p=automake.git
865
866     A read-only CVS mirror is provided at
867
868       cvs -d :pserver:anonymous@pserver.git.sv.gnu.org:/automake.git \
869           checkout -d automake HEAD
870
871   - "make dist" can now create xz-compressed tarballs,
872     as well as (deprecated?) lzma-compressed tarballs.
873
874   - `automake --add-missing' will by default install the GPLv3 file as
875     COPYING if it is missing.  It will also warn that the license file
876     should be added to source control.  Note that Automake will never
877     overwrite an existing COPYING file, even when the `--force-missing'
878     option is used.
879
880   - The manual is now distributed under the terms of the GNU FDL 1.3.
881
882   - Automake ships and installs man pages for automake and aclocal now.
883
884   - New shorthand `$(pkglibexecdir)' for `$(libexecdir)/@PACKAGE@'.
885
886   - install-sh supports -C, which does not update the installed file
887     (and its time stamps) if the contents did not change.
888
889   - The `gnupload' script has been revamped.
890
891   - The `depcomp' and `compile' scripts now work with MSVC under MSYS.
892
893   - The targets `install' and `uninstall' are more efficient now, in that
894     for example multiple files from one Automake variable such as
895     `bin_SCRIPTS' are copied in one `install' (or `libtool --mode=install')
896     invocation if they do not have to be renamed.
897
898     Both install and uninstall may sometimes enter (`cd' into) the target
899     installation directory now, when no build-local scripts are used.
900
901     Both install and uninstall do not fail anymore but do nothing if an
902     installation directory variable like `bindir' is set to the empty string.
903
904     For built-in rules, `make install' now fails reliably if installation
905     of a file failed.  Conversely, `make uninstall' even succeeds when
906     issued multiple times.
907
908     These changes may need some adjustments from users:  For example,
909     some `install' programs refuse to install multiple copies of the
910     same file in one invocation, so you may need to remove duplicate
911     entries from file lists.
912
913     Also, within one set of files, say, nobase_data_DATA, the order of
914     installation may be changed, or even unstable among different hosts,
915     due to the use of associative arrays in awk.  The increased use of
916     awk matches a similar move in Autoconf to provide for better scaling.
917
918     Further, most undocumented per-rule install command variables such as
919     binSCRIPT_INSTALL have been removed because they are not needed any
920     more.  Packages which use them should be using the appropriate one of
921     INSTALL_{DATA,PROGRAM,SCRIPT} or their install_sh_{DATA,PROGRAM,SCRIPT}
922     counterpart, depending on the type of files and the need for automatic
923     target directory creation.
924
925   - The "deleted header file problem" for *.m4 files is avoided by
926     stub rules.  This allows `make' to trigger a rerun of `aclocal'
927     also if some previously needed macro file has been removed.
928
929   - Rebuild rules now also work for a removed `subdir/Makefile.in' in
930     an otherwise up to date tree.
931
932   - The `color-tests' option causes colored test result output on terminals.
933
934   - The `parallel-tests' option enables a new test driver that allows for
935     parallel test execution, inter-test dependencies, lazy test execution
936     for unit-testing, re-testing only failed tests, and formatted result output
937     as RST (reStructuredText) and HTML.  Enabling this option may require some
938     changes to your test suite setup; see the manual for details.
939
940   - The `silent-rules' option enables Linux kernel-style silent build output.
941     This option requires the widely supported but non-POSIX `make' feature
942     of recursive variable expansion, so do not use it if your package needs
943     to build with `make' implementations that do not support it.
944
945     To enable less verbose build output, the developer has to use the Automake
946     option `silent-rules' in `AM_INIT_AUTOMAKE', or call the `AM_SILENT_RULES'
947     macro.  The user may then set the default verbosity by passing the
948     `--enable-silent-rules' option to `configure'.  At `make' run time, this
949     default may be overridden using `make V=0' for less verbose, and `make V=1'
950     for backward-compatible verbose output.
951
952   - New prefix `notrans_' for manpages which should not be transformed
953     by --program-transform.
954
955   - New macro AM_COND_IF for conditional evaluation and conditional
956     config files.
957
958   - For AC_CONFIG_LINKS, if source and destination are equal, do not
959     remove the file in a non-VPATH build.  Such setups work with Autoconf
960     2.62 or newer.
961
962   - AM_MAINTAINER_MODE now allows for an optional argument specifying
963     the default setting.
964
965   - AM_SUBST_NOTMAKE may prevent substitution of AC_SUBSTed variables,
966     useful especially for multi-line values.
967
968   - Automake's early configure-time sanity check now diagnoses an
969     unsafe absolute source directory name and makes configure fail.
970
971   - The Automake macros and rules cope better with whitespace in the
972     current directory name, as long as the relative path to `configure'
973     does not contain whitespace.  To this end, the values of `$(MISSING)'
974     and `$(install_sh)' may contain suitable quoting, and their expansion
975     might need `eval'uation if used outside of a makefile.  These
976     undocumented variables may be used in several documented macros such
977     as $(AUTOCONF) or $(MAKEINFO).
978
979 Bugs fixed in 1.11:
980
981 * Long-standing bugs:
982
983   - Fix aix dependency tracking for libtool objects.
984
985   - Work around AIX sh quoting issue in AC_PROG_CC_C_O, leading to
986     unnecessary use of the `compile' script.
987
988   - For nobase_*_LTLIBRARIES with nonempty directory components, the
989     correct `-rpath' argument is used now.
990
991   - `config.status --file=Makefile depfiles' now also works with the
992     extra quoting used internally by Autoconf 2.62 and newer
993     (it used to work only without the `--file=' bit).
994
995   - The `missing' script works better with versioned tool names.
996
997   - Semantics for `missing help2man' have been revamped:
998
999     Previously, if `help2man' was not present, `missing help2man' would have
1000     the following semantics: if some man page was out of date but present, then
1001     a warning would be printed, but the exit status was 0.  If the man page was
1002     not present at all, then `missing' would create a replacement man page
1003     containing an error message, and exit with a status of 2.  This does not play
1004     well with `make': the next run will see this particular man page as being up
1005     to date, and will only error out on the next generated man page, if any;
1006     repeat until all pages are done.  This was not desirable.
1007
1008     These are the new semantics: if some man page is not present, and help2man
1009     is not either, then `missing' will warn and generate the replacement page
1010     containing the error message, but exit successfully.  However, `make dist'
1011     will ensure that no such bogus man pages are packaged into a tarball.
1012
1013   - Targets provided by automake behave better with `make -n', in that they
1014     take care not to create files.
1015
1016   - `config.status Makefile... depfiles' works fine again in the presence of
1017     disabled dependency tracking.
1018
1019   - The default no-op recursive rules for these targets also work with BSD make
1020     now: html, install-html, install-dvi, install-pdf, install-pdf, install-info.
1021
1022   - `make distcheck' works also when both a directory and some file below it
1023     have been added to a distribution variable, such as EXTRA_DIST or *_SOURCES.
1024
1025   - Texinfo dvi, ps, pdf, and html output files are not removed upon
1026     `make mostlyclean' any more; only the LaTeX by-products are.
1027
1028   - Renamed objects also work with the `subdir-objects' option and
1029     source file languages which Automake does not know itself.
1030
1031   - `automake' now correctly complains about variable assignments which are
1032     preceded by a comment, extend over multiple lines with backslash-escaped
1033     newlines, and end in a comment sign.  Previous versions would silently
1034     and wrongly ignore such assignments completely.
1035
1036 * Bugs introduced by 1.10:
1037
1038   - Fix output of dummy dependency files in presence of post-processed
1039     Makefile.in's again, but also cope with long lines.
1040
1041   - $(EXEEXT) is automatically appended to filenames of XFAIL_TESTS
1042     that have been declared as programs in the same Makefile.
1043     This is for consistency with the analogous change to TESTS in 1.10.
1044
1045   - Fix order of standard includes to again be `-I. -I$(srcdir)',
1046     followed by directories containing config headers.
1047
1048 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1049
1050 New in 1.10:
1051
1052 * Version requirements:
1053
1054   - Autoconf 2.60 or greater is required.
1055
1056   - Perl 5.6 or greater is required.
1057
1058 * Changes to aclocal:
1059
1060   - aclocal now also supports -Wmumble and -Wno-mumble options.
1061
1062   - `dirlist' entries (for the aclocal search path) may use shell
1063     wildcards such as `*', `?', or `[...]'.
1064
1065   - aclocal supports an --install option that will cause system-wide
1066     third-party macros to be installed in the local directory
1067     specified with the first -I flag.  This option also uses #serial
1068     lines in M4 files to upgrade local macros.
1069
1070     The new aclocal options --dry-run and --diff help to review changes
1071     before they are installed.
1072
1073   - aclocal now outputs an autoconf version check in aclocal.m4 in
1074     projects using automake.
1075
1076     For a few years, automake and aclocal have been calling autoconf
1077     (or its underlying engine autom4te) to accurately retrieve the
1078     data they need from configure.ac and its siblings.  Doing so can
1079     only work if all autotools use the same version of autoconf.  For
1080     instance a Makefile.in generated by automake for one version of
1081     autoconf may stop working if configure is regenerated with another
1082     version of autoconf, and vice versa.
1083
1084     This new version check ensures that the whole build system has
1085     been generated using the same autoconf version.
1086
1087 * Support for new Autoconf macros:
1088
1089   - The new AC_REQUIRE_AUX_FILE Autoconf macro is supported.
1090
1091   - If `subdir-objects' is set, and AC_CONFIG_LIBOBJ_DIR is specified,
1092     $(LIBOBJS), $(LTLIBOBJS), $(ALLOCA), and $(LTALLOCA) can be used
1093     in different directories.  However, only one instance of such a
1094     library objects directory is supported.
1095
1096 * Change to Libtool support:
1097
1098   - Libtool generic flags (those that go before the --mode=MODE option)
1099     can be specified using AM_LIBTOOLFLAGS and target_LIBTOOLFLAGS.
1100
1101 * Yacc and Lex changes:
1102
1103   - The rebuild rules for distributed Yacc and Lex output will avoid
1104     overwriting existing files if AM_MAINTAINER_MODE and maintainer-mode
1105     is not enabled.
1106
1107   - ylwrap is now always used for lex and yacc source files,
1108     regardless of whether there is more than one source per directory.
1109
1110 * Languages changes:
1111
1112   - Preprocessed assembler (*.S) compilation now honors CPPFLAGS,
1113     AM_CPPFLAGS and per-target _CPPFLAGS, and supports dependency
1114     tracking, unlike non-preprocessed assembler (*.s).
1115
1116   - subdir-object mode works now with Assembler.  Automake assumes
1117     that the compiler understands `-c -o'.
1118
1119   - Preprocessed assembler (*.S) compilation now also honors
1120     $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES).
1121
1122   - Improved support for Objective C:
1123     - Autoconf's new AC_PROG_OBJC will enable automatic dependency tracking.
1124     - A new section of the manual documents the support.
1125
1126   - New support for Unified Parallel C:
1127     - AM_PROG_UPC looks for a UPC compiler.
1128     - A new section of the manual documents the support.
1129
1130   - Per-target flags are now correctly handled in link rules.
1131
1132     For instance maude_CFLAGS correctly overrides AM_CFLAGS; likewise
1133     for maude_LDFLAGS and AM_LDFLAGS.  Previous versions bogusly
1134     preferred AM_CFLAGS over maude_CFLAGS while linking, and they
1135     used both AM_LDFLAGS and maude_LDFLAGS on the same link command.
1136
1137     The fix for compiler flags (i.e., using maude_CFLAGS instead of
1138     AM_CFLAGS) should not hurt any package since that is how _CFLAGS
1139     is expected to work (and actually works during compilation).
1140
1141     However using maude_LDFLAGS "instead of" AM_LDFLAGS rather than
1142     "in addition to" breaks backward compatibility with older versions.
1143     If your package used both variables, as in
1144
1145       AM_LDFLAGS = common flags
1146       bin_PROGRAMS = a b c
1147       a_LDFLAGS = more flags
1148       ...
1149
1150     and assumed *_LDFLAGS would sum up, you should rewrite it as
1151
1152       AM_LDFLAGS = common flags
1153       bin_PROGRAMS = a b c
1154       a_LDFLAGS = $(AM_LDFLAGS) more flags
1155       ...
1156
1157     This new behavior of *_LDFLAGS is more coherent with other
1158     per-target variables, and the way *_LDFLAGS variables were
1159     considered internally.
1160
1161 * New installation targets:
1162
1163   - New targets mandated by GNU Coding Standards:
1164       install-dvi
1165       install-html
1166       install-ps
1167       install-pdf
1168     By default they will only install Texinfo manuals.
1169     You can customize them with *-local variants:
1170       install-dvi-local
1171       install-html-local
1172       install-ps-local
1173       install-pdf-local
1174
1175   - The undocumented recursive target `uninstall-info' no longer exists.
1176     (`uninstall' is in charge of removing all possible documentation
1177     flavors, including optional formats such as dvi, ps, or info even
1178     when `no-installinfo' is used.)
1179
1180 * Miscellaneous changes:
1181
1182   - Automake no longer complains if input files for AC_CONFIG_FILES
1183     are specified using shell variables.
1184
1185   - clean, distribution, or rebuild rules are normally disabled for
1186     inputs and outputs of AC_CONFIG_FILES, AC_CONFIG_HEADERS, and
1187     AC_CONFIG_LINK specified using shell variables.  However, if these
1188     variables are used as ${VAR}, and AC_SUBSTed, then Automake will
1189     be able to output rules anyway.
1190     (See the Automake documentation for AC_CONFIG_FILES.)
1191
1192   - $(EXEEXT) is automatically appended to filenames of TESTS
1193     that have been declared as programs in the same Makefile.
1194     This is mostly useful when some check_PROGRAMS are listed in TESTS.
1195
1196   - `-Wportability' has finally been turned on by default for `gnu' and
1197     `gnits' strictness.  This means, automake will complain about %-rules
1198     or $(GNU Make functions) unless you switch to `foreign' strictness or
1199     use `-Wno-portability'.
1200
1201   - Automake now uses AC_PROG_MKDIR_P (new in Autoconf 2.60), and uses
1202     $(MKDIR_P) instead of $(mkdir_p) to create directories.  The
1203     $(mkdir_p) variable is still defined (to the same value as
1204     $(MKDIR_P)) but should be considered obsolete.  If you are using
1205     $(mkdir_p) in some of your rules, please plan to update them to
1206     $(MKDIR_P) at some point.
1207
1208   - AM_C_PROTOTYPES and ansi2knr are now documented as being obsolete.
1209     They still work in this release, but may be withdrawn in a future one.
1210
1211   - Inline compilation rules for gcc3-style dependency tracking are
1212     more readable.
1213
1214   - Automake installs a "Hello World!" example package in $(docdir).
1215     This example is used throughout the new "Autotools Introduction"
1216     chapter of the manual.
1217
1218 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1219
1220 New in 1.9:
1221
1222 * Makefile.in bloat reduction:
1223
1224   - Inference rules are used to compile sources in subdirectories when
1225     the `subdir-objects' option is used and no per-target flags are
1226     used.  This should reduce the size of some projects a lot, because
1227     Automake used to output an explicit rule for each such object in
1228     the past.
1229
1230   - Automake no longer outputs three rules (.o, .obj, .lo) for each
1231     object that must be built with explicit rules.  It just outputs
1232     the rules required to build the kind of object considered: either
1233     the two .o and .obj rules for usual objects, or the .lo rule for
1234     libtool objects.
1235
1236 * Change to Libtool support:
1237
1238   - Libtool tags are used with libtool versions that support them.
1239     (I.e., with Libtool 1.5 or greater.)
1240
1241   - Automake is now able to handle setups where a libtool library is
1242     conditionally installed in different directories, as in
1243
1244       if COND
1245         lib_LTLIBRARIES = liba.la
1246       else
1247         pkglib_LTLIBRARIES = liba.la
1248       endif
1249       liba_la_SOURCES = ...
1250
1251 * Changes to aclocal:
1252
1253   - aclocal now ensures that AC_DEFUNs and AU_DEFUNs it discovers are
1254     really evaluated, before it decides to include them in aclocal.m4.
1255     This solves nasty problems with conditional redefinitions of
1256     Autoconf macros in /usr/share/aclocal/*.m4 files causing extraneous
1257     *.m4 files to be included in any project using these macros.
1258     (Calls to AC_PROG_EGREP causing libtool.m4 to be included is the
1259     most famous instance of this bug.)
1260
1261   - Do not complain about missing conditionally AC_REQUIREd macros
1262     that are not actually used.  In 1.8.x aclocal would correctly
1263     determine which of these macros were really needed (and include
1264     only these in the package); unfortunately it would also require
1265     all of them to be present in order to run.  This created
1266     situations were aclocal would not work on a tarball distributing
1267     all the macros it uses.  For instance running aclocal on a project
1268     containing only the subset of the Gettext macros in use by the
1269     project did not work, because gettext conditionally requires other
1270     macros.
1271
1272 * Portability improvements:
1273
1274   - Tar format can be chosen with the new options tar-v7, tar-ustar, and
1275     tar-pax.  The new option filename-length-max=99 helps diagnosing
1276     filenames that are too long for tar-v7.  (PR/414)
1277
1278   - Variables aumented with `+=' are now automatically flattened (i.e.,
1279     trailing backslashes removed) and then wrapped around 80 colummns
1280     (adding trailing backslashes).  In previous versions, a long series
1281     of
1282       VAR += value1
1283       VAR += value2
1284       VAR += value3
1285       ...
1286     would result in a single-line definition of VAR that could possibly
1287     exceed the maximum line length of some make implementations.
1288
1289     Non-augmented variables are still output as they are defined in
1290     the Makefile.am.
1291
1292 * Miscellaneous:
1293
1294   - Support Fortran 90/95 with the new "fc" and "ppfc" languages.
1295     Works the same as the old Fortran 77 implementation; just replace
1296     F77 with FC everywhere (exception: FFLAGS becomes FCFLAGS).
1297     Requires a version of autoconf which provides AC_PROG_FC (>=2.59).
1298
1299   - Support for conditional _LISP.
1300
1301   - Support for conditional -hook and -local rules (PR/428).
1302
1303   - Diagnose AC_CONFIG_AUX_DIR calls following AM_INIT_AUTOMAKE. (PR/49)
1304
1305   - Automake will not write any Makefile.ins after the first error it
1306     encounters.  The previous Makefile.ins (if any) will be left in
1307     place.  (Warnings will not prevent output, but remember they can
1308     be turned into errors with -Werror.)
1309
1310   - The restriction that SUBDIRS must contain direct children is gone.
1311     Do not abuse.
1312
1313   - The manual tells more about SUBDIRS vs. DIST_SUBDIRS.
1314     It also gives an example of nested packages using AC_CONFIG_SUBDIRS.
1315
1316 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1317
1318 Bugs fixed in 1.8.5:
1319
1320 * Long-standing bugs:
1321
1322   - Define DIST_SUBDIRS even when the `no-dist' or `cygnus' options are used
1323     so that `make distclean' and `make maintainer-clean' can work.
1324
1325   - Define AR and ARFLAGS even when only EXTRA_LIBRARIES are defined.
1326
1327   - Fix many rules to please FreeBSD make, which runs commands with `sh -e'.
1328
1329   - Polish diagnostic when no input file is found.
1330
1331 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1332
1333 Bugs fixed in 1.8.4:
1334
1335 * Long-standing bugs:
1336
1337   - Fix AM_PATH_PYTHON to correctly display $PYTHON when it has been
1338     overridden by the user.
1339
1340   - Honor PATH_SEPARATOR in various places of the Automake package, for
1341     the sake of OS/2.
1342
1343   - Adjust dependency tracking mode detection to ICC 8.0's new output.
1344     (PR/416)
1345
1346   - Fix install-sh so it can install the `mv' binary... using `mv'.
1347
1348   - Fix tru64 dependency tracking for libtool objects.
1349
1350   - Work around Exuberant Ctags when creating a TAGS files in a directory
1351     without files to scan but with subdirectories to include.
1352
1353 * Bugs introduced by 1.8:
1354
1355   - Fix an "internal error" when @LIBOBJS@ is used in a variable that is
1356     not defined in the same conditions as the _LDADD that uses it.
1357
1358   - Do not warn when JAVAROOT is overridden, this is legitimate.
1359
1360 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1361
1362 Bugs fixed in 1.8.3:
1363
1364 * Long-standing bugs:
1365
1366   - Quote filenames in installation rules, in case $DESTDIR, $prefix,
1367     or any of the other *dir variables contain a space.
1368
1369     Please note that Automake does not and cannot support spaces in
1370     filenames that are involved during the build.  This change affects
1371     only installation paths, so that `make install' does not bomb out
1372     in packages configured with
1373       ./configure --prefix '/c/Program Files'
1374
1375   - Fix the depfiles output so it works with GNU sed (<4.1) even when
1376     POSIXLY_CORRECT is set.
1377
1378   - Do not AC_SUBST(LIBOBJS) in AM_WITH_REGEX.  This macro was unusable
1379     since Autoconf 2.54, which defines LIBOBJS itself.
1380
1381   - Fix a potential (but unlikely) race condition in parallel elisp
1382     builds.  (Introduced in 1.7.3.)
1383
1384   - Do not assume that users override _DEPENDENCIES in all conditions
1385     where Automake will try to define them.
1386
1387   - Do not use `mkdir -p' in mkinstalldirs, unless this is GNU mkdir.
1388     Solaris 8's `mkdir -p' is not thread-safe and can break parallel
1389     builds.
1390
1391     This fix also affects the $(mkdir_p) variable defined since
1392     Automake 1.8.  It will be set to `mkdir -p' only if mkdir is GNU
1393     mkdir, and to `mkinstalldirs' or `install-sh -d' otherwise.
1394
1395   - Secure temporary directory creation in `make distcheck'. (PR/413)
1396
1397   - Do not generate two build rules for `parser.h' when the
1398     parser appears in two different conditionals.
1399
1400   - Work around a Solaris 8 /bin/sh bug in the test for dependency
1401     checking.  Usually ./configure will not pick this shell; so this
1402     fix only helps cases where the shell is forced to /bin/sh.
1403
1404 * Bugs introduced by 1.8:
1405
1406   - In some situations (hand-written `m4_include's), aclocal would
1407     call the `File::Spec->rel2abs' method, which was only introduced
1408     in Perl 5.6.  This new version reestablish support Perl 5.005.
1409
1410     It is likely that the next major Automake releases will require at
1411     least Perl 5.6.  Consider upgrading your development environment
1412     if you are still using the five-year-old Perl 5.005.
1413
1414   - Automake would sometimes fail to define rules for targets listed
1415     in variables defined in multiple conditions.  For instance on
1416       if C1
1417         bin_PROGRAMS = a
1418       else
1419         bin_PROGRAMS = b
1420       endif
1421     it would define only the `a.$(OBJEXT): a.c' rule and omit the
1422     `b.$(OBJEXT): b.c' rule.
1423
1424 * New sections in manual:
1425
1426   - Third-Party Makefiles: how to interface third party Makefiles.
1427   - Upgrading: upgrading packages to newer Automake versions.
1428   - Multiple Outputs: handling tools that produce many outputs.
1429
1430 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1431
1432 Bug fixed in 1.8.2:
1433
1434 * A (well known) portability bug slipped in the changes made to
1435   install-sh in Automake 1.8.1.  The broken install-sh would refuse to
1436   install anything on Tru64.
1437
1438 * Fix install rules for conditionally built python files.  (This never
1439   really worked.)
1440
1441 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1442
1443 Bug fixed in 1.8.1:
1444
1445 * Bugs introduced by 1.8:
1446
1447   - Fix Config.pm import error with old Perl versions (at least
1448     5.005_03).  One symptom is that aclocal could not find its macro
1449     directory.
1450
1451   - Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
1452     created by `make install' are always world readable, even if the
1453     installer happens to have an overly restrictive umask (e.g. 077).
1454     This was a mistake and has been reverted.  There are at least two
1455     reasons why we must not use `-m 0755':
1456       - it causes special bits like SGID to be ignored,
1457       - it may be too restrictive (some setups expect 775 directories).
1458
1459   - Fix aclocal to honor definitions located in files which have been
1460     m4_included manually.  aclocal 1.8 had been updated to check
1461     m4_included files for new requirements, but forgot that these
1462     m4_included files can also provide new definitions.
1463
1464     Note that if you have such a setup, we recommend you get rid of
1465     it.  In the past, there was a reason to m4_include files manually:
1466     aclocal used to duplicate entire M4 files into aclocal.m4, even
1467     files that were distributed.  Some packages were therefore
1468     m4_including the distributed file directly, and playing some
1469     tricks to ensure aclocal would not copy that file to aclocal.m4,
1470     in order to limit the amount of duplication.  Since aclocal 1.8.x
1471     will precisely output m4_includes for local M4 files, we recommend
1472     that you clean up your setup, removing all manual m4_includes and
1473     letting aclocal output them.
1474
1475   - Output detailed menus in the Info version if the Automake manual,
1476     so that Emacs can locate the indexes.
1477
1478   - configure.ac and configure were listed twice in DIST_COMMON (an
1479     internal variable where Automake lists configury files to
1480     distribute).  This was harmless, but unaesthetic.
1481
1482   - Use `chmod a-w' instead of `chmod -w' as the latter honors umask.
1483     This was an issue only in the Automake package itself, not in
1484     its output.
1485
1486   - Automake assumed that all AC_CONFIG_LINKS arguments had the form
1487     DEST:SRC.  This was wrong, as some packages do
1488     AC_CONFIG_LINKS($computedlinks).  This version no longer abort in
1489     that situation.
1490
1491   - Contrary to mkinstalldirs, $(mkdir_p) was expecting exactly one
1492     argument.  This caused two kinds of failures:
1493       - Rules installing data in a conditionally defined directory
1494         failed when that directory was undefined.  In this case no
1495         argument was supplied.
1496       - `make installdirs' failed, because several directories were
1497         passed to $(mkdir_p).  This was an issue only on platform
1498         were $(mkdir_p) is implemented with `install-sh -d'.
1499     $(mkdir_p) as been changed to accept 0 or more arguments, as
1500     mkinstalldirs did.
1501
1502 * Long-standing bugs:
1503
1504   - Fix an unexpected diagnostic occurring when users attempt
1505     to override some internal variables that Automake appends to.
1506
1507   - aclocal now scans configure.ac for macro definitions (PR/319).
1508
1509   - Fix a portability issue with OSF1/Tru64 Make.  If a directory
1510     distributes files which are outside itself (this usually occurs
1511     when using AC_CONFIG_AUX_DIR([../dir]) to use auxiliary files
1512     from a parent package), then `make distcheck' fails due to an
1513     optimization performed by OSF1/Tru64 Make in its VPATH handling.
1514     (tests/subpkg2.test failure)
1515
1516   - Fix another portability issue with Sun and OSF1/Tru64 Make.
1517     In a VPATH-build configuration, `make install' would install
1518     nobase_ files to wrong locations.
1519
1520   - Fix a Perl `uninitialized value' diagnostic occurring when
1521     automake complains that a Texinfo file does not have a
1522     @setfilename statement.
1523
1524   - Erase config.status.lineno during `make distclean'.  This file
1525     can be created by config.status.  Automake already knew about
1526     configure.lineno, but forgot config.status.lineno.
1527
1528   - Distribute all files, even those which are built and installed
1529     conditionally.  This change affects files listed in conditionally
1530     defined *_HEADERS and *_PYTHON variable (unless they are nodist_*)
1531     as well as those listed in conditionally defined dist_*_DATA,
1532     dist_*_JAVA, dist_*_LISP, and dist_*_SCRIPTS variables.
1533
1534   - Fix AM_PATH_LISPDIR to avoid \? in sed regular expressions; it
1535     doesn't conform to POSIX.
1536
1537   - Normalize help strings for configure variables and options added
1538     by Automake macros.
1539
1540 * Anticipation:
1541
1542   - Check for python2.4 in AM_PATH_PYTHON.
1543
1544 * Spurious failures in test suite:
1545
1546   - tests/libtool5.test, tests/ltcond.test, tests/ltcond2.test,
1547     tests/ltconv.test: fix failures with CVS Libtool.
1548   - tests/aclocal6.test: fix failure if autom4te.cache is disabled.
1549   - tests/txinfo24.test, tests/txinfo25.test, tests/txinfo28.test:
1550     fix failures with old Texinfo versions.
1551
1552 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1553
1554 New in 1.8:
1555
1556 * Meta-News
1557
1558   - The NEWS file is more verbose.
1559
1560 * Requirements
1561
1562   - Autoconf 2.58 or greater is required.
1563
1564 * New features
1565
1566   - Default source file names in the absence of a _SOURCES declaration
1567     are made by removing any target extension before appending `.c', so
1568     to make the libtool module `foo.la' from `foo.c', you only need to
1569     do this:
1570
1571         lib_LTLIBRARIES = foo.la
1572         foo_la_LDFLAGS  = -module
1573
1574     For backward compatibility, foo_la.c will be used instead of
1575     foo.c if this file exists or is the explicit target of a rule.
1576     However -Wobsolete will warn about this deprecated naming.
1577
1578   - AR's `cru' flags are now set in a global ARFLAGS variable instead
1579     of being hard-coded in each $(AR) invocation, so they can be
1580     substituted from configure.ac.  This has been requested by people
1581     dealing with non-POSIX ar implementations.
1582
1583   - New warning option: -Woverride.  This will warn about any user
1584     target or variable definitions which override Automake
1585     definitions.
1586
1587   - Texinfo rules back up and restore info files when makeinfo fails.
1588
1589   - Texinfo rules now support the `html' target.
1590     Running this requires Texinfo 4.0 or greater.
1591
1592     `html' is a new recursive target, so if your package mixes
1593     hand-crafted `Makefile.in's with Automake-generated
1594     `Makefile.in's, you should adjust the former to support (or
1595     ignore) this target so that `make html' recurses successfully.  If
1596     you had a custom `html' rule in your `Makefile.am', it's better to
1597     rename it as `html-local', otherwise your rule will override
1598     Automake's new rule (you can check that by running `automake
1599     -Woverride') and that will stop the recursion to subdirectories.
1600
1601     Last but not least, this `html' rule is declared PHONY, even when
1602     overridden.  Fortunately, it appears that few packages use a
1603     non-PHONY `html' rule.
1604
1605   - Any file which is m4_included from configure.ac will appear as a
1606     configure and Makefile.in dependency, and will be automatically
1607     distributed.
1608
1609   - The rules for rebuilding Makefiles and Makefile.ins will now
1610     rebuild all Makefiles and all Makefile.ins at once when one of
1611     configure's dependencies has changed.  This is considerably faster
1612     than previous implementations, where config.status and automake
1613     were run separately in each directory (this still happens when you
1614     change a Makefile.am locally, without touching configure.ac or
1615     friends).  Doing this also solves a longstanding issue: these
1616     rebuild rules failed to work when adding new directories to the
1617     tree, forcing you to run automake manually.
1618
1619   - For similar reasons, the rules to rebuild configure,
1620     config.status, and aclocal.m4 are now defined in all directories.
1621     Note that if you were using the CONFIG_STATUS_DEPENDENCIES and
1622     CONFIGURE_DEPENDENCIES (formerly undocumented) variables, you
1623     should better define them in all directories.  This is easily done
1624     using an AC_SUBST (make sure you prefix these dependencies with
1625     $(top_srcdir) since this variable will appear at different
1626     levels of the build tree).
1627
1628   - aclocal will now use `m4_include' instead of copying local m4
1629     files into aclocal.m4.  (Local m4 files are those you ship with
1630     your project, other files will be copied as usual.)
1631
1632     Because m4_included files are automatically distributed, it means
1633     for most projects there is no point in EXTRA_DISTing the list of
1634     m4 files which are used.  (You can probably get rid of
1635     m4/Makefile.am if you had one.)
1636
1637   - aclocal will avoid touching aclocal.m4 when possible, so that
1638     Autom4te's cache isn't needlessly invalidated.  This behavior can
1639     be switched off with the new `--force' option.
1640
1641   - aclocal now uses Autoconf's --trace to detect macros which are
1642     actually used and will no longer include unused macros simply
1643     because they where mentioned.  This was often the case for macros
1644     called conditionally.
1645
1646   - New options no-dist and no-dist-gzip.
1647
1648   - compile, depcomp, elisp-comp, install-sh, mdate-sh, mkinstalldirs,
1649     py-compile, and ylwrap, now all understand --version and --help.
1650
1651   - Automake will now recognize AC_CONFIG_LINKS so far as removing created
1652     links as part of the distclean target and including source files in
1653     distributions.
1654
1655   - AM_PATH_PYTHON now supports ACTION-IF-FOUND and ACTION-IF-NOT-FOUND
1656     argument.  The latter can be used to override the default behavior
1657     (which is to abort).
1658
1659   - Automake will exit with $? = 63 on version mismatch.  (So does
1660     Autoconf 2.58)  missing knows this, and in this case it will
1661     emulate the tools as if they were absent.  Because older versions
1662     of Automake and Autoconf did not use this exit code, this change
1663     will only be useful in projects generated with future versions of
1664     these tools.
1665
1666   - When using AC_CONFIG_FILES with multiple input files, Automake
1667     generates the first ".in" input file for which a ".am" exists.
1668     (Former versions would try to use only the first input file.)
1669
1670   - lisp_DATA is now allowed.  If you are using the empty ELCFILES
1671     idiom to disable byte-compilation of lisp_LISP files, it is
1672     recommended that you switch to using lisp_DATA.  Note that
1673     this is not strictly equivalent: lisp_DATA will install elisp
1674     files even if emacs is not installed, while *_LISP do not
1675     install anything unless emacs is found.
1676
1677   - Makefiles will prefer `mkdir -p' over mkinstalldirs if it is
1678     available.  This selection is achieved through the Makefile
1679     variable $(mkdir_p) that is set by AM_INIT_AUTOMAKE to either
1680     `mkdir -m 0755 -p --', `$(mkinstalldirs) -m 0755', or
1681     `$(install_sh) -m 0755 -d'.
1682
1683 * Obsolete features
1684
1685   - Because `mkdir -p' is available on most platforms, and we can use
1686     `install-sh -d' when it is not, the use of the mkinstalldirs
1687     script is being phased out.  `automake --add-missing' no longer
1688     installs it, and if you remove mkinstalldirs from your package,
1689     automake will define $(mkinstalldirs) as an alias for $(mkdir_p).
1690
1691     Gettext 0.12.1 still requires mkinstalldirs.  Fortunately
1692     gettextize and autopoint will install it when needed.  Automake
1693     will continue to define the $(mkinstalldirs) and to distribute
1694     mkinstalldirs when this script is in the source tree.
1695
1696   - AM_PROG_CC_STDC is now empty.  The content of this macro was
1697     merged in AC_PROG_CC.  If your code uses $am_cv_prog_cc_stdc, you
1698     should adjust it to use $ac_cv_prog_cc_stdc instead.  (This
1699     renaming should be safe, even if you have to support several,
1700     versions of Automake, because AC_PROG_CC defines this variable
1701     since Autoconf 2.54.)
1702
1703   - Some users where using the undocumented ACLOCAL_M4_SOURCES
1704     variable to override the aclocal.m4 dependencies computed
1705     (inaccurately) by older versions of Automake.  Because Automake
1706     now tracks configure's m4 dependencies accurately (see m4_include
1707     above), the use of ACLOCAL_M4_SOURCES should be considered
1708     obsolete and will be flagged as such when running `automake
1709     -Wobsolete'.
1710
1711 * Bug fixes
1712
1713   - Defining programs conditionally using Automake conditionals no
1714     longer leads to a combinatorial explosion.  The following
1715     construct used to be troublesome when used with dozens of
1716     conditions.
1717
1718       bin_PROGRAMS = a
1719       if COND1
1720         bin_PROGRAMS += a1
1721       endif
1722       if COND2
1723         bin_PROGRAMS += a2
1724       endif
1725       if COND3
1726         bin_PROGRAMS += a3
1727       endif
1728       ...
1729
1730     Likewise for _SOURCES, _LDADD, and _LIBADD variables.
1731
1732   - Due to implementation constraints, previous versions of Automake
1733     proscribed multiple conditional definitions of some variables
1734     like bin_PROGRAMS:
1735
1736       if COND1
1737         bin_PROGRAMS = a1
1738       endif
1739       if COND2
1740         bin_PROGRAMS = a2
1741       endif
1742
1743     All _PROGRAMS, _LDADD, and _LIBADD variables were affected.
1744     This restriction has been lifted, and these variables now
1745     support multiple conditional definitions as do other variables.
1746
1747   - Cleanup the definitions of $(distdir) and $(top_distdir).
1748     $(top_distdir) now points to the root of the distribution
1749     directory created during `make dist', as it did in Automake 1.4,
1750     not to the root of the build tree as it did in intervening
1751     versions.  Furthermore these two variables are now only defined in
1752     the top level Makefile, and passed to sub-directories when running
1753     `make dist'.
1754
1755   - The --no-force option now correctly checks the Makefile.in's
1756     dependencies before deciding not to update it.
1757
1758   - Do not assume that make files are called Makefile in cleaning rules.
1759
1760   - Update .info files in the source tree, not in the build tree.  This
1761     is what the GNU Coding Standard recommend.  Only Automake 1.7.x
1762     used to update these files in the build tree (previous versions did
1763     it in the source tree too), and it caused several problems, varying
1764     from mere annoyance to portability issues.
1765
1766   - COPYING, COPYING.LIB, and COPYING.LESSER are no longer overwritten
1767     when --add-missing and --force-missing are used.  For backward
1768     compatibility --add-missing will continue to install COPYING (in
1769     `gnu' strictness) when none of these three files exist, but this
1770     use is deprecated: you should better choose a license yourself and
1771     install it once for all in your source tree (and in your code
1772     management system).
1773
1774   - Fix ylwrap so that it does not overwrite header files that haven't
1775     changed, as the inline rule already does.
1776
1777   - User-defined rules override automake-defined rules for the same
1778     targets, even when rules do not have commands.  This is not new
1779     (and was documented), however some of the automake-generated
1780     rules have escaped this principle in former Automake versions.
1781     Rules for the following targets are affected by this fix:
1782
1783        clean, clean-am, dist-all, distclean, distclean-am, dvi, dvi-am,
1784        info, info-am, install-data-am, install-exec-am, install-info,
1785        install-info-am, install-man, installcheck-am, maintainer-clean,
1786        maintainer-clean-am, mostlyclean, mostlyclean-am, pdf, pdf-am,
1787        ps, ps-am, uninstall-am, uninstall-info, uninstall-man
1788
1789     Practically it means that an attempt to supplement the dependencies
1790     of some target, as in
1791
1792        clean: my-clean-rule
1793
1794     will now *silently override* the automake definition of the
1795     rule for this target.  Running `automake -Woverride' will diagnose
1796     all such overriding definitions.
1797
1798     It should be noted that almost all of these targets support a *-local
1799     variant that is meant to supplement the automake-defined rule
1800     (See node `Extending' in the manual).  The above rule should
1801     be rewritten as
1802
1803       clean-local: my-clean-rule
1804
1805     These *-local targets have been documented since at least
1806     Automake 1.2, so you should not fear the change if you have
1807     to support multiple automake versions.
1808
1809 * Miscellaneous
1810
1811   - The Automake manual is now distributed under the terms of the GNU FDL.
1812
1813   - Targets dist-gzip, dist-bzip2, dist-tarZ, dist-zip are always defined.
1814
1815   - core dumps are no longer removed by the cleaning rules.  There are
1816     at least three reasons for this:
1817       1. These files should not be created by any build step,
1818          so their removal do not fit any of the cleaning rules.
1819          Actually, they may be precious to the developer.
1820       2. If such file is created during a build, then it's clearly a
1821          bug Automake should not hide.  Not removing the file will
1822          cause `make distcheck' to complain about its presence.
1823       3. Operating systems have different naming conventions for
1824          core dump files.  A core file on one system might be a
1825          completely legitimate data file on another system.
1826
1827   - RUNTESTFLAGS, CTAGSFLAGS, ETAGSFLAGS, JAVACFLAGS are no longer
1828     defined by Automake.  This means that any definition in the
1829     environment will be used, unless overridden in the Makefile.am or
1830     on the command line.  The old behavior, where these variables were
1831     defined empty in each Makefile, can be obtained by AC_SUBSTing or
1832     AC_ARG_VARing each variable from configure.ac.
1833
1834   - CONFIGURE_DEPENDENCIES and CONFIG_STATUS_DEPENDENCIES are now
1835     documented.  (The is not a new feature, these variables have
1836     been there since at least Automake 1.4.)
1837
1838 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1839
1840 Bugs fixed in 1.7.9:
1841 * Fix install-strip to work with nobase_ binaries.
1842 * Fix renaming of #line directives in ylwrap.
1843 * Rebuild with Autoconf 2.59.  (1.7.8 was not installable with pdksh.)
1844
1845 Bugs fixed in 1.7.8:
1846 * Remove spurious blank lines in cleaning rules introduced in 1.7.7.
1847 * Fix detection of Debian's install-info, broken since version 1.5.
1848   (Debian bug #213524).
1849 * Honor -module if it appears in AM_LDFLAGS (i.e., relax name checking)
1850   This was only done for libfoo_LDFLAGS and LDFLAGS in previous versions.
1851
1852 Bugs fixed in 1.7.7:
1853 * The implementation of automake's --no-force option is unreliable,
1854   so this option is ignored in this version.  A real fix will appear in
1855   Automake 1.8.  (Debian Bug #206299)
1856 * AM_PATH_PYTHON: really check the whole list of interpreters if no
1857   argument is given.  (PR/399)
1858 * Do not warn about leading `_' in variable names, even with -Wportability.
1859 * Support user redefinitions of TEXINFO_TEX.
1860 * depcomp: support AIX Compiler version 6.
1861 * Fix missing rebuilds during `make dist' with BSD make.
1862   (Could produce tarballs containing out-of-date files.)
1863 * Resurrect multilib support.
1864 * Noteworthy manual updates:
1865   - Extending aclocal: how to write m4 macros that won't trigger warnings
1866     with Automake 1.8.
1867   - A Shared Library: Rewrite and split into subsections.
1868
1869 Bugs fixed in 1.7.6:
1870 * Fix depcomp's icc mode for ICC 7.1.
1871 * Diagnose calls to AC_CONFIG_FILES and friends with not enough arguments.
1872 * Fix maintainer-clean's removal of autom4te.cache in VPATH builds.
1873 * Fix AM_PATH_LISPDIR to work with POSIXLY_CORRECT=1.
1874 * Fix the location reported in some diagnostics related to AUTOMAKE_OPTIONS.
1875 * Remove Latin-1 characters from elisp-comp.
1876 * Update the manual's @dircategory to match the Free Software Directory.
1877
1878 Bugs fixed in 1.7.5:
1879 * Update install-sh's license to remove an advertising clause.
1880   (Debian bug #191717)
1881 * Fix a bug introduced in 1.7.4, related to BUILT_SOURCE handling,
1882   that caused invalid Makefile.ins to be generated.
1883 * Make sure AM_MAKE_INCLUDE doesn't fail when a `doit' file exists.
1884 * New FAQ entry: renamed objects.
1885
1886 Bugs fixed in 1.7.4:
1887 * Tweak the TAGS rule to support Exuberant Ctags (in addition to
1888   the Emacs implementation)
1889 * Fix output of aclocal.m4 dependencies in subdirectories.
1890 * Use `mv -f' instead of `mv' in fastdep rules.
1891 * Upgrade mdate-sh to work on OS/2.
1892 * Don't byte-compile elisp files when ELCFILES is set empty.
1893   (this documented feature was broken by 1.7.3)
1894 * Diagnose trailing backslashes on last line of Makefile.am.
1895 * Diagnose whitespace following trailing backslashes.
1896 * Multiple tests are now correctly supported in DEJATOOL. (PR/388)
1897 * Fix rebuilt rules for AC_CONFIG_FILES([Makefile:Makefile.in:Makefile.bot])
1898   Makefiles. (PR/389)
1899 * `make install' will build `BUILT_SOURCES' first.
1900 * Minor documentation fixes.
1901
1902 Bugs fixed in 1.7.3:
1903 * Fix stamp files numbering (when using multiple AC_CONFIG_HEADERS).
1904 * Query distutils for `pythondir' and `pythonexecdir', instead of
1905   using an hardcoded path.  This should allow builds on 64-bit
1906   distributions that usually use lib64/ instead of lib/.
1907 * AM_PATH_PYTHON will also search for python2.3.
1908 * elisp files are now built all at once instead of one by one. Besides
1909   incurring a speed-up, this is required to support interdependent elisp files.
1910 * Support for DJGPP:
1911   - `make distcheck' will now work in `_inst/' and `_build' instead
1912     of `=inst/' and `=build/'
1913   - use `_dirstamp' when the file-system doesn't support `.dirstamp'
1914   - install/uninstall `*.i[0-9][0-9]'-style info files
1915   - more changes that affect only the Automake package (not its output)
1916 * Fix some incompatibilities with upcoming perl-5.10.
1917 * Properly quote AC_PACKAGE_TARNAME and AC_PACKAGE_VERSION when defining
1918   PACKAGE and VERSION.
1919 * depcomp fixes:
1920   - dashmstdout and dashXmstdout modes: don't use `-o /dev/null', this
1921     is troublesome with gcc and Solaris compilers. (PR/385)
1922   - makedepend mode: work with Libtool. (PR/385 too)
1923   - support for ICC.
1924 * better support for unusual gettext setups, such as multiple po/ directories
1925   (PR/381):
1926   - Flag missing po/ and intl/ directories as warnings, not errors.
1927   - Disable these warnings if po/ does not exist.
1928 * Noteworthy manual updates:
1929   - New FAQ chapter.
1930   - Document how AC_CONFIG_AUX_DIR interacts with missing files.
1931     (Debian Bug #39542)
1932   - Document `AM_YFLAGS = -d'.  (PR/382)
1933
1934 Bugs fixed in 1.7.2:
1935 * Fix installation and uninstallation of Info files built in subdirectories.
1936 * Do not run `./configure --with-included-gettext' during `make distcheck'
1937   if AM_GNU_GETTEXT([external]) is used.
1938 * Correctly uninstall renamed man pages.
1939 * Do not strip escaped newline in variables defined in one condition
1940   and augmented in another condition.
1941 * Fix ansi2knr rules for LIBOBJS sources.
1942 * Clean all known Texinfo index files, not only those which appear to
1943   be used, because we cannot know which indexes are used in included files.
1944   (PR/375, Debian Bug #168671)
1945 * Honor only the first @setfilename seen in a Texinfo file.
1946 * Treat "required file X not found" diagnostics as errors (exit status 1).
1947 * Don't complain that a required file is not found when it is a Makefile
1948   target. (PR/357)
1949 * Don't use single suffix inference rules when building `.info'-less
1950   Info files, for the sake of Solaris make.
1951 * The `check' target now depends on `$(BUILT_SOURCES)'. (PR/359)
1952 * Recognize multiple inference rules such as `.a.b .c.d:'. (PR/371)
1953 * Warn about multiple inference rules when -Wportability is used. (PR/372)
1954 * Fix building of deansified files from subdirectories. (PR/370)
1955 * Add missing `fi' in the .c->.obj rules.
1956 * Improve install-sh to work even when names contain spaces or certain
1957   (but not all) shell metachars.
1958 * Fix the following spurious failures in the test suite:
1959   depcomp2.test, gnits2.test, gnits3.test, python3.test, texinfo13.test
1960 * Noteworthy manual updates:
1961   - Augment the section about BUILT_SOURCES.
1962   - Mention that AM_PROG_CC_STDC is a relic that is better avoided today.
1963
1964 Bugs fixed in 1.7.1:
1965 * Honor `ansi2knr' for files built in subdirectories, or using per-targets
1966   flags.
1967 * Aclocal should now recognize macro names containing parentheses, e.g.
1968   AC_DEFUN([AC_LANG_PREPROC(Fortran 90)], [...]).
1969 * Erase *.sum and *.log files created by DejaGnu, during `make distclean'.
1970   (Debian Bug#153697)
1971 * Install Python files even if they were built.  (PR/369)
1972 * Have stamp-vti dependent upon configure instead of configure.ac, as the
1973   version might not be defined in the latter. (PR/358)
1974 * Reorder arguments passed to a couple of commands, so things works
1975   when POSIXLY_CORRECT=1.
1976 * Fix a regex that can cause Perl to segfault on large input.
1977   (Debian Bug#162583)
1978 * Fix distribution of packages that have some sources defined conditionally,
1979   as in the `Conditional compilation using Automake conditionals' example
1980   of the manual.
1981 * Fix spurious test suite failures on IRIX.
1982 * Don't report a required variable as undefined if it has been
1983   defined conditionally for the "right" conditions.
1984 * Fix cleaning of the /tmp subdirectory used by `make distcheck', in case
1985   `make distcheck' fails.
1986 * Fix distribution of included Makefile fragment, so we don't create
1987   spurious directories in the distribution. (PR/366)
1988 * Don't complain that a target lacks `.$(EXEEXT)' when it has it.
1989
1990 New in 1.7:
1991 * Autoconf 2.54 is required.
1992 * `aclocal' and `automake' will no longer warn about obsolete
1993   configure macros.  This is done by `autoconf -Wobsolete'.
1994 * AM_CONFIG_HEADER, AM_SYS_POSIX_TERMIOS and
1995   AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL are obsolete (although still
1996   supported).  You should use AC_CONFIG_HEADERS, AC_SYS_POSIX_TERMIOS,
1997   and AC_HEADER_TIOCGWINSZ instead.  `autoupdate' can upgrade
1998   `configure.ac' for you.
1999 * Support for per-program and per-library `_CPPFLAGS'.
2000 * New `ctags' target (builds CTAGS files).
2001 * Support for -Wmumble and -Wno-mumble, where mumble is a warning category
2002   (see `automake --help' or the manual for a list of them).
2003 * Honor the WARNINGS environment variable.
2004 * Omit the call to depcomp when using gcc3: call the compiler directly.
2005 * A new option, std-options, tests that programs support --help and --version
2006   when `make installcheck' is run.  This is enabled by --gnits.
2007 * Texinfo rules now support the `ps' and `pdf' targets.
2008 * Info files are now created in the build directory, not the source directory.
2009 * info_TEXINFOS supports files in subdirectories (this requires Texinfo 4.1
2010   or greater).
2011 * `make distcheck' will enforce DESTDIR support by attempting
2012   a DESTDIR install.
2013 * `+=' can be used in conditionals, even if the augmented variable
2014   was defined for another condition.
2015 * Makefile fragments (inserted with `include') are always distributed.
2016 * Use Autoconf's --trace interface to inspect configure.ac and get
2017   a more accurate view of it.
2018 * Add support for extending aclocal's default macro search path
2019   using a `dirlist' file within the aclocal directory.
2020 * automake --output-dir is deprecated.
2021 * The part of the distcheck target that checks whether uninstall actually
2022   removes all installed files has been moved in a separate target,
2023   distuninstallcheck, so it can be overridden easily.
2024 * Many bug fixes.
2025
2026 New in 1.6.3:
2027 * Support for AM_INIT_GETTEXT([external])
2028 * Bug fixes, including:
2029   - Fix Automake's own `make install' so it works even if `ln' doesn't.
2030   - nobase_ programs and scripts honor --program-transform correctly.
2031   - Erase configure.lineno during `make distclean'.
2032   - Erase YACC and LEX outputs during `make maintainer-clean'.
2033
2034 New in 1.6.2:
2035 * Many bug fixes, including:
2036   - Requiring the current version works.
2037   - Fix "$@" portability issues (for Zsh).
2038   - Fix output of dummy dependency files in presence of post-processed
2039     Makefile.in's.
2040   - Don't compute dependencies in background to avoid races with libtool.
2041   - Fix handling of _OBJECTS variables for targets sharing source variables.
2042   - Check dependency mode for Java when AM_PROG_GCJ is used.
2043
2044 New in 1.6.1:
2045 * automake --output-dir is deprecated
2046 * Many bug fixes, including:
2047   - Don't choke on AM_LDFLAGS definitions.
2048   - Clean libtool objects from subdirectories.
2049   - Allow configure variables with reserved suffix and unknown prefix
2050     (e.g. AC_SUBST(mumble_LDFLAGS) when 'mumble' is not a target).
2051   - Fix the definition of AUTOMAKE and ACLOCAL in configure.
2052
2053 New in 1.6:
2054 * Autoconf 2.52 is required.
2055 * automake no longer run libtoolize.
2056   This is the job of autoreconf (from GNU Autoconf).
2057 * `dist' generates all the archive flavors, as did `dist-all'.
2058 * `dist-gzip' generates the Gzip tar file only.
2059 * Combining Automake Makefile conditionals no longer lead to a combinatorial
2060   explosion.  Makefile.in's keep a reasonable size.
2061 * AM_FUNC_ERROR_AT_LINE, AM_FUNC_STRTOD, AM_FUNC_OBSTACK, AM_PTRDIFF_T
2062   are no longer shipped, since Autoconf 2.52 provides them (both as AM_
2063   and AC_).
2064 * `#line' of Lex and Yacc files are properly set.
2065 * EXTRA_DIST can contain generated directories.
2066 * Support for dot-less extensions in suffix rules.
2067 * The part of the distcheck target that checks whether distclean actually
2068   cleans all built files has been moved in a separate target, distcleancheck,
2069   so it can be overridden easily.
2070 * `make distcheck' will pass additional options defined in
2071   $(DISTCHECK_CONFIGURE_FLAGS) to configure.
2072 * Fixed CDPATH portability problems, in particular for MacOS X.
2073 * Fixed handling of nobase_ targets.
2074 * Fixed support of implicit rules leading to .lo objects.
2075 * Fixed late inclusion of --add-missing files (e.g. depcomp) in DIST_COMMON
2076 * Added uninstall-hook target
2077 * `AC_INIT AM_INIT_AUTOMAKE(tarname,version)' is an obsolete construct.
2078   You can now use `AC_INIT(pkgname,version) AM_INIT_AUTOMAKE' instead.
2079   (Note that "pkgname" is not "tarname", see the manual for details.)
2080   It is also possible to pass a list of global Automake options as
2081   first argument to this new form of AM_INIT_AUTOMAKE.
2082 * Compiler-based assembler is now called `CCAS'; people expected `AS'
2083   to be a real assembler.
2084 * AM_INIT_AUTOMAKE will set STRIP itself when it needs it.  Adding
2085   AC_CHECK_TOOL([STRIP], [strip]) manually is no longer required.
2086 * aclocal and automake are also installed with the version number
2087   appended, and some of the install directory names have changed.
2088   This lets you have multiple versions installed simultaneously.
2089 * Support for parsers and lexers in subdirectories.
2090
2091 New in 1.5:
2092 * Support for `configure.ac'.
2093 * Support for `else COND', `endif COND' and negated conditions `!COND'.
2094 * `make dist-all' is much faster.
2095 * Allows '@' AC_SUBSTs in macro names.
2096 * Faster AM_INIT_AUTOMAKE (requires update of `missing' script)
2097 * User-side dependency tracking.  Developers no longer need GNU make
2098 * Python support
2099 * Uses DIST_SUBDIRS in some situations when SUBDIRS is conditional
2100 * Most files are correctly handled if they appear in subdirs
2101   For instance, a _DATA file can appear in a subdir
2102 * GNU tar is no longer required for `make dist'
2103 * Added support for `dist_' and `nodist_' prefixes
2104 * Added support for `nobase_' prefix
2105 * Compiled Java support
2106 * Support for per-executable and per-library compilation flags
2107 * Many bug fixes
2108
2109 New in 1.4:
2110 * Added support for the Fortran 77 programming language.
2111 * Re-indexed the Automake Texinfo manual.
2112 * Added `AM_FOOFLAGS' variable for each compiler invocation;
2113   e.g. AM_CFLAGS can be used in Makefile.am to set C compiler flags
2114 * Support for latest autoconf, including support for objext
2115 * Can now put `.' in SUBDIRS to control build order
2116 * `include' command and `+=' support for macro assignment
2117 * Dependency tracking no long susceptible to deleted header file problem
2118 * Maintainer mode now a conditional.  @MAINT@ is now an anachronism.
2119 * Bug fixes
2120
2121 New in 1.3:
2122 * Bug fixes
2123 * Better Cygwin32 support
2124 * Support for suffix rules with _SOURCES variables
2125 * New options `readme-alpha' and `check-news'; Gnits mode sets these
2126 * @LEXLIB@ no longer required when lex source seen
2127   Lex support in `missing', and new lex macro.  Update your missing script.
2128 * Built-in support for assembly
2129 * aclocal gives error if `AM_' macro not found
2130 * Passed YFLAGS, not YACCFLAGS, to yacc
2131 * AM_PROG_CC_STDC does not have to come before AC_PROG_CPP
2132 * Dependencies computed as a side effect of compilation
2133 * Preliminary support for Java
2134 * DESTDIR support at "make install" time
2135 * Improved ansi2knr support; you must use the latest ansi2knr.c (included)
2136
2137 New in 1.2:
2138 * Bug fixes
2139 * Better DejaGnu support
2140 * Added no-installinfo option
2141 * Added Emacs Lisp support
2142 * Added --no-force option
2143 * Included `aclocal' program
2144 * Automake will now generate rules to regenerate aclocal.m4, if appropriate
2145 * Now uses `AM_' macro names everywhere
2146 * ansi2knr option can have directory prefix (eg `../lib/ansi2knr')
2147   ansi2knr now works correctly on K&R sources
2148 * Better C++, yacc, lex support
2149 * Will compute _DEPENDENCIES variables automatically if not supplied
2150 * Will interpolate $(...) and ${...} when examining contents of a variable
2151 * .deps files now in build directory, not source directory; dependency
2152   handling generally rewritten
2153 * DATA, MANS and BUILT_SOURCES no longer included in distribution
2154 * can now put config.h into a subdir
2155 * Added dist-all target
2156 * Support for install-info program (see texinfo 3.9)
2157 * Support for "yacc -d"
2158 * configure substitutions are automatically discovered and included
2159   in generated Makefile.in
2160 * Special --cygnus mode
2161 * OMIT_DEPENDENCIES can now hold list of dependencies to be omitted
2162   when making distribution.  Some dependencies are auto-ignored.
2163 * Changed how libraries are specified in _LIBRARIES variable
2164 * Full libtool support, from Gord Matzigkeit
2165 * No longer have to explicitly touch stamp-h when using AC_CONFIG_HEADER;
2166   AM_CONFIG_HEADER handles it automatically
2167 * Texinfo output files no longer need .info extension
2168 * Added `missing' support
2169 * Cygwin32 support
2170 * Conditionals in Makefile.am, from Ian Taylor
2171
2172 New in 1.0:
2173 * Bug fixes
2174 * distcheck target runs install and installcheck targets
2175 * Added preliminary support for DejaGnu.
2176
2177 New in 0.33:
2178 * More bug fixes
2179 * More checking
2180 * More libtool fixes from Gord Matzigkeit; libtool support is still
2181   preliminary however
2182 * Added support for jm_MAINTAINER_MODE
2183 * dist-zip support
2184 * New "distcheck" target
2185
2186 New in 0.32:
2187 * Many bug fixes
2188 * mkinstalldirs and mdate-sh now appear in directory specified by
2189   AC_CONFIG_AUX_DIR.
2190 * Removed DIST_SUBDIRS, DIST_OTHER
2191 * AC_ARG_PROGRAM only required when an actual program exists
2192 * dist-hook target now run before distribution packaged up; idea from
2193   Dieter Baron.  Other hooks exist, too.
2194 * Preliminary (unfinished) support for libtool
2195 * Added short option names.
2196 * Better "dist" support when gluing together multiple packages
2197
2198 New in 0.31:
2199 * Bug fixes
2200 * Documentation updates (many from François Pinard)
2201 * strictness `normal' now renamed to `foreign'
2202 * Renamed --install-missing to --add-missing
2203 * Now handles AC_CONFIG_AUX_DIR
2204 * Now handles TESTS macro
2205 * DIST_OTHER renamed to EXTRA_DIST
2206 * DIST_SUBDIRS is deprecated
2207 * @ALLOCA@ and @LIBOBJS@ now work in _LDADD variables
2208 * Better error messages in many cases
2209 * Program names are canonicalized
2210 * Added "check" prefix; from Gord Matzigkeit
2211
2212 New in 0.30:
2213 * Bug fixes
2214 * configure.in scanner knows about AC_PATH_XTRA, AC_OUTPUT ":" syntax
2215 * Beginnings of a test suite
2216 * Automatically adds -I options for $(srcdir), ".", and path to config.h
2217 * Doesn't print anything when running
2218 * Beginnings of MAINT_CHARSET support
2219 * Can specify version in AUTOMAKE_OPTIONS
2220 * Most errors recognizable by Emacs' M-x next-error
2221 * Added --verbose option
2222 * All "primary" variables now obsolete; use EXTRA_PRIMARY to supply
2223   configure-generated names
2224 * Required macros now distributed in aclocal.m4
2225 * New documentation
2226 * --strictness=gnu is default
2227
2228 New in 0.29:
2229 * Many bug fixes
2230 * More sophisticated configure.in scanning; now understands ALLOCA and
2231   LIBOBJS directly, handles AC_CONFIG_HEADER more precisely, etc.
2232 * TEXINFOS and MANS now obsolete; use info_TEXINFOS and man_MANS instead.
2233 * CONFIG_HEADER variable now obsolete
2234 * Can handle multiple Texinfo sources
2235 * Allow hierarchies deeper than 2.  From Gord Matzigkeit.
2236 * HEADERS variable no longer needed; now can put .h files directly into
2237   foo_SOURCES variable.
2238 * Automake automatically rebuilds files listed in AC_OUTPUT.  The
2239   corresponding ".in" files are included in the distribution.
2240
2241 New in 0.28:
2242 * Added --gnu and --gnits options
2243 * More standards checking
2244 * Bug fixes
2245 * Cleaned up 'dist' targets
2246 * Added AUTOMAKE_OPTIONS variable and several options
2247 * Now scans configure.in to get some information (preliminary)
2248
2249 New in 0.27:
2250 * Works with Perl 4 again
2251
2252 New in 0.26:
2253 * Added --install-missing option.
2254 * Pretty-prints generated macros and rules
2255 * Comments in Makefile.am are placed more intelligently in Makefile.in
2256 * Generates .PHONY target
2257 * Rule or macro in Makefile.am now overrides contents of Automake file
2258 * Substantial cleanups from François Pinard
2259
2260 New in 0.25:
2261 * Bug fixes.
2262 * Works with Perl 4 again.
2263
2264 New in 0.24:
2265 * New uniform naming scheme.
2266 * --strictness option
2267 * Works with Perl 5
2268 * '.c' files corresponding to '.y' or '.l' files are automatically
2269   distributed.
2270 * Many bug fixes and cleanups
2271
2272 New in 0.23:
2273 * Allow objects to be conditionally included in libraries via lib_LIBADD.
2274
2275 New in 0.22:
2276 * Bug fixes in 'clean' code.
2277 * Now generates 'installdirs' target.
2278 * man page installation reworked.
2279 * 'make dist' no longer re-creates all Makefile.in's.
2280
2281 New in 0.21:
2282 * Reimplemented in Perl
2283 * Added --amdir option (for debugging)
2284 * Texinfo support cleaned up.
2285 * Automatic de-ANSI-fication cleaned up.
2286 * Cleaned up 'clean' targets.
2287
2288 New in 0.20:
2289 * Automatic dependency tracking
2290 * More documentation
2291 * New variables DATA and PACKAGEDATA
2292 * SCRIPTS installed using $(INSTALL_SCRIPT)
2293 * No longer uses double-colon rules
2294 * Bug fixes
2295 * Changes in advance of internationalization
2296
2297 -----
2298
2299 Copyright (C) 1995-2012 Free Software Foundation, Inc.
2300
2301 This program is free software; you can redistribute it and/or modify
2302 it under the terms of the GNU General Public License as published by
2303 the Free Software Foundation; either version 2, or (at your option)
2304 any later version.
2305
2306 This program is distributed in the hope that it will be useful,
2307 but WITHOUT ANY WARRANTY; without even the implied warranty of
2308 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2309 GNU General Public License for more details.
2310
2311 You should have received a copy of the GNU General Public License
2312 along with this program.  If not, see <http://www.gnu.org/licenses/>.