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