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