header vars: can determine whether we are running under GNU make
[automake.git] / NEWS
blob06c012fee83a5374f5d0095d12bfc0307657d83b
1 * WARNING: New versioning scheme for Automake.
3   - Starting with this version onward, Automake will use an update and
4     more rational versioning scheme, one that will allow users to know
5     which kind of changes can be expected from a new version, based on
6     its version number.
8     + Micro versions (e.g., 1.13.3, 2.0.1, 3.2.8) will introduce only
9       documentation updates and bug and regression fixes; they will
10       not introduce new features, nor any backward-incompatibility (any
11       such incompatibility would be considered a bug, to be fixed with
12       a further  micro release).
14     + Minor versions (e.g., 1.14, 2.1) can introduce new backward
15       compatible features; the only backward-incompatibilities allowed
16       in such a release are new *non-fatal* deprecations and warnings,
17       and possibly fixes for old or non-trivial bugs (or even inefficient
18       behaviours) that could unfortunately have been seen, and used, by
19       some developers as "corner case features".  This kind of fixes
20       should hopefully be quite rare.
22     + Major versions (now expected to be released every 18 or 24 months,
23       and not more often) can introduce new big features (possibly with
24       rough edges and not-fully-stabilized APIs), removal of deprecated
25       features, backward-incompatible changes of behaviour, and possibly
26       major refactorings (that, while ideally transparent to the user,
27       could introduce new bugs).  Incompatibilities should however not
28       be introduced gratuitously and abruptly; a proper deprecation path
29       should be duly implemented in the preceding minor releases.
31   - According to this new scheme, the next major version of Automake
32     (the one that has until now been labelled as '1.14') will actually
33     become "Automake 2.0".  Automake 1.14 will be the next minor version,
34     which will introduce new features and deprecation, but no backward
35     incompatibility.
37   - See discussion about automake bug#13578 for more details and
38     background: <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13578>
40 * WARNING: Future backward-incompatibilities!
42   - Automake 2.0 will require Autoconf 2.70 or later (which is still
43     unreleased at the moment of writing, but is planned to be released
44     before Automake 2.0 is).
46   - Automake 2.0 will drop support for the long-deprecated 'configure.in'
47     name for the Autoconf input file.  You are advised to start using the
48     recommended name 'configure.ac' instead, ASAP.
50   - The ACLOCAL_AMFLAGS special make variable will be fully deprecated
51     in Automake 2.0 (where it will raise warnings in the "obsolete"
52     category).  You are advised to start relying on the new Automake
53     support for AC_CONFIG_MACRO_DIRS instead (which was introduced in
54     Automake 1.13).
56   - Automake 2.0 will remove support for automatic dependency tracking
57     with the SGI C/C++ compilers on IRIX.  The SGI depmode has been
58     reported broken "in the wild" already, and we don't think investing
59     time in debugging and fixing is worthwhile, especially considering
60     that SGI has last updated those compilers in 2006, and is expected
61     to retire support for them in December 2013:
62     <http://www.sgi.com/services/support/irix_mips_support.html>
64   - Future versions of Automake might remove support for MS-DOS and
65     Windows 95/98/ME (support for them was offered by relying on the
66     DJGPP project).  Note however that both Cygwin and MSYS/MinGW on
67     modern Windows versions will continue to be fully supported.
69   - Automake-provided scripts and makefile recipes might (finally!)
70     start assuming a POSIX shell in Automake 2.0.
72   - Starting from Automake 2.0, third-party m4 files located in the
73     system-wide aclocal directory, as well as in any directory listed
74     in the ACLOCAL_PATH environment variable, will take precedence
75     over "built-in" Automake macros.  For example (assuming Automake
76     is installed in the /usr/local hierarchy), a definition of the
77     AM_PROG_VALAC macro found in '/usr/local/share/aclocal/my-vala.m4'
78     should take precedence over the same-named automake-provided macro
79     (defined in '/usr/local/share/aclocal-2.0/vala.m4').
81 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
83 New in 1.13.2:
85 * Obsolescent features:
87   - Use of suffix-less info files (that can be specified through the
88     '@setfilename' macro in Texinfo input files) is discouraged, and
89     its use will raise warnings in the 'obsolete' category.
91   - Use of Texinfo input files with '.txi' or '.texinfo' extensions
92     is discouraged, and its use will raise warnings in the 'obsolete'
93     category.  You are advised to simply use the '.texi' extension
94     instead.
96 * Documentation fixes:
98   - The long-deprecated but still supported two-arguments invocation form
99     of AM_INIT_AUTOMAKE is documented once again.  This seems the sanest
100     thing to do, given that support for such an usage might need to remain
101     in place for a unspecified amount of time in order to cater for people
102     who want to define the version number for their package dynamically at
103     configure runtime (unfortunately, Autoconf does not yet support this
104     scenario, so we cannot delegate the work to it).
106   - The serial testsuite harness is no longer reported as "deprecated",
107     but as "discouraged".  We have no plan to remove it, not to make its
108     use cause runtime warnings.
110   - The parallel testsuite is no longer reported as "experimental"; it
111     is well tested, and should be stable now.
113   - The 'shar' and 'tarZ' distribution formats and the 'dist-shar' and
114     'dist-tarZ' options are obsolescent, and their use is deprecated
115     in the documentation.
117   - Other minor miscellaneous fixes and improvements; in particular,
118     some improvements in cross-references.
120 * Bugs fixed:
122   - The obsolete macros AM_CONFIG_HEADER or AM_PROG_CC_STDC work once
123     again, as they did in Automake 1.12.x (albeit printing runtime
124     warnings in the 'obsolete' category).  Removing them has turned
125     out to be a very bad idea, because it complicated distro packing
126     enormously.  Making them issue fatal warnings, as we did in
127     Automake 1.13, has turned out to be a similarly very bad idea,
128     for exactly the same reason.
130   - Aclocal no longer error out if the first local m4 directory (as
131     specified by the '-I' option or the 'AC_CONFIG_MACRO_DIRS' or
132     'AC_CONFIG_MACRO_DIR' macros) doesn't exist; it merely report a
133     warning in the 'unsupported' category.  This is done to support
134     some pre-existing real-world usages; refer to automake bug#13514
135     for more details.
137   - Aclocal no longer consider directories for extra m4 files more than
138     once, even if they are specified multiple times.  This prevents
139     problems in older packages that specify both
141         AC_CONFIG_MACRO_DIR([m4])       in configure.ac
142         ACLOCAL_AMFLAGS = -I m4         in Makefile.am
144     If the 'm4' directory did not exist when aclocal was called the first
145     time by autoreconf, an error would have ensued with Automake 1.13 and
146     1.13.1.  See automake bug#13514.
148 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
150 New in 1.13.1:
152 * Bugs fixed:
154   - Use of the obsolete macros AM_CONFIG_HEADER or AM_PROG_CC_STDC now
155     causes a clear and helpful error message, instead of obscure ones
156     (issue introduced in Automake 1.13).
158 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
160 New in 1.13:
162 * Bugs fixed:
164   - ylwrap renames properly header guards in generated header files
165     (*.h), instead of leaving Y_TAB_H.
167   - ylwrap now also converts header guards in implementation files
168     (*.c).  Because ylwrap failed to rename properly #include in the
169     implementation files, current versions of Bison (e.g., 2.7)
170     duplicate the generated header file in the implementation file.
171     The header guard then protects the implementation file from
172     duplicate definitions from the header file.
174 * Version requirements:
176   - Autoconf 2.65 or greater is now required.
178   - The rules to build PDF and DVI output from Texinfo input now
179     require Texinfo 4.9 or later.
181 * Obsolete features:
183   - Support for the "Cygnus-style" trees (once enabled by the 'cygnus'
184     option) has been removed.  See discussion about automake bug#11034
185     for more background: <http://debbugs.gnu.org/11034>.
187   - The deprecated aclocal option '--acdir' has been removed.  You
188     should use the options '--automake-acdir' and '--system-acdir'
189     instead (which have been introduced in Automake 1.11.2).
191   - The following long-obsolete m4 macros have been removed:
193       AM_PROG_CC_STDC:    superseded by AC_PROG_CC since October 2002
194       fp_PROG_CC_STDC:    broken alias for AM_PROG_CC_STDC
195       fp_WITH_DMALLOC:    old alias for AM_WITH_DMALLOC
196       AM_CONFIG_HEADER:   superseded by AC_CONFIG_HEADERS since July 2002
197       ud_PATH_LISPDIR:    old alias for AM_PATH_LISPDIR
198       jm_MAINTAINER_MODE: old alias for AM_MAINTAINER_MODE
199       ud_GNU_GETTEXT:     old alias for AM_GNU_GETTEXT
200       gm_PROG_LIBTOOL:    old alias for AC_PROG_LIBTOOL
201       fp_C_PROTOTYPES:    old alias for AM_C_PROTOTYPES (which was part
202                           of the now-removed automatic de-ANSI-fication
203                           support of Automake)
205   - All the "old alias" macros in 'm4/obsolete.m4' have been removed.
207   - Use of the long-deprecated two- and three-arguments invocation forms
208     of the AM_INIT_AUTOMAKE is no longer documented.  It's still supported
209     though (albeit with a warning in the 'obsolete' category), to cater
210     for people who want to define the version number for their package
211     dynamically (e.g., from the current VCS revision).  We'll have to
212     continue this support until Autoconf itself is fixed to allow better
213     support for such dynamic version numbers.
215 * Elisp byte-compilation:
217   - The byte compilation of '.el' files into '.elc' files is now done
218     with a suffix rule.  This has simplified the compilation process, and
219     more importantly made it less brittle.  The downside is that emacs is
220     now invoked once for each '.el' files, which cause some noticeable
221     slowdowns.  These should however be mitigated on multicore machines
222     (which are becoming the norm today) if concurrent  make ("make -j")
223     is used.
225   - Elisp files placed in a subdirectory are now byte-compiled to '.elc'
226     files in the same subdirectory; for example, byte-compiling of file
227     'sub/foo.el' file will result in 'sub/foo.elc' rather than in
228     'foo.elc'.  This behaviour is backward-incompatible with older
229     Automake versions, but it is more natural and more sane.  See also
230     automake bug#7441.
232   - The Emacs invocation performing byte-compilation of '.el' files honors
233     the $(AM_ELCFLAGS) and $(ELCFLAGS) variables; as typical, the former
234     one is  developer-reserved and the latter one user-reserved.
236   - The 'elisp-comp' script, once provided by Automake, has been rendered
237     obsoleted by the just-described changes, and thus removed.
239 * Changes to Automake-generated testsuite harnesses:
241   - The parallel testsuite harness (previously only enabled by the
242     'parallel-tests' option) is the default one; the older serial
243     testsuite harness will still be available through the use of the
244     'serial-tests' option (introduced in Automake 1.12).
246   - The 'color-tests' option is now unconditionally activated by default.
247     In particular, this means that testsuite output is now colorized by
248     default if the attached terminal seems to support ANSI escapes, and
249     that the user can force output colorization by setting the variable
250     AM_COLOR_TESTS to "always".  The 'color-tests' is still recognized
251     for backward-compatibility, although it's a handled as a no-op now.
253 * Silent rules support:
255   - Support for silent rules is now always active in Automake-generated
256     Makefiles.  So, although the verbose output is still the default,
257     the user can now always use "./configure --enable-silent-rules" or
258     "make V=0" to enable quieter output in the package he's building.
260   - The 'silent-rules' option has now become a no-op, preserved for
261     backward-compatibility only.  In particular, its use no longer
262     disables the warnings in the 'portability-recursive' category.
264 * Texinfo Support:
266   - The rules to build PDF and DVI files from Texinfo input now require
267     Texinfo 4.9 or later.
269   - The rules to build PDF and DVI files from Texinfo input now use the
270     '--build-dir' option, to keep the auxiliary files used by texi2dvi
271     and texi2pdf around without cluttering the build directory, and to
272     make it possible to run the "dvi" and "pdf" recipes in parallel.
274 * Automatic remake rules and 'missing' script:
276   - The 'missing' script no longer tries to update the timestamp of
277     out-of-date files that require a maintainer-specific tool to be
278     remade, in case the user lacks such a tool (or has a too-old version
279     of it).  It just gives a useful warning, and in some cases also a
280     tip about how to obtain such a tool.
282   - The missing script has thus become useless as a (poor) way to work
283     around the sketched-timestamps issues that can happen for projects
284     that keep generated files committed in their VCS repository.  Such
285     projects are now encouraged to write a custom "fix-timestamps.sh"
286     script to avoid such issues; a simple example is provided in the
287     "CVS and generated files" chapter of the automake manual.
289 * Recursive targets:
291   - The user can now define his own recursive targets that recurse
292     in the directories specified in $(SUBDIRS).  This can be done by
293     specifying the name of such targets in invocations of the new
294     'AM_EXTRA_RECURSIVE_TARGETS' m4 macro.
296 * Tags:
298   - Any failure in the recipe of the "tags", "ctags", "cscope" or
299     "cscopelist" targets in a subdirectory is now propagated to the
300     top-level make invocation.
302   - Tags are correctly computed also for files in _SOURCES variables that
303     only list files with non-standard suffixes (see automake bug#12372).
305 * Improvements to aclocal and related rebuilds rules:
307   - Autoconf-provided macros AC_CONFIG_MACRO_DIR and AC_CONFIG_MACRO_DIRS
308     are now traced by aclocal, and can be used to declare the local m4
309     include directories.  Formerly, one had to specify it with an explicit
310     '-I' option to the 'aclocal' invocation.
312   - The special make variable ACLOCAL_AMFLAGS is deprecated; future
313     Automake versions will warn about its use, and later version will
314     remove support for it altogether.
316 * The depcomp script:
318   - Dropped support for libtool 1.4.
320   - Various internal refactorings.  They should cause no visible change,
321     but the chance for regression is there anyway, so please report any
322     unexpected or suspicious behaviour.
324   - Support for pre-8.0 versions of the Intel C Compiler has been dropped.
325     This should cause no problem, since icc 8.0 has been released in
326     December 2003 -- almost nine years ago.
328   - Support for tcc (the Tiny C Compiler) has been improved, and is now
329     handled through a dedicated 'tcc' mode.
331 * The ylwrap script:
333   - ylwrap generates header guards with a single '_' for series of non
334     alphabetic characters, instead of several.  This is what Bison >=
335     2.5.1 does.
337 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
339 Bugs fixed in 1.12.6:
341 * Python-related bugs:
343   - The default installation location for python modules has been improved
344     for Python 3 on Debian and Ubuntu systems, changing from:
346         ${prefix}/lib/python3/dist-packages
348     to
350         ${prefix}/lib/python3.x/site-packages
352     This change should ensure modules installed using the default ${prefix}
353     "/usr/local" are found by default by system python 3.x installations.
354     See automake bug#10227.
356   - Python byte-compilation supports the new layout mandated by PEP-3147,
357     with its __pycache__ directory (automake bug#8847).
359 * Build system issues:
361   - The maintainer rebuild rules for Makefiles and aclocal.m4 in
362     Automake's own build system works correctly again (bug introduced
363     in Automake 1.12.5).
365 * Testsuite issues:
367   - The Vala-related tests has been changed to adjust to the removal of
368     the 'posix' profile in the valac compiler.  See automake bug#12934
369     a.k.a. bug#12522.
371   - Some spurious testsuite failures related to older tools and systems
372     have been fixed.
374 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
376 New in 1.12.5:
378 * Vala support:
380   - The AM_PROG_VALAC macro has been enhanced to takes two further
381     optional arguments; it's signature now being
383         AM_PROG_VALAC([MINIMUM-VERSION], [ACTION-IF-FOUND],
384                       [ACTION-IF-NOT-FOUND])
386   - By default, AM_PROG_VALAC no longer aborts the configure invocation
387     if the Vala compiler found is too old, but simply prints a warning
388     messages (as it did when the Vala compiler was not found).  This
389     should avoid unnecessary difficulties for end users that just want
390     to compile the unmodified, distributed Vala-generated C sources,
391     but happens to have an old Vala compiler in their PATH.  This fixes
392     automake bug#12688.
394   - If no proper Vala compiler is found at configure runtime, AM_PROG_VALAC
395     will set the AC_SUBST'd variable 'VALAC' to 'valac' rather than to ':'.
396     This is a better default, because with it a triggered makefile rule
397     invoking a Vala compilation will clearly fail with an informative error
398     message like "valac: command not found", rather than silently, with
399     the error possibly going unnoticed or triggering harder-to-diagnose
400     fallout failures in later steps.
402 * Miscellaneous changes:
404   - automake and aclocal no longer honours the 'perllibdir' environment
405     variable.  That had always been intended only as an hack required in
406     the testsuite, not meant for any use beyond that.
408 Bugs fixed in 1.12.5:
410 * Long-standing bugs:
412   - Automake no longer generates spurious remake rules invoking autoheader
413     to regenerate the template corresponding to header files specified after
414     the first one in AC_CONFIG_HEADERS (automake bug#12495).
416   - When wrapping Microsoft tools, the 'compile' script falls back to
417     finding classic 'libname.a' style libraries when 'name.lib' and
418     'name.dll.lib' aren't available.
420 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
422 New in 1.12.4:
424 * Warnings and deprecations:
426   - Warnings in the 'obsolete' category are enabled by default both in
427     automake and aclocal.
429 * Miscellaneous changes:
431   - Some testsuite weaknesses and spurious failures have been fixed.
433 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
435 New in 1.12.3:
437 * Miscellaneous changes:
439   - The '.m4' files provided by Automake no longer define serial numbers.
440     This should cause no difference in the behaviour of aclocal though.
442   - Some testsuite weaknesses and spurious failures have been fixed.
444   - There is initial support for automatic dependency tracking with the
445     Portland Group C/C++ compilers, thanks to the new new depmode 'pgcc'.
447 Bugs fixed in 1.12.3:
449 * Long-standing bugs:
451   - Instead of renaming only self-references of files (typically for
452     #lines), ylwrap now also renames references to the other generated
453     files.  This fixes support for GLR and C++ parsers from Bison (PR
454     automake/491 and automake bug#7648): 'parser.c' now properly
455     #includes 'parser.h' instead of 'y.tab.h'.
457   - Generated files unknown to ylwrap are now preserved.  This fixes
458     C++ support for Bison (automake bug#7648): location.hh and the
459     like are no longer discarded.
461 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
463 New in 1.12.2:
465 * Warnings and deprecations:
467   - Automake now issues a warning (in the 'portability' category) if
468     'configure.in' is used instead of 'configure.ac' as the Autoconf
469     input file.  Such a warning will also be present in the next
470     Autoconf version (2.70).
472 * Cleaning rules:
474   - Recursive cleaning rules descends into the $(SUBDIRS) in the natural
475     order (as done by the other recursive rules), rather than in the
476     inverse order.  They used to do that in order to work a round a
477     limitation in an older implementation of the automatic dependency
478     tracking support, but that limitation had been lifted years ago
479     already, when the automatic dependency tracking based on side-effects
480     of compilation had been introduced.
482   - Cleaning rules for compiled objects (both "plain" and libtool) work
483     better when subdir objects are involved, not triggering a distinct
484     'rm' invocation for each such object.  They do so by removing *any*
485     compiled object file that is in the same directory of a subdir
486     object.  See automake bug#10697.
488 * Silent rules support:
490   - A new predefined $(AM_V_P) make variable is provided; it expands
491     to a shell conditional that can be used in recipes to know whether
492     make is being run in silent or verbose mode.
494 Bugs fixed in 1.12.2:
496 * SECURITY VULNERABILITIES!
498   - The 'distcheck' recipe no longer grants temporary world-write
499     permissions on the extracted distdir.  Even if such rights were
500     only granted for a vanishingly small time window, the implied
501     race condition proved to be enough to allow a local attacker
502     to run arbitrary code with the privileges of the user running
503     "make distcheck".  This is CVE-2012-3386.
505 * Long-standing bugs:
507   - The "recheck" targets behaves better in the face of build failures
508     related to previously failed tests.  For example, if a test is a
509     compiled program that must be rerun by "make recheck", and its
510     compilation fails, it will still be rerun by further "make recheck"
511     invocations.  See automake bug#11791.
513 * Bugs introduced by 1.12.1:
515   - Automake provides once again the '$(mkdir_p)' make variable and the
516     '@mkdir_p@' substitution (both as simple aliases for '$(MKDIR_P)'),
517     for better backward-compatibility.
519 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
521 New in 1.12.1:
523 * New supported languages:
525   - Support for Objective C++ has been added; it should work similarly to
526     the support for Objective C.
528 * Deprecated obsolescent features:
530   - Use of the long-deprecated two- and three-arguments invocation forms
531     of the AM_INIT_AUTOMAKE macro now elicits a warning in the 'obsolete'
532     category.  Starting from some future major Automake release (likely
533     post-1.13), such usages will no longer be allowed.
535   - Support for the "Cygnus-style" trees (enabled by the 'cygnus' option) is
536     now deprecated (its use triggers a warning in the 'obsolete' category).
537     It will be removed in the next major Automake release (1.13).
539   - The long-obsolete (since 1.10) automake-provided $(mkdir_p) make
540     variable, @mkdir_p@ configure-time substitution and AM_PROG_MKDIR
541     m4 macro are deprecated, eliciting a warning in the 'obsolete'
542     category.
544 * Miscellaneous changes:
546   - The Automake test cases now require a proper POSIX-conforming shell.
547     Older non-POSIX Bourne shells (like Solaris 10 /bin/sh) will no longer
548     be accepted.  In most cases, the user shouldn't have to specify such
549     POSIX shell explicitly, since it will be looked up at configure time.
550     Still, when this lookup fails, or when the user wants to override its
551     conclusion, the variable 'AM_TEST_RUNNER_SHELL' can be used (pointing
552     to the shell that will be used to run the Automake test cases).
554 Bugs fixed in 1.12.1:
556 * Bugs introduced by 1.12:
558   - Several weaknesses in Automake's own build system and test suite
559     have been fixed.
561 * Bugs introduced by 1.11.3:
563   - When given non-option arguments, aclocal rejects them, instead of
564     silently ignoring them.
566 * Long-standing bugs:
568   - When the 'color-tests' option is in use, forcing of colored testsuite
569     output through "AM_COLOR_TESTS=always" works even if the terminal is
570     a non-ANSI one, i.e., if the TERM environment variable has a value of
571     "dumb".
573   - Several inefficiencies and poor performances in the implementation
574     of the parallel-tests 'check' and 'recheck' targets have been fixed.
576   - The post-processing of output "#line" directives done the ylwrap
577     script is more faithful w.r.t. files in a subdirectory; for example,
578     if the processed file is "src/grammar.y", ylwrap will correctly
579     produce directives like:
580         #line 7 "src/grammar.y"
581     rather than like
582         #line 7 "grammar.y"
583     as it did before.
585 * Bugs with new Perl versions:
587   - Aclocal works correctly with perl 5.16.0 (automake bug#11543).
589 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
591 New in 1.12:
593 * Obsolete features removed:
595   - The never documented nor truly used script 'acinstall' has been
596     removed.
598   - Support for automatic de-ANSI-fication has been removed.
600   - The support for the "obscure" multilib feature has been removed
601     from Automake core (but remains available in the 'contrib/'
602     directory of the Automake distribution).
604   - Support for ".log -> .html" conversion and the check-html and
605     recheck-html targets has been removed from Automake core (but
606     remains available in the 'contrib/' directory of the Automake
607     distribution).
609   - The deprecated 'lzma' compression format for distribution archives
610     has been removed, in favor of 'xz' and 'lzip'.
612   - The obsolete AM_WITH_REGEX macro has been removed.
614   - The long-deprecated options '--output-dir', '--Werror' and
615     '--Wno-error' have been removed.
617   - The chapter on the history of Automake has been moved out of the
618     reference manual, into a new dedicated Texinfo file.
620 * New targets:
622   - New 'cscope' target to build a cscope database for the source tree.
624 * Changes to Automake-generated testsuite harnesses:
626   - The new automake option 'serial-tests' has been introduced.  It can
627     be used to explicitly instruct automake to use the older serial
628     testsuite harness.  This is still the default at the moment, but it
629     might change in future versions.
631   - The 'recheck' target (provided by the parallel testsuite harness) now
632     depends on the 'all' target.  This allows for a better user-experience
633     in test-driven development.  See automake bug#11252.
635   - Test scripts that exit with status 99 to signal an "hard error" (e.g.,
636     and unexpected or internal error, or a failure to set up the test case
637     scenario) have their outcome reported as an 'ERROR' now.  Previous
638     versions of automake reported such an outcome as a 'FAIL' (the only
639     difference with normal failures being that hard errors were counted
640     as failures even when the test originating them was listed in
641     XFAIL_TESTS).
643   - The testsuite summary displayed by the parallel-test harness has a
644     completely new format, that always list the numbers of passed, failed,
645     xfailed, xpassed, skipped and errored tests, even when these numbers
646     are zero (but using smart coloring when the color-tests option is in
647     effect).
649   - The default testsuite driver offered by the 'parallel-tests' option is
650     now implemented (partly at least) with the help of automake-provided
651     auxiliary scripts (e.g., 'test-driver'), instead of relying entirely
652     on code in the generated Makefile.in.
653     This has two noteworthy implications.  The first one is that projects
654     using the 'parallel-tests' option should now either run automake with
655     the '--add-missing' option, or manually copy the 'test-driver' script
656     into their tree.  The second, and more important, implication is that
657     now, when the 'parallel-tests' option is in use, TESTS_ENVIRONMENT can
658     no longer be used to define a test runner, and the command specified
659     in LOG_COMPILER (and <ext>_LOG_COMPILER) must be a *real* executable
660     program or script.  For example, this is still a valid usage (albeit
661     a little contorted):
663       TESTS_ENVIRONMENT = \
664         if test -n '$(STRICT_TESTS)'; then \
665           maybe_errexit='-e'; \
666         else \
667           maybe_errexit=''; \
668         fi;
669       LOG_COMPILER = $(SHELL) $$maybe_errexit
671     OTOH, this is no longer a valid usage:
673       TESTS_ENVIRONMENT = \
674         $(SHELL) `test -n '$(STRICT_TESTS_CHECKING)' && echo ' -e'`
676     neither is this:
678       TESTS_ENVIRONMENT = \
679         run_with_perl_or_shell () \
680         { \
681           if grep -q '^#!.*perl' $$1; then
682             $(PERL) $$1; \
683           else \
684             $(SHELL) $$1; \
685           fi; \
686         }
687       LOG_COMPILER = run_with_perl_or_shell
689   - The package authors can now use customary testsuite drivers within
690     the framework provided by the 'parallel-tests' testsuite harness.
691     Consistently with the existing syntax, this can be done by defining
692     special makefile variables 'LOG_DRIVER' and '<ext>_LOG_DRIVER'.
694   - A new developer-reserved variable 'AM_TESTS_FD_REDIRECT' can be used
695     to redirect/define file descriptors used by the test scripts.
697   - The parallel-tests harness generates now, in addition the '.log' files
698     holding the output produced by the test scripts, a new set of '.trs'
699     files, holding "metadata" derived by the execution of the test scripts;
700     among such metadata are the outcomes of the test cases run by a script.
702   - Initial and still experimental support for the TAP test protocol is
703     now provided.
705 * Changes to Yacc and Lex support:
707   - C source and header files derived from non-distributed Yacc and/or
708     Lex sources are now removed by a simple "make clean" (while they were
709     previously removed only by "make maintainer-clean").
711   - Slightly backward-incompatible change, relevant only for use of Yacc
712     with C++: the extensions of the header files produced by the Yacc
713     rules are now modelled after the extension of the corresponding
714     sources.  For example, yacc files named "foo.y++" and "bar.yy" will
715     produce header files named "foo.h++" and "bar.hh" respectively, where
716     they would have previously produced header files named simply "foo.h"
717     and "bar.h".  This change offers better compatibility with 'bison -o'.
719 * Miscellaneous changes:
721   - The AM_PROG_VALAC macro now causes configure to exit with status 77,
722     rather than 1, if the vala compiler found is too old.
724   - The build system of Automake itself now avoids the use of make
725     recursion as much as possible.
727   - Automake now prefers to quote 'like this' or "like this", rather
728     than `like this', in diagnostic message and generated Makefiles,
729     to accommodate the new GNU Coding Standards recommendations.
731   - Automake has a new option '--print-libdir' that prints the path of the
732     directory containing the Automake-provided scripts and data files.
734   - The 'dist' and 'dist-all' targets now can run compressors in parallel.
736   - The rules to create pdf, dvi and ps output from Texinfo files now
737     works better with modern 'texi2dvi' script, by explicitly passing
738     it the '--clean' option to ensure stray auxiliary files are not
739     left to clutter the build directory.
741   - Automake can now generate silenced rules for texinfo outputs.
743   - Some auxiliary files that are automatically distributed by Automake
744     (e.g., 'install-sh', or the 'depcomp' script for packages compiling
745     C sources) might now be listed in the DIST_COMMON variable in many
746     Makefile.in files, rather than in the top-level one.
748   - Messages of types warning or error from 'automake' and 'aclocal'
749     are now prefixed with the respective type, and presence of -Werror
750     is noted.
752   - Automake's early configure-time sanity check now tries to avoid
753     sleeping for a second, which slowed down cached configure runs
754     noticeably.  In that case, it will check back at the end of the
755     configure script to ensure that at least one second has passed, to
756     avoid time stamp issues with makefile rules rerunning autotools
757     programs.
759   - The warnings in the category 'extra-portability' are now enabled by
760     '-Wall'.  In previous versions, one has to use '-Wextra-portability'
761     to enable them.
763 Bugs fixed in 1.12:
765   - Various minor bugfixes for recent or long-standing bugs.
767 * Bugs introduced by 1.11:
769   - The AM_COND_IF macro also works if the shell expression for the
770     conditional is no longer valid for the condition.
772   - The automake-provided parallel testsuite harness no longer fails
773     with BSD make used in parallel mode when there are test scripts in
774     a subdirectory, like in:
776       TESTS = sub/foo.test sub/bar.test
778 * Long-standing bugs:
780   - Automake's own build system finally have a real "installcheck" target.
782   - Vala-related cleanup rules are now more complete, and work better in
783     a VPATH setup.
785   - Files listed with the AC_REQUIRE_AUX_FILE macro in configure.ac are
786     now automatically distributed also if the directory of the auxiliary
787     files coincides with the top-level directory.
789   - Automake now detects the presence of the '-d' flag in the various
790     '*YFLAGS' variables even when their definitions involve indirections
791     through other variables, such as in:
792       foo_opts = -d
793       AM_YFLAGS = $(foo_opts)
795   - Automake now complains if a '*YFLAGS' variable has any conditional
796     content, not only a conditional definition.
798   - Explicit enabling and/or disabling of Automake warning categories
799     through the '-W...' options now always takes precedence over the
800     implicit warning level implied by Automake strictness (foreign, gnu
801     or gnits), regardless of the order in which such strictness and
802     warning flags appear.  For example, a setting like:
803       AUTOMAKE_OPTIONS = -Wall --foreign
804     will cause the warnings in category 'portability' to be enabled, even
805     if those warnings are by default disabled in 'foreign' strictness.
807 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
809 Bugs fixed in 1.11.5:
811 * Bugs introduced by 1.11.3:
813   - Vala files with '.vapi' extension are now recognized and handled
814     correctly again.  See automake bug#11222.
816   - Vala support work again for projects that contain some program
817     built from '.vala' (and possibly '.c') sources and some other
818     program built from '.c' sources *only*.  See automake bug#11229.
820 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
822 New in 1.11.4:
824 * Miscellaneous changes:
826   - The 'ar-lib' script now ignores the "s" (symbol index) and "S" (no
827     symbol index) modifiers as well as the "s" action, as the symbol index
828     is created unconditionally by Microsoft lib.  Also, the "q" (quick)
829     action is now a synonym for "r" (replace).  Also, the script has been
830     ignoring the "v" (verbose) modifier already since Automake 1.11.3.
832   - When the 'compile' script is used to wrap MSVC, it now accepts an
833     optional space between the -I, -L and -l options and their respective
834     arguments, for better POSIX compliance.
836   - There is an initial, experimental support for automatic dependency
837     tracking with tcc (the Tiny C Compiler).  Its associated depmode is
838     currently recognized as "icc" (but this and other details are likely
839     to change in future versions).
841   - Automatic dependency tracking now works also with the IBM XL C/C++
842     compilers, thanks to the new new depmode 'xlc'.
844 Bugs fixed in 1.11.4:
846 * Bugs introduced by 1.11.2:
848   - A definition of 'noinst_PYTHON' before 'python_PYTHON' (or similar)
849     no longer cause spurious failures upon "make install".
851   - The user can now instruct the 'uninstall-info' rule not to update
852     the '${infodir}/dir' file by exporting the environment variable
853     'AM_UPDATE_INFO_DIR' to the value "no".  This is done for consistency
854     with how the 'install-info' rule operates since automake 1.11.2.
856 * Long-standing bugs:
858   - It is now possible for a foo_SOURCES variable to hold Vala sources
859     together with C header files, as well as with sources and headers for
860     other supported languages (e.g., C++).  Previously, only mixing C and
861     Vala sources was supported.
863   - If "aclocal --install" is used, and the first directory specified with
864     '-I' is non-existent, aclocal will now create it before trying to copy
865     files in it.
867   - An empty declaration of a "foo_PRIMARY" no longer cause the generated
868     install rules to create an empty $(foodir) directory; for example, if
869     Makefile.am contains something like:
871       pkglibexec_SCRIPTS =
872       if FALSE
873       pkglibexec_SCRIPTS += bar.sh
874       endif
876     the $(pkglibexec) directory will not be created upon "make install".
878 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
880 New in 1.11.3:
882 * Miscellaneous changes:
884   - Automake's own build system is more silent by default, making use of
885     the 'silent-rules' option.
887   - The master copy of the 'gnupload' script is now maintained in gnulib,
888     not in automake.
890   - The 'missing' script no longer tries to wrap calls to 'tar'.
892   - "make dist" no longer wraps 'tar' invocations with the 'missing'
893     script.  Similarly, the obsolescent variable '$(AMTAR)' (which you
894     shouldn't be using BTW ;-) no longer invokes the 'missing' script
895     to wrap tar, but simply invokes the 'tar' program itself.
897   - "make dist" can now create lzip-compressed tarballs.
899   - In the Automake info documentation, the Top node and the nodes about
900     the invocation of the automake and aclocal programs have been renamed;
901     now, calling "info automake" will open the Top node, while calling
902     "info automake-invocation" and "info aclocal-invocation" will access
903     the nodes about the invocation of respectively automake and aclocal.
905   - Automake is now distributed as a gzip-compressed and an xz-compressed
906     tarball.  Previously, bzip2 was used instead of xz.
908   - The last relics of Python 1.5 support have been removed from the
909     AM_PATH_PYTHON macro.
911   - For programs and libraries, automake now detects EXTRA_foo_DEPENDENCIES
912     and adds them to the normal list of dependencies, but without
913     overwriting the foo_DEPENDENCIES variable, which is normally computed
914     by automake.
916 Bugs fixed in 1.11.3:
918 * Bugs introduced by 1.11.2:
920   - Automake now correctly recognizes the prefix/primary combination
921    'pkglibexec_SCRIPTS' as valid.
923   - The parallel-tests harness no longer trips on sed implementations
924     with stricter limits on the length of input lines (problem seen at
925     least on Solaris 8).
927 * Long-standing bugs:
929   - The "deleted header file problem" for *.am files is avoided by stub
930     rules.  This allows 'make' to trigger a rerun of 'automake' also if
931     some previously needed '.am' file has been removed.
933   - The 'silent-rules' option now generates working makefiles even
934     for the uncommon 'make' implementations that do not support the
935     nested-variables extension to POSIX 2008.  For such 'make'
936     implementations, whether a build is silent is determined at
937     configure time, and cannot be overridden at make time with
938     "make V=0" or "make V=1".
940   - Vala support now works better in VPATH setups.
942 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
944 New in 1.11.2:
946 * Changes to aclocal:
948   - The `--acdir' option is deprecated.  Now you should use the new options
949     `--automake-acdir' and `--system-acdir' instead.
951   - The `ACLOCAL_PATH' environment variable is now interpreted as a
952     colon-separated list of additional directories to search after the
953     automake internal acdir (by default ${prefix}/share/aclocal-APIVERSION)
954     and before the system acdir (by default ${prefix}/share/aclocal).
956 * Miscellaneous changes:
958   - The Automake support for automatic de-ANSI-fication has been
959     deprecated.  It will probably be removed in the next major Automake
960     release (1.12).
962   - The `lzma' compression scheme and associated automake option `dist-lzma'
963     is obsoleted by `xz' and `dist-xz' due to upstream changes.
965   - You may adjust the compression options used in dist-xz and dist-bzip2.
966     The default is now merely -e for xz, but still -9 for bzip;  you may
967     specify a different level via the XZ_OPT and BZIP2 envvars respectively.
968     E.g., "make dist-xz XZ_OPT=-7" or "make dist-bzip2 BZIP2=-5"
970   - The `compile' script now converts some options for MSVC for a better
971     user experience.  Similarly, the new `ar-lib' script wraps Microsoft lib.
973   - The py-compile script now accepts empty arguments passed to the options
974     `--destdir' and `--basedir', and complains about unrecognized options.
975     Moreover, a non-option argument or a special `--' argument terminates
976     the list of options.
978   - A developer that needs to pass specific flags to configure at "make
979     distcheck" time can now, and indeed is advised to, do so by defining
980     the developer-reserved makefile variable AM_DISTCHECK_CONFIGURE_FLAGS,
981     instead of the old DISTCHECK_CONFIGURE_FLAGS.
982     The DISTCHECK_CONFIGURE_FLAGS variable should now be reserved for the
983     user; still, the old Makefile.am files that used to define it will
984     still continue to work as before.
986   - New macro AM_PROG_AR that looks for an archiver and wraps it in the new
987     'ar-lib' auxiliary script if the selected archiver is Microsoft lib.
988     This new macro is required for LIBRARIES and LTLIBRARIES when automake
989     is run with -Wextra-portability and -Werror.
991   - When using DejaGnu-based testsuites, the user can extend the `site.exp'
992     file generated by automake-provided rules by defining the special make
993     variable `$(EXTRA_DEJAGNU_SITE_CONFIG)'.
995   - The `install-info' rule can now be instructed not to create/update
996     the `${infodir}/dir' file, by exporting the new environment variable
997     `AM_UPDATE_INFO_DIR' to the value "no".
999 Bugs fixed in 1.11.2:
1001 * Bugs introduced by 1.11:
1003   - The parallel-tests driver no longer produces erroneous results with
1004     Tru64/OSF 5.1 sh upon unreadable log files.
1006   - The `parallel-tests' test driver does not report spurious successes
1007     when used with concurrent FreeBSD make (e.g., "make check -j3").
1009   - When the parallel-tests driver is in use, automake now explicitly
1010     rejects invalid entries and conditional contents in TEST_EXTENSIONS,
1011     instead of issuing confusing and apparently unrelated error messages
1012     (e.g., "non-POSIX variable name", "bad characters in variable name",
1013     or "redefinition of TEST_EXTENSIONS), or even, in some situations,
1014     silently producing broken `Makefile.in' files.
1016   - The `silent-rules' option now truly silences all compile rules, even
1017     when dependency tracking is disabled.  Also, when `silent-rules' is
1018     not used, `make' output no longer contains spurious backslash-only
1019     lines, thus once again matching what Automake did before 1.11.
1021   - The AM_COND_IF macro also works if the shell expression for the
1022     conditional is no longer valid for the condition.
1024 * Long-standing bugs:
1026   - The order of Yacc and Lex flags is fixed to be consistent with other
1027     languages: $(AM_YFLAGS) comes before $(YFLAGS), and $(AM_LFLAGS) before
1028     $(LFLAGS), so that the user variables override the developer variables.
1030   - "make distcheck" now correctly complains also when "make uninstall"
1031     leaves one and only one file installed in $(prefix).
1033   - A "make uninstall" issued before a "make install", or after a mere
1034     "make install-data" or a mere "make install-exec" does not spuriously
1035     fail anymore.
1037   - Automake now warns about more primary/directory invalid combinations,
1038     such as "doc_LIBRARIES" or "pkglib_PROGRAMS".
1040   - Rules generated by Automake now try harder to not change any files when
1041     `make -n' is invoked.  Fixes include compilation of Emacs Lisp, Vala, or
1042     Yacc source files and the rule to update config.h.
1044   - Several scripts and the parallel-tests testsuite driver now exit with
1045     the right exit status upon receiving a signal.
1047   - A per-Makefile.am setting of -Werror does not erroneously carry over
1048     to the handling of other Makefile.am files.
1050   - The code for automatic dependency tracking works around a Solaris
1051     make bug triggered by sources containing repeated slashes when the
1052     `subdir-objects' option was used.
1054   - The makedepend and hp depmodes now work better with VPATH builds.
1056   - Java sources specified with check_JAVA are no longer compiled for
1057     "make all", but only for "make check".
1059   - An usage like "java_JAVA = foo.java" will now cause Automake to warn
1060     and error out if `javadir' is undefined, instead of silently producing
1061     a broken Makefile.in.
1063   - aclocal and automake now honour the configure-time definitions of
1064     AUTOCONF and AUTOM4TE when they spawn autoconf or autom4te processes.
1066   - The `install-info' recipe no longer tries to guess whether the
1067     `install-info' program is from Debian or from GNU, and adaptively
1068     change its behaviour; this has proven to be frail and easy to
1069     regress.
1071 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1073 Bugs fixed in 1.11.1:
1075   - Lots of minor bugfixes.
1077 * Bugs introduced by 1.11:
1079   - The `parallel-tests' test driver works around a GNU make 3.80 bug with
1080     trailing white space in the test list (`TESTS = foo $(EMPTY)').
1082 * Long standing bugs:
1084   - On Darwin 9, `pythondir' and `pyexecdir' pointed below `/Library/Python'
1085     even if the `--prefix' argument pointed outside of a system directory.
1086     AM_PATH_PYTHON has been fixed to ignore the value returned from python's
1087     `get_python_lib' function if it points outside the configured prefix,
1088     unless the `--prefix' argument was either `/usr' or below `/System'.
1090   - The testsuite does not try to change the mode of `ltmain.sh' files from
1091     a Libtool installation (symlinked to test directories) any more.
1093   - AM_PROG_GCJ uses AC_CHECK_TOOLS to look for `gcj' now, so that prefixed
1094     tools are preferred in a cross-compile setup.
1096   - The distribution is tarred up with mode 755 now by the `dist*' targets.
1097     This fixes a race condition where untrusted users could modify files
1098     in the $(PACKAGE)-$(VERSION) distdir before packing if the toplevel
1099     build directory was world-searchable.  This is CVE-2009-4029.
1101 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1103 New in 1.11:
1105 * Version requirements:
1107   - Autoconf 2.62 or greater is required.
1109 * Changes to aclocal:
1111   - The autoconf version check implemented by aclocal in aclocal.m4
1112     (and new in Automake 1.10) is degraded to a warning.  This helps
1113     in the common case where the Autoconf versions used are compatible.
1115 * Changes to automake:
1117   - The automake program can run multiple threads for creating most
1118     Makefile.in files concurrently, if at least Perl 5.7.2 is available
1119     with interpreter-based threads enabled.  Set the environment variable
1120     AUTOMAKE_JOBS to the maximum number of threads to use, in order to
1121     enable this experimental feature.
1123 * Changes to Libtool support:
1125   - Libtool generic flags are now passed to the install and uninstall
1126     modes as well.
1128   - distcheck works with Libtool 2.x even when LT_OUTPUT is used, as
1129     config.lt is removed correctly now.
1131 * Languages changes:
1133   - subdir-object mode works now with Fortran (F77, FC, preprocessed
1134     Fortran, and Ratfor).
1136   - For files with extension .f90, .f95, .f03, or .f08, the flag
1137     $(FCFLAGS_f[09]x) computed by AC_FC_SRCEXT is now used in compile rules.
1139   - Files with extension .sx are also treated as preprocessed assembler.
1141   - The default source file extension (.c) can be overridden with
1142     AM_DEFAULT_SOURCE_EXT now.
1144   - Python 3.0 is supported now, Python releases prior to 2.0 are no
1145     longer supported.
1147   - AM_PATH_PYTHON honors python's idea about the site directory.
1149   - There is initial support for the Vala programming language, when using
1150     Vala 0.7.0 or later.
1152 * Miscellaneous changes:
1154   - Automake development is done in a git repository on Savannah now, see
1156       http://git.sv.gnu.org/gitweb/?p=automake.git
1158     A read-only CVS mirror is provided at
1160       cvs -d :pserver:anonymous@pserver.git.sv.gnu.org:/automake.git \
1161           checkout -d automake HEAD
1163   - "make dist" can now create xz-compressed tarballs,
1164     as well as (deprecated?) lzma-compressed tarballs.
1166   - `automake --add-missing' will by default install the GPLv3 file as
1167     COPYING if it is missing.  It will also warn that the license file
1168     should be added to source control.  Note that Automake will never
1169     overwrite an existing COPYING file, even when the `--force-missing'
1170     option is used.
1172   - The manual is now distributed under the terms of the GNU FDL 1.3.
1174   - Automake ships and installs man pages for automake and aclocal now.
1176   - New shorthand `$(pkglibexecdir)' for `$(libexecdir)/@PACKAGE@'.
1178   - install-sh supports -C, which does not update the installed file
1179     (and its time stamps) if the contents did not change.
1181   - The `gnupload' script has been revamped.
1183   - The `depcomp' and `compile' scripts now work with MSVC under MSYS.
1185   - The targets `install' and `uninstall' are more efficient now, in that
1186     for example multiple files from one Automake variable such as
1187     `bin_SCRIPTS' are copied in one `install' (or `libtool --mode=install')
1188     invocation if they do not have to be renamed.
1190     Both install and uninstall may sometimes enter (`cd' into) the target
1191     installation directory now, when no build-local scripts are used.
1193     Both install and uninstall do not fail anymore but do nothing if an
1194     installation directory variable like `bindir' is set to the empty string.
1196     For built-in rules, `make install' now fails reliably if installation
1197     of a file failed.  Conversely, `make uninstall' even succeeds when
1198     issued multiple times.
1200     These changes may need some adjustments from users:  For example,
1201     some `install' programs refuse to install multiple copies of the
1202     same file in one invocation, so you may need to remove duplicate
1203     entries from file lists.
1205     Also, within one set of files, say, nobase_data_DATA, the order of
1206     installation may be changed, or even unstable among different hosts,
1207     due to the use of associative arrays in awk.  The increased use of
1208     awk matches a similar move in Autoconf to provide for better scaling.
1210     Further, most undocumented per-rule install command variables such as
1211     binSCRIPT_INSTALL have been removed because they are not needed any
1212     more.  Packages which use them should be using the appropriate one of
1213     INSTALL_{DATA,PROGRAM,SCRIPT} or their install_sh_{DATA,PROGRAM,SCRIPT}
1214     counterpart, depending on the type of files and the need for automatic
1215     target directory creation.
1217   - The "deleted header file problem" for *.m4 files is avoided by
1218     stub rules.  This allows `make' to trigger a rerun of `aclocal'
1219     also if some previously needed macro file has been removed.
1221   - Rebuild rules now also work for a removed `subdir/Makefile.in' in
1222     an otherwise up to date tree.
1224   - The `color-tests' option causes colored test result output on terminals.
1226   - The `parallel-tests' option enables a new test driver that allows for
1227     parallel test execution, inter-test dependencies, lazy test execution
1228     for unit-testing, re-testing only failed tests, and formatted result output
1229     as RST (reStructuredText) and HTML.  Enabling this option may require some
1230     changes to your test suite setup; see the manual for details.
1232   - The `silent-rules' option enables Linux kernel-style silent build output.
1233     This option requires the widely supported but non-POSIX `make' feature
1234     of recursive variable expansion, so do not use it if your package needs
1235     to build with `make' implementations that do not support it.
1237     To enable less verbose build output, the developer has to use the Automake
1238     option `silent-rules' in `AM_INIT_AUTOMAKE', or call the `AM_SILENT_RULES'
1239     macro.  The user may then set the default verbosity by passing the
1240     `--enable-silent-rules' option to `configure'.  At `make' run time, this
1241     default may be overridden using `make V=0' for less verbose, and `make V=1'
1242     for backward-compatible verbose output.
1244   - New prefix `notrans_' for manpages which should not be transformed
1245     by --program-transform.
1247   - New macro AM_COND_IF for conditional evaluation and conditional
1248     config files.
1250   - For AC_CONFIG_LINKS, if source and destination are equal, do not
1251     remove the file in a non-VPATH build.  Such setups work with Autoconf
1252     2.62 or newer.
1254   - AM_MAINTAINER_MODE now allows for an optional argument specifying
1255     the default setting.
1257   - AM_SUBST_NOTMAKE may prevent substitution of AC_SUBSTed variables,
1258     useful especially for multi-line values.
1260   - Automake's early configure-time sanity check now diagnoses an
1261     unsafe absolute source directory name and makes configure fail.
1263   - The Automake macros and rules cope better with whitespace in the
1264     current directory name, as long as the relative path to `configure'
1265     does not contain whitespace.  To this end, the values of `$(MISSING)'
1266     and `$(install_sh)' may contain suitable quoting, and their expansion
1267     might need `eval'uation if used outside of a makefile.  These
1268     undocumented variables may be used in several documented macros such
1269     as $(AUTOCONF) or $(MAKEINFO).
1271 Bugs fixed in 1.11:
1273 * Long-standing bugs:
1275   - Fix aix dependency tracking for libtool objects.
1277   - Work around AIX sh quoting issue in AC_PROG_CC_C_O, leading to
1278     unnecessary use of the `compile' script.
1280   - For nobase_*_LTLIBRARIES with nonempty directory components, the
1281     correct `-rpath' argument is used now.
1283   - `config.status --file=Makefile depfiles' now also works with the
1284     extra quoting used internally by Autoconf 2.62 and newer
1285     (it used to work only without the `--file=' bit).
1287   - The `missing' script works better with versioned tool names.
1289   - Semantics for `missing help2man' have been revamped:
1291     Previously, if `help2man' was not present, `missing help2man' would have
1292     the following semantics: if some man page was out of date but present, then
1293     a warning would be printed, but the exit status was 0.  If the man page was
1294     not present at all, then `missing' would create a replacement man page
1295     containing an error message, and exit with a status of 2.  This does not play
1296     well with `make': the next run will see this particular man page as being up
1297     to date, and will only error out on the next generated man page, if any;
1298     repeat until all pages are done.  This was not desirable.
1300     These are the new semantics: if some man page is not present, and help2man
1301     is not either, then `missing' will warn and generate the replacement page
1302     containing the error message, but exit successfully.  However, `make dist'
1303     will ensure that no such bogus man pages are packaged into a tarball.
1305   - Targets provided by automake behave better with `make -n', in that they
1306     take care not to create files.
1308   - `config.status Makefile... depfiles' works fine again in the presence of
1309     disabled dependency tracking.
1311   - The default no-op recursive rules for these targets also work with BSD make
1312     now: html, install-html, install-dvi, install-pdf, install-pdf, install-info.
1314   - `make distcheck' works also when both a directory and some file below it
1315     have been added to a distribution variable, such as EXTRA_DIST or *_SOURCES.
1317   - Texinfo dvi, ps, pdf, and html output files are not removed upon
1318     `make mostlyclean' any more; only the LaTeX by-products are.
1320   - Renamed objects also work with the `subdir-objects' option and
1321     source file languages which Automake does not know itself.
1323   - `automake' now correctly complains about variable assignments which are
1324     preceded by a comment, extend over multiple lines with backslash-escaped
1325     newlines, and end in a comment sign.  Previous versions would silently
1326     and wrongly ignore such assignments completely.
1328 * Bugs introduced by 1.10:
1330   - Fix output of dummy dependency files in presence of post-processed
1331     Makefile.in's again, but also cope with long lines.
1333   - $(EXEEXT) is automatically appended to filenames of XFAIL_TESTS
1334     that have been declared as programs in the same Makefile.
1335     This is for consistency with the analogous change to TESTS in 1.10.
1337   - Fix order of standard includes to again be `-I. -I$(srcdir)',
1338     followed by directories containing config headers.
1340 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1342 New in 1.10:
1344 * Version requirements:
1346   - Autoconf 2.60 or greater is required.
1348   - Perl 5.6 or greater is required.
1350 * Changes to aclocal:
1352   - aclocal now also supports -Wmumble and -Wno-mumble options.
1354   - `dirlist' entries (for the aclocal search path) may use shell
1355     wildcards such as `*', `?', or `[...]'.
1357   - aclocal supports an --install option that will cause system-wide
1358     third-party macros to be installed in the local directory
1359     specified with the first -I flag.  This option also uses #serial
1360     lines in M4 files to upgrade local macros.
1362     The new aclocal options --dry-run and --diff help to review changes
1363     before they are installed.
1365   - aclocal now outputs an autoconf version check in aclocal.m4 in
1366     projects using automake.
1368     For a few years, automake and aclocal have been calling autoconf
1369     (or its underlying engine autom4te) to accurately retrieve the
1370     data they need from configure.ac and its siblings.  Doing so can
1371     only work if all autotools use the same version of autoconf.  For
1372     instance a Makefile.in generated by automake for one version of
1373     autoconf may stop working if configure is regenerated with another
1374     version of autoconf, and vice versa.
1376     This new version check ensures that the whole build system has
1377     been generated using the same autoconf version.
1379 * Support for new Autoconf macros:
1381   - The new AC_REQUIRE_AUX_FILE Autoconf macro is supported.
1383   - If `subdir-objects' is set, and AC_CONFIG_LIBOBJ_DIR is specified,
1384     $(LIBOBJS), $(LTLIBOBJS), $(ALLOCA), and $(LTALLOCA) can be used
1385     in different directories.  However, only one instance of such a
1386     library objects directory is supported.
1388 * Change to Libtool support:
1390   - Libtool generic flags (those that go before the --mode=MODE option)
1391     can be specified using AM_LIBTOOLFLAGS and target_LIBTOOLFLAGS.
1393 * Yacc and Lex changes:
1395   - The rebuild rules for distributed Yacc and Lex output will avoid
1396     overwriting existing files if AM_MAINTAINER_MODE and maintainer-mode
1397     is not enabled.
1399   - ylwrap is now always used for lex and yacc source files,
1400     regardless of whether there is more than one source per directory.
1402 * Languages changes:
1404   - Preprocessed assembler (*.S) compilation now honors CPPFLAGS,
1405     AM_CPPFLAGS and per-target _CPPFLAGS, and supports dependency
1406     tracking, unlike non-preprocessed assembler (*.s).
1408   - subdir-object mode works now with Assembler.  Automake assumes
1409     that the compiler understands `-c -o'.
1411   - Preprocessed assembler (*.S) compilation now also honors
1412     $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES).
1414   - Improved support for Objective C:
1415     - Autoconf's new AC_PROG_OBJC will enable automatic dependency tracking.
1416     - A new section of the manual documents the support.
1418   - New support for Unified Parallel C:
1419     - AM_PROG_UPC looks for a UPC compiler.
1420     - A new section of the manual documents the support.
1422   - Per-target flags are now correctly handled in link rules.
1424     For instance maude_CFLAGS correctly overrides AM_CFLAGS; likewise
1425     for maude_LDFLAGS and AM_LDFLAGS.  Previous versions bogusly
1426     preferred AM_CFLAGS over maude_CFLAGS while linking, and they
1427     used both AM_LDFLAGS and maude_LDFLAGS on the same link command.
1429     The fix for compiler flags (i.e., using maude_CFLAGS instead of
1430     AM_CFLAGS) should not hurt any package since that is how _CFLAGS
1431     is expected to work (and actually works during compilation).
1433     However using maude_LDFLAGS "instead of" AM_LDFLAGS rather than
1434     "in addition to" breaks backward compatibility with older versions.
1435     If your package used both variables, as in
1437       AM_LDFLAGS = common flags
1438       bin_PROGRAMS = a b c
1439       a_LDFLAGS = more flags
1440       ...
1442     and assumed *_LDFLAGS would sum up, you should rewrite it as
1444       AM_LDFLAGS = common flags
1445       bin_PROGRAMS = a b c
1446       a_LDFLAGS = $(AM_LDFLAGS) more flags
1447       ...
1449     This new behavior of *_LDFLAGS is more coherent with other
1450     per-target variables, and the way *_LDFLAGS variables were
1451     considered internally.
1453 * New installation targets:
1455   - New targets mandated by GNU Coding Standards:
1456       install-dvi
1457       install-html
1458       install-ps
1459       install-pdf
1460     By default they will only install Texinfo manuals.
1461     You can customize them with *-local variants:
1462       install-dvi-local
1463       install-html-local
1464       install-ps-local
1465       install-pdf-local
1467   - The undocumented recursive target `uninstall-info' no longer exists.
1468     (`uninstall' is in charge of removing all possible documentation
1469     flavors, including optional formats such as dvi, ps, or info even
1470     when `no-installinfo' is used.)
1472 * Miscellaneous changes:
1474   - Automake no longer complains if input files for AC_CONFIG_FILES
1475     are specified using shell variables.
1477   - clean, distribution, or rebuild rules are normally disabled for
1478     inputs and outputs of AC_CONFIG_FILES, AC_CONFIG_HEADERS, and
1479     AC_CONFIG_LINK specified using shell variables.  However, if these
1480     variables are used as ${VAR}, and AC_SUBSTed, then Automake will
1481     be able to output rules anyway.
1482     (See the Automake documentation for AC_CONFIG_FILES.)
1484   - $(EXEEXT) is automatically appended to filenames of TESTS
1485     that have been declared as programs in the same Makefile.
1486     This is mostly useful when some check_PROGRAMS are listed in TESTS.
1488   - `-Wportability' has finally been turned on by default for `gnu' and
1489     `gnits' strictness.  This means, automake will complain about %-rules
1490     or $(GNU Make functions) unless you switch to `foreign' strictness or
1491     use `-Wno-portability'.
1493   - Automake now uses AC_PROG_MKDIR_P (new in Autoconf 2.60), and uses
1494     $(MKDIR_P) instead of $(mkdir_p) to create directories.  The
1495     $(mkdir_p) variable is still defined (to the same value as
1496     $(MKDIR_P)) but should be considered obsolete.  If you are using
1497     $(mkdir_p) in some of your rules, please plan to update them to
1498     $(MKDIR_P) at some point.
1500   - AM_C_PROTOTYPES and ansi2knr are now documented as being obsolete.
1501     They still work in this release, but may be withdrawn in a future one.
1503   - Inline compilation rules for gcc3-style dependency tracking are
1504     more readable.
1506   - Automake installs a "Hello World!" example package in $(docdir).
1507     This example is used throughout the new "Autotools Introduction"
1508     chapter of the manual.
1510 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1512 New in 1.9:
1514 * Makefile.in bloat reduction:
1516   - Inference rules are used to compile sources in subdirectories when
1517     the `subdir-objects' option is used and no per-target flags are
1518     used.  This should reduce the size of some projects a lot, because
1519     Automake used to output an explicit rule for each such object in
1520     the past.
1522   - Automake no longer outputs three rules (.o, .obj, .lo) for each
1523     object that must be built with explicit rules.  It just outputs
1524     the rules required to build the kind of object considered: either
1525     the two .o and .obj rules for usual objects, or the .lo rule for
1526     libtool objects.
1528 * Change to Libtool support:
1530   - Libtool tags are used with libtool versions that support them.
1531     (I.e., with Libtool 1.5 or greater.)
1533   - Automake is now able to handle setups where a libtool library is
1534     conditionally installed in different directories, as in
1536       if COND
1537         lib_LTLIBRARIES = liba.la
1538       else
1539         pkglib_LTLIBRARIES = liba.la
1540       endif
1541       liba_la_SOURCES = ...
1543 * Changes to aclocal:
1545   - aclocal now ensures that AC_DEFUNs and AU_DEFUNs it discovers are
1546     really evaluated, before it decides to include them in aclocal.m4.
1547     This solves nasty problems with conditional redefinitions of
1548     Autoconf macros in /usr/share/aclocal/*.m4 files causing extraneous
1549     *.m4 files to be included in any project using these macros.
1550     (Calls to AC_PROG_EGREP causing libtool.m4 to be included is the
1551     most famous instance of this bug.)
1553   - Do not complain about missing conditionally AC_REQUIREd macros
1554     that are not actually used.  In 1.8.x aclocal would correctly
1555     determine which of these macros were really needed (and include
1556     only these in the package); unfortunately it would also require
1557     all of them to be present in order to run.  This created
1558     situations were aclocal would not work on a tarball distributing
1559     all the macros it uses.  For instance running aclocal on a project
1560     containing only the subset of the Gettext macros in use by the
1561     project did not work, because gettext conditionally requires other
1562     macros.
1564 * Portability improvements:
1566   - Tar format can be chosen with the new options tar-v7, tar-ustar, and
1567     tar-pax.  The new option filename-length-max=99 helps diagnosing
1568     filenames that are too long for tar-v7.  (PR/414)
1570   - Variables aumented with `+=' are now automatically flattened (i.e.,
1571     trailing backslashes removed) and then wrapped around 80 colummns
1572     (adding trailing backslashes).  In previous versions, a long series
1573     of
1574       VAR += value1
1575       VAR += value2
1576       VAR += value3
1577       ...
1578     would result in a single-line definition of VAR that could possibly
1579     exceed the maximum line length of some make implementations.
1581     Non-augmented variables are still output as they are defined in
1582     the Makefile.am.
1584 * Miscellaneous:
1586   - Support Fortran 90/95 with the new "fc" and "ppfc" languages.
1587     Works the same as the old Fortran 77 implementation; just replace
1588     F77 with FC everywhere (exception: FFLAGS becomes FCFLAGS).
1589     Requires a version of autoconf which provides AC_PROG_FC (>=2.59).
1591   - Support for conditional _LISP.
1593   - Support for conditional -hook and -local rules (PR/428).
1595   - Diagnose AC_CONFIG_AUX_DIR calls following AM_INIT_AUTOMAKE. (PR/49)
1597   - Automake will not write any Makefile.ins after the first error it
1598     encounters.  The previous Makefile.ins (if any) will be left in
1599     place.  (Warnings will not prevent output, but remember they can
1600     be turned into errors with -Werror.)
1602   - The restriction that SUBDIRS must contain direct children is gone.
1603     Do not abuse.
1605   - The manual tells more about SUBDIRS vs. DIST_SUBDIRS.
1606     It also gives an example of nested packages using AC_CONFIG_SUBDIRS.
1608 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1610 Bugs fixed in 1.8.5:
1612 * Long-standing bugs:
1614   - Define DIST_SUBDIRS even when the `no-dist' or `cygnus' options are used
1615     so that `make distclean' and `make maintainer-clean' can work.
1617   - Define AR and ARFLAGS even when only EXTRA_LIBRARIES are defined.
1619   - Fix many rules to please FreeBSD make, which runs commands with `sh -e'.
1621   - Polish diagnostic when no input file is found.
1623 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1625 Bugs fixed in 1.8.4:
1627 * Long-standing bugs:
1629   - Fix AM_PATH_PYTHON to correctly display $PYTHON when it has been
1630     overridden by the user.
1632   - Honor PATH_SEPARATOR in various places of the Automake package, for
1633     the sake of OS/2.
1635   - Adjust dependency tracking mode detection to ICC 8.0's new output.
1636     (PR/416)
1638   - Fix install-sh so it can install the `mv' binary... using `mv'.
1640   - Fix tru64 dependency tracking for libtool objects.
1642   - Work around Exuberant Ctags when creating a TAGS files in a directory
1643     without files to scan but with subdirectories to include.
1645 * Bugs introduced by 1.8:
1647   - Fix an "internal error" when @LIBOBJS@ is used in a variable that is
1648     not defined in the same conditions as the _LDADD that uses it.
1650   - Do not warn when JAVAROOT is overridden, this is legitimate.
1652 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1654 Bugs fixed in 1.8.3:
1656 * Long-standing bugs:
1658   - Quote filenames in installation rules, in case $DESTDIR, $prefix,
1659     or any of the other *dir variables contain a space.
1661     Please note that Automake does not and cannot support spaces in
1662     filenames that are involved during the build.  This change affects
1663     only installation paths, so that `make install' does not bomb out
1664     in packages configured with
1665       ./configure --prefix '/c/Program Files'
1667   - Fix the depfiles output so it works with GNU sed (<4.1) even when
1668     POSIXLY_CORRECT is set.
1670   - Do not AC_SUBST(LIBOBJS) in AM_WITH_REGEX.  This macro was unusable
1671     since Autoconf 2.54, which defines LIBOBJS itself.
1673   - Fix a potential (but unlikely) race condition in parallel elisp
1674     builds.  (Introduced in 1.7.3.)
1676   - Do not assume that users override _DEPENDENCIES in all conditions
1677     where Automake will try to define them.
1679   - Do not use `mkdir -p' in mkinstalldirs, unless this is GNU mkdir.
1680     Solaris 8's `mkdir -p' is not thread-safe and can break parallel
1681     builds.
1683     This fix also affects the $(mkdir_p) variable defined since
1684     Automake 1.8.  It will be set to `mkdir -p' only if mkdir is GNU
1685     mkdir, and to `mkinstalldirs' or `install-sh -d' otherwise.
1687   - Secure temporary directory creation in `make distcheck'. (PR/413)
1689   - Do not generate two build rules for `parser.h' when the
1690     parser appears in two different conditionals.
1692   - Work around a Solaris 8 /bin/sh bug in the test for dependency
1693     checking.  Usually ./configure will not pick this shell; so this
1694     fix only helps cases where the shell is forced to /bin/sh.
1696 * Bugs introduced by 1.8:
1698   - In some situations (hand-written `m4_include's), aclocal would
1699     call the `File::Spec->rel2abs' method, which was only introduced
1700     in Perl 5.6.  This new version reestablish support Perl 5.005.
1702     It is likely that the next major Automake releases will require at
1703     least Perl 5.6.  Consider upgrading your development environment
1704     if you are still using the five-year-old Perl 5.005.
1706   - Automake would sometimes fail to define rules for targets listed
1707     in variables defined in multiple conditions.  For instance on
1708       if C1
1709         bin_PROGRAMS = a
1710       else
1711         bin_PROGRAMS = b
1712       endif
1713     it would define only the `a.$(OBJEXT): a.c' rule and omit the
1714     `b.$(OBJEXT): b.c' rule.
1716 * New sections in manual:
1718   - Third-Party Makefiles: how to interface third party Makefiles.
1719   - Upgrading: upgrading packages to newer Automake versions.
1720   - Multiple Outputs: handling tools that produce many outputs.
1722 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1724 Bug fixed in 1.8.2:
1726 * A (well known) portability bug slipped in the changes made to
1727   install-sh in Automake 1.8.1.  The broken install-sh would refuse to
1728   install anything on Tru64.
1730 * Fix install rules for conditionally built python files.  (This never
1731   really worked.)
1733 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1735 Bug fixed in 1.8.1:
1737 * Bugs introduced by 1.8:
1739   - Fix Config.pm import error with old Perl versions (at least
1740     5.005_03).  One symptom is that aclocal could not find its macro
1741     directory.
1743   - Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
1744     created by `make install' are always world readable, even if the
1745     installer happens to have an overly restrictive umask (e.g. 077).
1746     This was a mistake and has been reverted.  There are at least two
1747     reasons why we must not use `-m 0755':
1748       - it causes special bits like SGID to be ignored,
1749       - it may be too restrictive (some setups expect 775 directories).
1751   - Fix aclocal to honor definitions located in files which have been
1752     m4_included manually.  aclocal 1.8 had been updated to check
1753     m4_included files for new requirements, but forgot that these
1754     m4_included files can also provide new definitions.
1756     Note that if you have such a setup, we recommend you get rid of
1757     it.  In the past, there was a reason to m4_include files manually:
1758     aclocal used to duplicate entire M4 files into aclocal.m4, even
1759     files that were distributed.  Some packages were therefore
1760     m4_including the distributed file directly, and playing some
1761     tricks to ensure aclocal would not copy that file to aclocal.m4,
1762     in order to limit the amount of duplication.  Since aclocal 1.8.x
1763     will precisely output m4_includes for local M4 files, we recommend
1764     that you clean up your setup, removing all manual m4_includes and
1765     letting aclocal output them.
1767   - Output detailed menus in the Info version if the Automake manual,
1768     so that Emacs can locate the indexes.
1770   - configure.ac and configure were listed twice in DIST_COMMON (an
1771     internal variable where Automake lists configury files to
1772     distribute).  This was harmless, but unaesthetic.
1774   - Use `chmod a-w' instead of `chmod -w' as the latter honors umask.
1775     This was an issue only in the Automake package itself, not in
1776     its output.
1778   - Automake assumed that all AC_CONFIG_LINKS arguments had the form
1779     DEST:SRC.  This was wrong, as some packages do
1780     AC_CONFIG_LINKS($computedlinks).  This version no longer abort in
1781     that situation.
1783   - Contrary to mkinstalldirs, $(mkdir_p) was expecting exactly one
1784     argument.  This caused two kinds of failures:
1785       - Rules installing data in a conditionally defined directory
1786         failed when that directory was undefined.  In this case no
1787         argument was supplied.
1788       - `make installdirs' failed, because several directories were
1789         passed to $(mkdir_p).  This was an issue only on platform
1790         were $(mkdir_p) is implemented with `install-sh -d'.
1791     $(mkdir_p) as been changed to accept 0 or more arguments, as
1792     mkinstalldirs did.
1794 * Long-standing bugs:
1796   - Fix an unexpected diagnostic occurring when users attempt
1797     to override some internal variables that Automake appends to.
1799   - aclocal now scans configure.ac for macro definitions (PR/319).
1801   - Fix a portability issue with OSF1/Tru64 Make.  If a directory
1802     distributes files which are outside itself (this usually occurs
1803     when using AC_CONFIG_AUX_DIR([../dir]) to use auxiliary files
1804     from a parent package), then `make distcheck' fails due to an
1805     optimization performed by OSF1/Tru64 Make in its VPATH handling.
1806     (tests/subpkg2.test failure)
1808   - Fix another portability issue with Sun and OSF1/Tru64 Make.
1809     In a VPATH-build configuration, `make install' would install
1810     nobase_ files to wrong locations.
1812   - Fix a Perl `uninitialized value' diagnostic occurring when
1813     automake complains that a Texinfo file does not have a
1814     @setfilename statement.
1816   - Erase config.status.lineno during `make distclean'.  This file
1817     can be created by config.status.  Automake already knew about
1818     configure.lineno, but forgot config.status.lineno.
1820   - Distribute all files, even those which are built and installed
1821     conditionally.  This change affects files listed in conditionally
1822     defined *_HEADERS and *_PYTHON variable (unless they are nodist_*)
1823     as well as those listed in conditionally defined dist_*_DATA,
1824     dist_*_JAVA, dist_*_LISP, and dist_*_SCRIPTS variables.
1826   - Fix AM_PATH_LISPDIR to avoid \? in sed regular expressions; it
1827     doesn't conform to POSIX.
1829   - Normalize help strings for configure variables and options added
1830     by Automake macros.
1832 * Anticipation:
1834   - Check for python2.4 in AM_PATH_PYTHON.
1836 * Spurious failures in test suite:
1838   - tests/libtool5.test, tests/ltcond.test, tests/ltcond2.test,
1839     tests/ltconv.test: fix failures with CVS Libtool.
1840   - tests/aclocal6.test: fix failure if autom4te.cache is disabled.
1841   - tests/txinfo24.test, tests/txinfo25.test, tests/txinfo28.test:
1842     fix failures with old Texinfo versions.
1844 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1846 New in 1.8:
1848 * Meta-News
1850   - The NEWS file is more verbose.
1852 * Requirements
1854   - Autoconf 2.58 or greater is required.
1856 * New features
1858   - Default source file names in the absence of a _SOURCES declaration
1859     are made by removing any target extension before appending `.c', so
1860     to make the libtool module `foo.la' from `foo.c', you only need to
1861     do this:
1863         lib_LTLIBRARIES = foo.la
1864         foo_la_LDFLAGS  = -module
1866     For backward compatibility, foo_la.c will be used instead of
1867     foo.c if this file exists or is the explicit target of a rule.
1868     However -Wobsolete will warn about this deprecated naming.
1870   - AR's `cru' flags are now set in a global ARFLAGS variable instead
1871     of being hard-coded in each $(AR) invocation, so they can be
1872     substituted from configure.ac.  This has been requested by people
1873     dealing with non-POSIX ar implementations.
1875   - New warning option: -Woverride.  This will warn about any user
1876     target or variable definitions which override Automake
1877     definitions.
1879   - Texinfo rules back up and restore info files when makeinfo fails.
1881   - Texinfo rules now support the `html' target.
1882     Running this requires Texinfo 4.0 or greater.
1884     `html' is a new recursive target, so if your package mixes
1885     hand-crafted `Makefile.in's with Automake-generated
1886     `Makefile.in's, you should adjust the former to support (or
1887     ignore) this target so that `make html' recurses successfully.  If
1888     you had a custom `html' rule in your `Makefile.am', it's better to
1889     rename it as `html-local', otherwise your rule will override
1890     Automake's new rule (you can check that by running `automake
1891     -Woverride') and that will stop the recursion to subdirectories.
1893     Last but not least, this `html' rule is declared PHONY, even when
1894     overridden.  Fortunately, it appears that few packages use a
1895     non-PHONY `html' rule.
1897   - Any file which is m4_included from configure.ac will appear as a
1898     configure and Makefile.in dependency, and will be automatically
1899     distributed.
1901   - The rules for rebuilding Makefiles and Makefile.ins will now
1902     rebuild all Makefiles and all Makefile.ins at once when one of
1903     configure's dependencies has changed.  This is considerably faster
1904     than previous implementations, where config.status and automake
1905     were run separately in each directory (this still happens when you
1906     change a Makefile.am locally, without touching configure.ac or
1907     friends).  Doing this also solves a longstanding issue: these
1908     rebuild rules failed to work when adding new directories to the
1909     tree, forcing you to run automake manually.
1911   - For similar reasons, the rules to rebuild configure,
1912     config.status, and aclocal.m4 are now defined in all directories.
1913     Note that if you were using the CONFIG_STATUS_DEPENDENCIES and
1914     CONFIGURE_DEPENDENCIES (formerly undocumented) variables, you
1915     should better define them in all directories.  This is easily done
1916     using an AC_SUBST (make sure you prefix these dependencies with
1917     $(top_srcdir) since this variable will appear at different
1918     levels of the build tree).
1920   - aclocal will now use `m4_include' instead of copying local m4
1921     files into aclocal.m4.  (Local m4 files are those you ship with
1922     your project, other files will be copied as usual.)
1924     Because m4_included files are automatically distributed, it means
1925     for most projects there is no point in EXTRA_DISTing the list of
1926     m4 files which are used.  (You can probably get rid of
1927     m4/Makefile.am if you had one.)
1929   - aclocal will avoid touching aclocal.m4 when possible, so that
1930     Autom4te's cache isn't needlessly invalidated.  This behavior can
1931     be switched off with the new `--force' option.
1933   - aclocal now uses Autoconf's --trace to detect macros which are
1934     actually used and will no longer include unused macros simply
1935     because they where mentioned.  This was often the case for macros
1936     called conditionally.
1938   - New options no-dist and no-dist-gzip.
1940   - compile, depcomp, elisp-comp, install-sh, mdate-sh, mkinstalldirs,
1941     py-compile, and ylwrap, now all understand --version and --help.
1943   - Automake will now recognize AC_CONFIG_LINKS so far as removing created
1944     links as part of the distclean target and including source files in
1945     distributions.
1947   - AM_PATH_PYTHON now supports ACTION-IF-FOUND and ACTION-IF-NOT-FOUND
1948     argument.  The latter can be used to override the default behavior
1949     (which is to abort).
1951   - Automake will exit with $? = 63 on version mismatch.  (So does
1952     Autoconf 2.58)  missing knows this, and in this case it will
1953     emulate the tools as if they were absent.  Because older versions
1954     of Automake and Autoconf did not use this exit code, this change
1955     will only be useful in projects generated with future versions of
1956     these tools.
1958   - When using AC_CONFIG_FILES with multiple input files, Automake
1959     generates the first ".in" input file for which a ".am" exists.
1960     (Former versions would try to use only the first input file.)
1962   - lisp_DATA is now allowed.  If you are using the empty ELCFILES
1963     idiom to disable byte-compilation of lisp_LISP files, it is
1964     recommended that you switch to using lisp_DATA.  Note that
1965     this is not strictly equivalent: lisp_DATA will install elisp
1966     files even if emacs is not installed, while *_LISP do not
1967     install anything unless emacs is found.
1969   - Makefiles will prefer `mkdir -p' over mkinstalldirs if it is
1970     available.  This selection is achieved through the Makefile
1971     variable $(mkdir_p) that is set by AM_INIT_AUTOMAKE to either
1972     `mkdir -m 0755 -p --', `$(mkinstalldirs) -m 0755', or
1973     `$(install_sh) -m 0755 -d'.
1975 * Obsolete features
1977   - Because `mkdir -p' is available on most platforms, and we can use
1978     `install-sh -d' when it is not, the use of the mkinstalldirs
1979     script is being phased out.  `automake --add-missing' no longer
1980     installs it, and if you remove mkinstalldirs from your package,
1981     automake will define $(mkinstalldirs) as an alias for $(mkdir_p).
1983     Gettext 0.12.1 still requires mkinstalldirs.  Fortunately
1984     gettextize and autopoint will install it when needed.  Automake
1985     will continue to define the $(mkinstalldirs) and to distribute
1986     mkinstalldirs when this script is in the source tree.
1988   - AM_PROG_CC_STDC is now empty.  The content of this macro was
1989     merged in AC_PROG_CC.  If your code uses $am_cv_prog_cc_stdc, you
1990     should adjust it to use $ac_cv_prog_cc_stdc instead.  (This
1991     renaming should be safe, even if you have to support several,
1992     versions of Automake, because AC_PROG_CC defines this variable
1993     since Autoconf 2.54.)
1995   - Some users where using the undocumented ACLOCAL_M4_SOURCES
1996     variable to override the aclocal.m4 dependencies computed
1997     (inaccurately) by older versions of Automake.  Because Automake
1998     now tracks configure's m4 dependencies accurately (see m4_include
1999     above), the use of ACLOCAL_M4_SOURCES should be considered
2000     obsolete and will be flagged as such when running `automake
2001     -Wobsolete'.
2003 * Bug fixes
2005   - Defining programs conditionally using Automake conditionals no
2006     longer leads to a combinatorial explosion.  The following
2007     construct used to be troublesome when used with dozens of
2008     conditions.
2010       bin_PROGRAMS = a
2011       if COND1
2012         bin_PROGRAMS += a1
2013       endif
2014       if COND2
2015         bin_PROGRAMS += a2
2016       endif
2017       if COND3
2018         bin_PROGRAMS += a3
2019       endif
2020       ...
2022     Likewise for _SOURCES, _LDADD, and _LIBADD variables.
2024   - Due to implementation constraints, previous versions of Automake
2025     proscribed multiple conditional definitions of some variables
2026     like bin_PROGRAMS:
2028       if COND1
2029         bin_PROGRAMS = a1
2030       endif
2031       if COND2
2032         bin_PROGRAMS = a2
2033       endif
2035     All _PROGRAMS, _LDADD, and _LIBADD variables were affected.
2036     This restriction has been lifted, and these variables now
2037     support multiple conditional definitions as do other variables.
2039   - Cleanup the definitions of $(distdir) and $(top_distdir).
2040     $(top_distdir) now points to the root of the distribution
2041     directory created during `make dist', as it did in Automake 1.4,
2042     not to the root of the build tree as it did in intervening
2043     versions.  Furthermore these two variables are now only defined in
2044     the top level Makefile, and passed to sub-directories when running
2045     `make dist'.
2047   - The --no-force option now correctly checks the Makefile.in's
2048     dependencies before deciding not to update it.
2050   - Do not assume that make files are called Makefile in cleaning rules.
2052   - Update .info files in the source tree, not in the build tree.  This
2053     is what the GNU Coding Standard recommend.  Only Automake 1.7.x
2054     used to update these files in the build tree (previous versions did
2055     it in the source tree too), and it caused several problems, varying
2056     from mere annoyance to portability issues.
2058   - COPYING, COPYING.LIB, and COPYING.LESSER are no longer overwritten
2059     when --add-missing and --force-missing are used.  For backward
2060     compatibility --add-missing will continue to install COPYING (in
2061     `gnu' strictness) when none of these three files exist, but this
2062     use is deprecated: you should better choose a license yourself and
2063     install it once for all in your source tree (and in your code
2064     management system).
2066   - Fix ylwrap so that it does not overwrite header files that haven't
2067     changed, as the inline rule already does.
2069   - User-defined rules override automake-defined rules for the same
2070     targets, even when rules do not have commands.  This is not new
2071     (and was documented), however some of the automake-generated
2072     rules have escaped this principle in former Automake versions.
2073     Rules for the following targets are affected by this fix:
2075        clean, clean-am, dist-all, distclean, distclean-am, dvi, dvi-am,
2076        info, info-am, install-data-am, install-exec-am, install-info,
2077        install-info-am, install-man, installcheck-am, maintainer-clean,
2078        maintainer-clean-am, mostlyclean, mostlyclean-am, pdf, pdf-am,
2079        ps, ps-am, uninstall-am, uninstall-info, uninstall-man
2081     Practically it means that an attempt to supplement the dependencies
2082     of some target, as in
2084        clean: my-clean-rule
2086     will now *silently override* the automake definition of the
2087     rule for this target.  Running `automake -Woverride' will diagnose
2088     all such overriding definitions.
2090     It should be noted that almost all of these targets support a *-local
2091     variant that is meant to supplement the automake-defined rule
2092     (See node `Extending' in the manual).  The above rule should
2093     be rewritten as
2095       clean-local: my-clean-rule
2097     These *-local targets have been documented since at least
2098     Automake 1.2, so you should not fear the change if you have
2099     to support multiple automake versions.
2101 * Miscellaneous
2103   - The Automake manual is now distributed under the terms of the GNU FDL.
2105   - Targets dist-gzip, dist-bzip2, dist-tarZ, dist-zip are always defined.
2107   - core dumps are no longer removed by the cleaning rules.  There are
2108     at least three reasons for this:
2109       1. These files should not be created by any build step,
2110          so their removal do not fit any of the cleaning rules.
2111          Actually, they may be precious to the developer.
2112       2. If such file is created during a build, then it's clearly a
2113          bug Automake should not hide.  Not removing the file will
2114          cause `make distcheck' to complain about its presence.
2115       3. Operating systems have different naming conventions for
2116          core dump files.  A core file on one system might be a
2117          completely legitimate data file on another system.
2119   - RUNTESTFLAGS, CTAGSFLAGS, ETAGSFLAGS, JAVACFLAGS are no longer
2120     defined by Automake.  This means that any definition in the
2121     environment will be used, unless overridden in the Makefile.am or
2122     on the command line.  The old behavior, where these variables were
2123     defined empty in each Makefile, can be obtained by AC_SUBSTing or
2124     AC_ARG_VARing each variable from configure.ac.
2126   - CONFIGURE_DEPENDENCIES and CONFIG_STATUS_DEPENDENCIES are now
2127     documented.  (The is not a new feature, these variables have
2128     been there since at least Automake 1.4.)
2130 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2132 Bugs fixed in 1.7.9:
2133 * Fix install-strip to work with nobase_ binaries.
2134 * Fix renaming of #line directives in ylwrap.
2135 * Rebuild with Autoconf 2.59.  (1.7.8 was not installable with pdksh.)
2137 Bugs fixed in 1.7.8:
2138 * Remove spurious blank lines in cleaning rules introduced in 1.7.7.
2139 * Fix detection of Debian's install-info, broken since version 1.5.
2140   (Debian bug #213524).
2141 * Honor -module if it appears in AM_LDFLAGS (i.e., relax name checking)
2142   This was only done for libfoo_LDFLAGS and LDFLAGS in previous versions.
2144 Bugs fixed in 1.7.7:
2145 * The implementation of automake's --no-force option is unreliable,
2146   so this option is ignored in this version.  A real fix will appear in
2147   Automake 1.8.  (Debian Bug #206299)
2148 * AM_PATH_PYTHON: really check the whole list of interpreters if no
2149   argument is given.  (PR/399)
2150 * Do not warn about leading `_' in variable names, even with -Wportability.
2151 * Support user redefinitions of TEXINFO_TEX.
2152 * depcomp: support AIX Compiler version 6.
2153 * Fix missing rebuilds during `make dist' with BSD make.
2154   (Could produce tarballs containing out-of-date files.)
2155 * Resurrect multilib support.
2156 * Noteworthy manual updates:
2157   - Extending aclocal: how to write m4 macros that won't trigger warnings
2158     with Automake 1.8.
2159   - A Shared Library: Rewrite and split into subsections.
2161 Bugs fixed in 1.7.6:
2162 * Fix depcomp's icc mode for ICC 7.1.
2163 * Diagnose calls to AC_CONFIG_FILES and friends with not enough arguments.
2164 * Fix maintainer-clean's removal of autom4te.cache in VPATH builds.
2165 * Fix AM_PATH_LISPDIR to work with POSIXLY_CORRECT=1.
2166 * Fix the location reported in some diagnostics related to AUTOMAKE_OPTIONS.
2167 * Remove Latin-1 characters from elisp-comp.
2168 * Update the manual's @dircategory to match the Free Software Directory.
2170 Bugs fixed in 1.7.5:
2171 * Update install-sh's license to remove an advertising clause.
2172   (Debian bug #191717)
2173 * Fix a bug introduced in 1.7.4, related to BUILT_SOURCE handling,
2174   that caused invalid Makefile.ins to be generated.
2175 * Make sure AM_MAKE_INCLUDE doesn't fail when a `doit' file exists.
2176 * New FAQ entry: renamed objects.
2178 Bugs fixed in 1.7.4:
2179 * Tweak the TAGS rule to support Exuberant Ctags (in addition to
2180   the Emacs implementation)
2181 * Fix output of aclocal.m4 dependencies in subdirectories.
2182 * Use `mv -f' instead of `mv' in fastdep rules.
2183 * Upgrade mdate-sh to work on OS/2.
2184 * Don't byte-compile elisp files when ELCFILES is set empty.
2185   (this documented feature was broken by 1.7.3)
2186 * Diagnose trailing backslashes on last line of Makefile.am.
2187 * Diagnose whitespace following trailing backslashes.
2188 * Multiple tests are now correctly supported in DEJATOOL. (PR/388)
2189 * Fix rebuilt rules for AC_CONFIG_FILES([Makefile:Makefile.in:Makefile.bot])
2190   Makefiles. (PR/389)
2191 * `make install' will build `BUILT_SOURCES' first.
2192 * Minor documentation fixes.
2194 Bugs fixed in 1.7.3:
2195 * Fix stamp files numbering (when using multiple AC_CONFIG_HEADERS).
2196 * Query distutils for `pythondir' and `pythonexecdir', instead of
2197   using an hardcoded path.  This should allow builds on 64-bit
2198   distributions that usually use lib64/ instead of lib/.
2199 * AM_PATH_PYTHON will also search for python2.3.
2200 * elisp files are now built all at once instead of one by one. Besides
2201   incurring a speed-up, this is required to support interdependent elisp files.
2202 * Support for DJGPP:
2203   - `make distcheck' will now work in `_inst/' and `_build' instead
2204     of `=inst/' and `=build/'
2205   - use `_dirstamp' when the file-system doesn't support `.dirstamp'
2206   - install/uninstall `*.i[0-9][0-9]'-style info files
2207   - more changes that affect only the Automake package (not its output)
2208 * Fix some incompatibilities with upcoming perl-5.10.
2209 * Properly quote AC_PACKAGE_TARNAME and AC_PACKAGE_VERSION when defining
2210   PACKAGE and VERSION.
2211 * depcomp fixes:
2212   - dashmstdout and dashXmstdout modes: don't use `-o /dev/null', this
2213     is troublesome with gcc and Solaris compilers. (PR/385)
2214   - makedepend mode: work with Libtool. (PR/385 too)
2215   - support for ICC.
2216 * better support for unusual gettext setups, such as multiple po/ directories
2217   (PR/381):
2218   - Flag missing po/ and intl/ directories as warnings, not errors.
2219   - Disable these warnings if po/ does not exist.
2220 * Noteworthy manual updates:
2221   - New FAQ chapter.
2222   - Document how AC_CONFIG_AUX_DIR interacts with missing files.
2223     (Debian Bug #39542)
2224   - Document `AM_YFLAGS = -d'.  (PR/382)
2226 Bugs fixed in 1.7.2:
2227 * Fix installation and uninstallation of Info files built in subdirectories.
2228 * Do not run `./configure --with-included-gettext' during `make distcheck'
2229   if AM_GNU_GETTEXT([external]) is used.
2230 * Correctly uninstall renamed man pages.
2231 * Do not strip escaped newline in variables defined in one condition
2232   and augmented in another condition.
2233 * Fix ansi2knr rules for LIBOBJS sources.
2234 * Clean all known Texinfo index files, not only those which appear to
2235   be used, because we cannot know which indexes are used in included files.
2236   (PR/375, Debian Bug #168671)
2237 * Honor only the first @setfilename seen in a Texinfo file.
2238 * Treat "required file X not found" diagnostics as errors (exit status 1).
2239 * Don't complain that a required file is not found when it is a Makefile
2240   target. (PR/357)
2241 * Don't use single suffix inference rules when building `.info'-less
2242   Info files, for the sake of Solaris make.
2243 * The `check' target now depends on `$(BUILT_SOURCES)'. (PR/359)
2244 * Recognize multiple inference rules such as `.a.b .c.d:'. (PR/371)
2245 * Warn about multiple inference rules when -Wportability is used. (PR/372)
2246 * Fix building of deansified files from subdirectories. (PR/370)
2247 * Add missing `fi' in the .c->.obj rules.
2248 * Improve install-sh to work even when names contain spaces or certain
2249   (but not all) shell metachars.
2250 * Fix the following spurious failures in the test suite:
2251   depcomp2.test, gnits2.test, gnits3.test, python3.test, texinfo13.test
2252 * Noteworthy manual updates:
2253   - Augment the section about BUILT_SOURCES.
2254   - Mention that AM_PROG_CC_STDC is a relic that is better avoided today.
2256 Bugs fixed in 1.7.1:
2257 * Honor `ansi2knr' for files built in subdirectories, or using per-targets
2258   flags.
2259 * Aclocal should now recognize macro names containing parentheses, e.g.
2260   AC_DEFUN([AC_LANG_PREPROC(Fortran 90)], [...]).
2261 * Erase *.sum and *.log files created by DejaGnu, during `make distclean'.
2262   (Debian Bug#153697)
2263 * Install Python files even if they were built.  (PR/369)
2264 * Have stamp-vti dependent upon configure instead of configure.ac, as the
2265   version might not be defined in the latter. (PR/358)
2266 * Reorder arguments passed to a couple of commands, so things works
2267   when POSIXLY_CORRECT=1.
2268 * Fix a regex that can cause Perl to segfault on large input.
2269   (Debian Bug#162583)
2270 * Fix distribution of packages that have some sources defined conditionally,
2271   as in the `Conditional compilation using Automake conditionals' example
2272   of the manual.
2273 * Fix spurious test suite failures on IRIX.
2274 * Don't report a required variable as undefined if it has been
2275   defined conditionally for the "right" conditions.
2276 * Fix cleaning of the /tmp subdirectory used by `make distcheck', in case
2277   `make distcheck' fails.
2278 * Fix distribution of included Makefile fragment, so we don't create
2279   spurious directories in the distribution. (PR/366)
2280 * Don't complain that a target lacks `.$(EXEEXT)' when it has it.
2282 New in 1.7:
2283 * Autoconf 2.54 is required.
2284 * `aclocal' and `automake' will no longer warn about obsolete
2285   configure macros.  This is done by `autoconf -Wobsolete'.
2286 * AM_CONFIG_HEADER, AM_SYS_POSIX_TERMIOS and
2287   AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL are obsolete (although still
2288   supported).  You should use AC_CONFIG_HEADERS, AC_SYS_POSIX_TERMIOS,
2289   and AC_HEADER_TIOCGWINSZ instead.  `autoupdate' can upgrade
2290   `configure.ac' for you.
2291 * Support for per-program and per-library `_CPPFLAGS'.
2292 * New `ctags' target (builds CTAGS files).
2293 * Support for -Wmumble and -Wno-mumble, where mumble is a warning category
2294   (see `automake --help' or the manual for a list of them).
2295 * Honor the WARNINGS environment variable.
2296 * Omit the call to depcomp when using gcc3: call the compiler directly.
2297 * A new option, std-options, tests that programs support --help and --version
2298   when `make installcheck' is run.  This is enabled by --gnits.
2299 * Texinfo rules now support the `ps' and `pdf' targets.
2300 * Info files are now created in the build directory, not the source directory.
2301 * info_TEXINFOS supports files in subdirectories (this requires Texinfo 4.1
2302   or greater).
2303 * `make distcheck' will enforce DESTDIR support by attempting
2304   a DESTDIR install.
2305 * `+=' can be used in conditionals, even if the augmented variable
2306   was defined for another condition.
2307 * Makefile fragments (inserted with `include') are always distributed.
2308 * Use Autoconf's --trace interface to inspect configure.ac and get
2309   a more accurate view of it.
2310 * Add support for extending aclocal's default macro search path
2311   using a `dirlist' file within the aclocal directory.
2312 * automake --output-dir is deprecated.
2313 * The part of the distcheck target that checks whether uninstall actually
2314   removes all installed files has been moved in a separate target,
2315   distuninstallcheck, so it can be overridden easily.
2316 * Many bug fixes.
2318 New in 1.6.3:
2319 * Support for AM_INIT_GETTEXT([external])
2320 * Bug fixes, including:
2321   - Fix Automake's own `make install' so it works even if `ln' doesn't.
2322   - nobase_ programs and scripts honor --program-transform correctly.
2323   - Erase configure.lineno during `make distclean'.
2324   - Erase YACC and LEX outputs during `make maintainer-clean'.
2326 New in 1.6.2:
2327 * Many bug fixes, including:
2328   - Requiring the current version works.
2329   - Fix "$@" portability issues (for Zsh).
2330   - Fix output of dummy dependency files in presence of post-processed
2331     Makefile.in's.
2332   - Don't compute dependencies in background to avoid races with libtool.
2333   - Fix handling of _OBJECTS variables for targets sharing source variables.
2334   - Check dependency mode for Java when AM_PROG_GCJ is used.
2336 New in 1.6.1:
2337 * automake --output-dir is deprecated
2338 * Many bug fixes, including:
2339   - Don't choke on AM_LDFLAGS definitions.
2340   - Clean libtool objects from subdirectories.
2341   - Allow configure variables with reserved suffix and unknown prefix
2342     (e.g. AC_SUBST(mumble_LDFLAGS) when 'mumble' is not a target).
2343   - Fix the definition of AUTOMAKE and ACLOCAL in configure.
2345 New in 1.6:
2346 * Autoconf 2.52 is required.
2347 * automake no longer run libtoolize.
2348   This is the job of autoreconf (from GNU Autoconf).
2349 * `dist' generates all the archive flavors, as did `dist-all'.
2350 * `dist-gzip' generates the Gzip tar file only.
2351 * Combining Automake Makefile conditionals no longer lead to a combinatorial
2352   explosion.  Makefile.in's keep a reasonable size.
2353 * AM_FUNC_ERROR_AT_LINE, AM_FUNC_STRTOD, AM_FUNC_OBSTACK, AM_PTRDIFF_T
2354   are no longer shipped, since Autoconf 2.52 provides them (both as AM_
2355   and AC_).
2356 * `#line' of Lex and Yacc files are properly set.
2357 * EXTRA_DIST can contain generated directories.
2358 * Support for dot-less extensions in suffix rules.
2359 * The part of the distcheck target that checks whether distclean actually
2360   cleans all built files has been moved in a separate target, distcleancheck,
2361   so it can be overridden easily.
2362 * `make distcheck' will pass additional options defined in
2363   $(DISTCHECK_CONFIGURE_FLAGS) to configure.
2364 * Fixed CDPATH portability problems, in particular for MacOS X.
2365 * Fixed handling of nobase_ targets.
2366 * Fixed support of implicit rules leading to .lo objects.
2367 * Fixed late inclusion of --add-missing files (e.g. depcomp) in DIST_COMMON
2368 * Added uninstall-hook target
2369 * `AC_INIT AM_INIT_AUTOMAKE(tarname,version)' is an obsolete construct.
2370   You can now use `AC_INIT(pkgname,version) AM_INIT_AUTOMAKE' instead.
2371   (Note that "pkgname" is not "tarname", see the manual for details.)
2372   It is also possible to pass a list of global Automake options as
2373   first argument to this new form of AM_INIT_AUTOMAKE.
2374 * Compiler-based assembler is now called `CCAS'; people expected `AS'
2375   to be a real assembler.
2376 * AM_INIT_AUTOMAKE will set STRIP itself when it needs it.  Adding
2377   AC_CHECK_TOOL([STRIP], [strip]) manually is no longer required.
2378 * aclocal and automake are also installed with the version number
2379   appended, and some of the install directory names have changed.
2380   This lets you have multiple versions installed simultaneously.
2381 * Support for parsers and lexers in subdirectories.
2383 New in 1.5:
2384 * Support for `configure.ac'.
2385 * Support for `else COND', `endif COND' and negated conditions `!COND'.
2386 * `make dist-all' is much faster.
2387 * Allows '@' AC_SUBSTs in macro names.
2388 * Faster AM_INIT_AUTOMAKE (requires update of `missing' script)
2389 * User-side dependency tracking.  Developers no longer need GNU make
2390 * Python support
2391 * Uses DIST_SUBDIRS in some situations when SUBDIRS is conditional
2392 * Most files are correctly handled if they appear in subdirs
2393   For instance, a _DATA file can appear in a subdir
2394 * GNU tar is no longer required for `make dist'
2395 * Added support for `dist_' and `nodist_' prefixes
2396 * Added support for `nobase_' prefix
2397 * Compiled Java support
2398 * Support for per-executable and per-library compilation flags
2399 * Many bug fixes
2401 New in 1.4:
2402 * Added support for the Fortran 77 programming language.
2403 * Re-indexed the Automake Texinfo manual.
2404 * Added `AM_FOOFLAGS' variable for each compiler invocation;
2405   e.g. AM_CFLAGS can be used in Makefile.am to set C compiler flags
2406 * Support for latest autoconf, including support for objext
2407 * Can now put `.' in SUBDIRS to control build order
2408 * `include' command and `+=' support for macro assignment
2409 * Dependency tracking no long susceptible to deleted header file problem
2410 * Maintainer mode now a conditional.  @MAINT@ is now an anachronism.
2411 * Bug fixes
2413 New in 1.3:
2414 * Bug fixes
2415 * Better Cygwin32 support
2416 * Support for suffix rules with _SOURCES variables
2417 * New options `readme-alpha' and `check-news'; Gnits mode sets these
2418 * @LEXLIB@ no longer required when lex source seen
2419   Lex support in `missing', and new lex macro.  Update your missing script.
2420 * Built-in support for assembly
2421 * aclocal gives error if `AM_' macro not found
2422 * Passed YFLAGS, not YACCFLAGS, to yacc
2423 * AM_PROG_CC_STDC does not have to come before AC_PROG_CPP
2424 * Dependencies computed as a side effect of compilation
2425 * Preliminary support for Java
2426 * DESTDIR support at "make install" time
2427 * Improved ansi2knr support; you must use the latest ansi2knr.c (included)
2429 New in 1.2:
2430 * Bug fixes
2431 * Better DejaGnu support
2432 * Added no-installinfo option
2433 * Added Emacs Lisp support
2434 * Added --no-force option
2435 * Included `aclocal' program
2436 * Automake will now generate rules to regenerate aclocal.m4, if appropriate
2437 * Now uses `AM_' macro names everywhere
2438 * ansi2knr option can have directory prefix (eg `../lib/ansi2knr')
2439   ansi2knr now works correctly on K&R sources
2440 * Better C++, yacc, lex support
2441 * Will compute _DEPENDENCIES variables automatically if not supplied
2442 * Will interpolate $(...) and ${...} when examining contents of a variable
2443 * .deps files now in build directory, not source directory; dependency
2444   handling generally rewritten
2445 * DATA, MANS and BUILT_SOURCES no longer included in distribution
2446 * can now put config.h into a subdir
2447 * Added dist-all target
2448 * Support for install-info program (see texinfo 3.9)
2449 * Support for "yacc -d"
2450 * configure substitutions are automatically discovered and included
2451   in generated Makefile.in
2452 * Special --cygnus mode
2453 * OMIT_DEPENDENCIES can now hold list of dependencies to be omitted
2454   when making distribution.  Some dependencies are auto-ignored.
2455 * Changed how libraries are specified in _LIBRARIES variable
2456 * Full libtool support, from Gord Matzigkeit
2457 * No longer have to explicitly touch stamp-h when using AC_CONFIG_HEADER;
2458   AM_CONFIG_HEADER handles it automatically
2459 * Texinfo output files no longer need .info extension
2460 * Added `missing' support
2461 * Cygwin32 support
2462 * Conditionals in Makefile.am, from Ian Taylor
2464 New in 1.0:
2465 * Bug fixes
2466 * distcheck target runs install and installcheck targets
2467 * Added preliminary support for DejaGnu.
2469 New in 0.33:
2470 * More bug fixes
2471 * More checking
2472 * More libtool fixes from Gord Matzigkeit; libtool support is still
2473   preliminary however
2474 * Added support for jm_MAINTAINER_MODE
2475 * dist-zip support
2476 * New "distcheck" target
2478 New in 0.32:
2479 * Many bug fixes
2480 * mkinstalldirs and mdate-sh now appear in directory specified by
2481   AC_CONFIG_AUX_DIR.
2482 * Removed DIST_SUBDIRS, DIST_OTHER
2483 * AC_ARG_PROGRAM only required when an actual program exists
2484 * dist-hook target now run before distribution packaged up; idea from
2485   Dieter Baron.  Other hooks exist, too.
2486 * Preliminary (unfinished) support for libtool
2487 * Added short option names.
2488 * Better "dist" support when gluing together multiple packages
2490 New in 0.31:
2491 * Bug fixes
2492 * Documentation updates (many from François Pinard)
2493 * strictness `normal' now renamed to `foreign'
2494 * Renamed --install-missing to --add-missing
2495 * Now handles AC_CONFIG_AUX_DIR
2496 * Now handles TESTS macro
2497 * DIST_OTHER renamed to EXTRA_DIST
2498 * DIST_SUBDIRS is deprecated
2499 * @ALLOCA@ and @LIBOBJS@ now work in _LDADD variables
2500 * Better error messages in many cases
2501 * Program names are canonicalized
2502 * Added "check" prefix; from Gord Matzigkeit
2504 New in 0.30:
2505 * Bug fixes
2506 * configure.in scanner knows about AC_PATH_XTRA, AC_OUTPUT ":" syntax
2507 * Beginnings of a test suite
2508 * Automatically adds -I options for $(srcdir), ".", and path to config.h
2509 * Doesn't print anything when running
2510 * Beginnings of MAINT_CHARSET support
2511 * Can specify version in AUTOMAKE_OPTIONS
2512 * Most errors recognizable by Emacs' M-x next-error
2513 * Added --verbose option
2514 * All "primary" variables now obsolete; use EXTRA_PRIMARY to supply
2515   configure-generated names
2516 * Required macros now distributed in aclocal.m4
2517 * New documentation
2518 * --strictness=gnu is default
2520 New in 0.29:
2521 * Many bug fixes
2522 * More sophisticated configure.in scanning; now understands ALLOCA and
2523   LIBOBJS directly, handles AC_CONFIG_HEADER more precisely, etc.
2524 * TEXINFOS and MANS now obsolete; use info_TEXINFOS and man_MANS instead.
2525 * CONFIG_HEADER variable now obsolete
2526 * Can handle multiple Texinfo sources
2527 * Allow hierarchies deeper than 2.  From Gord Matzigkeit.
2528 * HEADERS variable no longer needed; now can put .h files directly into
2529   foo_SOURCES variable.
2530 * Automake automatically rebuilds files listed in AC_OUTPUT.  The
2531   corresponding ".in" files are included in the distribution.
2533 New in 0.28:
2534 * Added --gnu and --gnits options
2535 * More standards checking
2536 * Bug fixes
2537 * Cleaned up 'dist' targets
2538 * Added AUTOMAKE_OPTIONS variable and several options
2539 * Now scans configure.in to get some information (preliminary)
2541 New in 0.27:
2542 * Works with Perl 4 again
2544 New in 0.26:
2545 * Added --install-missing option.
2546 * Pretty-prints generated macros and rules
2547 * Comments in Makefile.am are placed more intelligently in Makefile.in
2548 * Generates .PHONY target
2549 * Rule or macro in Makefile.am now overrides contents of Automake file
2550 * Substantial cleanups from François Pinard
2552 New in 0.25:
2553 * Bug fixes.
2554 * Works with Perl 4 again.
2556 New in 0.24:
2557 * New uniform naming scheme.
2558 * --strictness option
2559 * Works with Perl 5
2560 * '.c' files corresponding to '.y' or '.l' files are automatically
2561   distributed.
2562 * Many bug fixes and cleanups
2564 New in 0.23:
2565 * Allow objects to be conditionally included in libraries via lib_LIBADD.
2567 New in 0.22:
2568 * Bug fixes in 'clean' code.
2569 * Now generates 'installdirs' target.
2570 * man page installation reworked.
2571 * 'make dist' no longer re-creates all Makefile.in's.
2573 New in 0.21:
2574 * Reimplemented in Perl
2575 * Added --amdir option (for debugging)
2576 * Texinfo support cleaned up.
2577 * Automatic de-ANSI-fication cleaned up.
2578 * Cleaned up 'clean' targets.
2580 New in 0.20:
2581 * Automatic dependency tracking
2582 * More documentation
2583 * New variables DATA and PACKAGEDATA
2584 * SCRIPTS installed using $(INSTALL_SCRIPT)
2585 * No longer uses double-colon rules
2586 * Bug fixes
2587 * Changes in advance of internationalization
2589 -----
2591 Copyright (C) 1995-2013 Free Software Foundation, Inc.
2593 This program is free software; you can redistribute it and/or modify
2594 it under the terms of the GNU General Public License as published by
2595 the Free Software Foundation; either version 2, or (at your option)
2596 any later version.
2598 This program is distributed in the hope that it will be useful,
2599 but WITHOUT ANY WARRANTY; without even the implied warranty of
2600 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2601 GNU General Public License for more details.
2603 You should have received a copy of the GNU General Public License
2604 along with this program.  If not, see <http://www.gnu.org/licenses/>.