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