Install nobase_lib_LTLIBRARIES before bin_PROGRAMS.
[automake/ericb.git] / NEWS
blob9c4dc91d720fb8be02e615664fbbb68c47f1857b
1 New in 1.10a:
3 * Version requirements:
5   - Autoconf 2.62 or greater is required.
7 * Changes to aclocal:
9   - The autoconf version check implemented by aclocal in aclocal.m4
10     (and new in Automake 1.10) is degraded to a warning.  This helps
11     in the common case where the Autoconf versions used are compatible.
13 * Change to Libtool support:
15   - Libtool generic flags are now passed to the install and uninstall
16     modes as well.
18 * Languages changes:
20   - subdir-object mode works now with Fortran (F77, FC, preprocessed
21     Fortran, and Ratfor).
23   - For files with extension .f90, .f95, .f03, or .f08, the flag
24     $(FCFLAGS_f[09]x) computed by AC_FC_SRCEXT is now used in compile rules.
26   - Files with extension .sx are also treated as preprocessed assembler.
28 * Miscellaneous changes:
30   - Automake development is done in a git repository on Savannah now, see
32       http://git.sv.gnu.org/gitweb/?p=automake.git
34     A read-only CVS mirror is provided at
36       cvs -d :pserver:anonymous@pserver.git.sv.gnu.org:/automake.git \
37           checkout -d automake HEAD
39   - "make dist" can now create lzma-compressed tarballs.
41   - Automake is licensed under GPLv3+.  `automake --add-missing' will
42     by default install the GPLv3 file as COPYING if it is missing.
43     Note that Automake will never overwrite an existing COPYING file,
44     even when the `--force-missing' option is used.
46   - Automake ships and install man pages for automake and aclocal now.
48   - New shorthand `$(pkglibexecdir)' for `$(libexecdir)/@PACKAGE@'.
50   - install-sh supports -C, which does not update the installed file
51     (and its time stamps) if the contents did not change.
53   - `make install' now installs multiple files in one `install' invocation
54     for files with DATA, HEADERS, PYTHON, LIBRARIES and TEXINFOS primaries.
56   - The "deleted header file problem" for *.m4 files is avoided by
57     stub rules.  This allows `make' to trigger a rerun of `aclocal'
58     also if some previously needed macro file has been removed.
60   - Rebuild rules now also work for a removed `subdir/Makefile.in' in
61     an otherwise up to date tree.
63   - The `color-tests' option causes colored test result output on terminals.
65   - New prefix `notrans_' for manpages which should not be transformed
66     by --program-transform.
68   - New macro AM_COND_IF for conditional evaluation and conditional
69     config files.
71   - For AC_CONFIG_LINKS, if source and destination are equal, do not
72     remove the file in a non-VPATH build.  Such setups work with Autoconf
73     2.62 or newer.
75   - AM_MAINTAINER_MODE now allows for an optional argument specifying
76     the default setting.
78 Bugs fixed in 1.10a:
80 * Long standing bugs:
82   - Fix aix dependency tracking for libtool objects.
84   - For nobase_*_LTLIBRARIES with nonempty directory components, the
85     correct `-rpath' argument is used now.
87 * Bugs introduced by 1.10:
89   - Fix output of dummy dependency files in presence of post-processed
90     Makefile.in's again, but also cope with long lines.
92   - $(EXEEXT) is automatically appended to filenames of XFAIL_TESTS
93     that have been declared as programs in the same Makefile.
94     This is for consistency with the analogous change to TESTS in 1.10.
96   - Fix order of standard includes to again be `-I. -I$(srcdir)',
97     followed by directories containing config headers.
99 New in 1.10:
101 * Version requirements:
103   - Autoconf 2.60 or greater is required.
105   - Perl 5.6 or greater is required.
107 * Changes to aclocal:
109   - aclocal now also supports -Wmumble and -Wno-mumble options.
111   - `dirlist' entries (for the aclocal search path) may use shell
112     wildcards such as `*', `?', or `[...]'.
114   - aclocal supports an --install option that will cause system-wide
115     third-party macros to be installed in the local directory
116     specified with the first -I flag.  This option also uses #serial
117     lines in M4 files to upgrade local macros.
119     The new aclocal options --dry-run and --diff help to review changes
120     before they are installed.
122   - aclocal now outputs an autoconf version check in aclocal.m4 in
123     projects using automake.
125     For a few years, automake and aclocal have been calling autoconf
126     (or its underlying engine autom4te) to accurately retrieve the
127     data they need from configure.ac and its siblings.  Doing so can
128     only work if all autotools use the same version of autoconf.  For
129     instance a Makefile.in generated by automake for one version of
130     autoconf may stop working if configure is regenerated with another
131     version of autoconf, and vice versa.
133     This new version check ensures that the whole build system has
134     been generated using the same autoconf version.
136 * Support for new Autoconf macros:
138   - The new AC_REQUIRE_AUX_FILE Autoconf macro is supported.
140   - If `subdir-objects' is set, and AC_CONFIG_LIBOBJ_DIR is specified,
141     $(LIBOBJS), $(LTLIBOBJS), $(ALLOCA), and $(LTALLOCA) can be used
142     in different directories.  However, only one instance of such a
143     library objects directory is supported.
145 * Change to Libtool support:
147   - Libtool generic flags (those that go before the --mode=MODE option)
148     can be specified using AM_LIBTOOLFLAGS and target_LIBTOOLFLAGS.
150 * Yacc and Lex changes:
152   - The rebuild rules for distributed Yacc and Lex output will avoid
153     overwriting existing files if AM_MAINTAINER_MODE and maintainer-mode
154     is not enabled.
156   - ylwrap is now always used for lex and yacc source files,
157     regardless of whether there is more than one source per directory.
159 * Languages changes:
161   - Preprocessed assembler (*.S) compilation now honors CPPFLAGS,
162     AM_CPPFLAGS and per-target _CPPFLAGS, and supports dependency
163     tracking, unlike non-preprocessed assembler (*.s).
165   - subdir-object mode works now with Assembler.  Automake assumes
166     that the compiler understands `-c -o'.
168   - Preprocessed assembler (*.S) compilation now also honors
169     $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES).
171   - Improved support for Objective C:
172     - Autoconf's new AC_PROG_OBJC will enable automatic dependency tracking.
173     - A new section of the manual documents the support.
175   - New support for Unified Parallel C:
176     - AM_PROG_UPC looks for a UPC compiler.
177     - A new section of the manual documents the support.
179   - Per-target flags are now correctly handled in link rules.
181     For instance maude_CFLAGS correctly overrides AM_CFLAGS; likewise
182     for maude_LDFLAGS and AM_LDFLAGS.  Previous versions bogusly
183     preferred AM_CFLAGS over maude_CFLAGS while linking, and they
184     used both AM_LDFLAGS and maude_LDFLAGS on the same link command.
186     The fix for compiler flags (i.e., using maude_CFLAGS instead of
187     AM_CFLAGS) should not hurt any package since that is how _CFLAGS
188     is expected to work (and actually works during compilation).
190     However using maude_LDFLAGS "instead of" AM_LDFLAGS rather than
191     "in addition to" breaks backward compatibility with older versions.
192     If your package used both variables, as in
194       AM_LDFLAGS = common flags
195       bin_PROGRAMS = a b c
196       a_LDFLAGS = more flags
197       ...
199     and assumed *_LDFLAGS would sum up, you should rewrite it as
201       AM_LDFLAGS = common flags
202       bin_PROGRAMS = a b c
203       a_LDFLAGS = $(AM_LDFLAGS) more flags
204       ...
206     This new behavior of *_LDFLAGS is more coherent with other
207     per-target variables, and the way *_LDFLAGS variables were
208     considered internally.
210 * New installation targets:
212   - New targets mandated by GNU Coding Standards:
213       install-dvi
214       install-html
215       install-ps
216       install-pdf
217     By default they will only install Texinfo manuals.
218     You can customize them with *-local variants:
219       install-dvi-local
220       install-html-local
221       install-ps-local
222       install-pdf-local
224   - The undocumented recursive target `uninstall-info' no longer exists.
225     (`uninstall' is in charge of removing all possible documentation
226     flavors, including optional formats such as dvi, ps, or info even
227     when `no-installinfo' is used.)
229 * Miscellaneous changes:
231   - Automake no longer complains if input files for AC_CONFIG_FILES
232     are specified using shell variables.
234   - clean, distribution, or rebuild rules are normally disabled for
235     inputs and outputs of AC_CONFIG_FILES, AC_CONFIG_HEADERS, and
236     AC_CONFIG_LINK specified using shell variables.  However, if these
237     variables are used as ${VAR}, and AC_SUBSTed, then Automake will
238     be able to output rules anyway.
239     (See the Automake documentation for AC_CONFIG_FILES.)
241   - $(EXEEXT) is automatically appended to filenames of TESTS
242     that have been declared as programs in the same Makefile.
243     This is mostly useful when some check_PROGRAMS are listed in TESTS.
245   - `-Wportability' has finally been turned on by default for `gnu' and
246     `gnits' strictness.  This means, automake will complain about %-rules
247     or $(GNU Make functions) unless you switch to `foreign' strictness or
248     use `-Wno-portability'.
250   - Automake now uses AC_PROG_MKDIR_P (new in Autoconf 2.60), and uses
251     $(MKDIR_P) instead of $(mkdir_p) to create directories.  The
252     $(mkdir_p) variable is still defined (to the same value as
253     $(MKDIR_P)) but should be considered obsolete.  If you are using
254     $(mkdir_p) in some of your rules, please plan to update them to
255     $(MKDIR_P) at some point.
257   - AM_C_PROTOTYPES and ansi2knr are now documented as being obsolete.
258     They still work in this release, but may be withdrawn in a future one.
260   - Inline compilation rules for gcc3-style dependency tracking are
261     more readable.
263   - Automake installs a "Hello World!" example package in $(docdir).
264     This example is used throughout the new "Autotools Introduction"
265     chapter of the manual.
267 New in 1.9:
269 * Makefile.in bloat reduction:
271   - Inference rules are used to compile sources in subdirectories when
272     the `subdir-objects' option is used and no per-target flags are
273     used.  This should reduce the size of some projects a lot, because
274     Automake used to output an explicit rule for each such object in
275     the past.
277   - Automake no longer outputs three rules (.o, .obj, .lo) for each
278     object that must be built with explicit rules.  It just outputs
279     the rules required to build the kind of object considered: either
280     the two .o and .obj rules for usual objects, or the .lo rule for
281     libtool objects.
283 * Change to Libtool support:
285   - Libtool tags are used with libtool versions that support them.
286     (I.e., with Libtool 1.5 or greater.)
288   - Automake is now able to handle setups where a libtool library is
289     conditionally installed in different directories, as in
291       if COND
292         lib_LTLIBRARIES = liba.la
293       else
294         pkglib_LTLIBRARIES = liba.la
295       endif
296       liba_la_SOURCES = ...
298 * Changes to aclocal:
300   - aclocal now ensures that AC_DEFUNs and AU_DEFUNs it discovers are
301     really evaluated, before it decides to include them in aclocal.m4.
302     This solves nasty problems with conditional redefinitions of
303     Autoconf macros in /usr/share/aclocal/*.m4 files causing extraneous
304     *.m4 files to be included in any project using these macros.
305     (Calls to AC_PROG_EGREP causing libtool.m4 to be included is the
306     most famous instance of this bug.)
308   - Do not complain about missing conditionally AC_REQUIREd macros
309     that are not actually used.  In 1.8.x aclocal would correctly
310     determine which of these macros were really needed (and include
311     only these in the package); unfortunately it would also require
312     all of them to be present in order to run.  This created
313     situations were aclocal would not work on a tarball distributing
314     all the macros it uses.  For instance running aclocal on a project
315     containing only the subset of the Gettext macros in use by the
316     project did not work, because gettext conditionally requires other
317     macros.
319 * Portability improvements:
321   - Tar format can be chosen with the new options tar-v7, tar-ustar, and
322     tar-pax.  The new option filename-length-max=99 helps diagnosing
323     filenames that are too long for tar-v7.  (PR/414)
325   - Variables aumented with `+=' are now automatically flattened (i.e.,
326     trailing backslashes removed) and then wrapped around 80 colummns
327     (adding trailing backslashes).  In previous versions, a long series
328     of
329       VAR += value1
330       VAR += value2
331       VAR += value3
332       ...
333     would result in a single-line definition of VAR that could possibly
334     exceed the maximum line length of some make implementations.
336     Non-augmented variables are still output as they are defined in
337     the Makefile.am.
339 * Miscellaneous:
341   - Support Fortran 90/95 with the new "fc" and "ppfc" languages.
342     Works the same as the old Fortran 77 implementation; just replace
343     F77 with FC everywhere (exception: FFLAGS becomes FCFLAGS).
344     Requires a version of autoconf which provides AC_PROG_FC (>=2.59).
346   - Support for conditional _LISP.
348   - Support for conditional -hook and -local rules (PR/428).
350   - Diagnose AC_CONFIG_AUX_DIR calls following AM_INIT_AUTOMAKE. (PR/49)
352   - Automake will not write any Makefile.ins after the first error it
353     encounters.  The previous Makefile.ins (if any) will be left in
354     place.  (Warnings will not prevent output, but remember they can
355     be turned into errors with -Werror.)
357   - The restriction that SUBDIRS must contain direct children is gone.
358     Do not abuse.
360   - The manual tells more about SUBDIRS vs. DIST_SUBDIRS.
361     It also gives an example of nested packages using AC_CONFIG_SUBDIRS.
363 Bugs fixed in 1.8.5:
365 * Long standing bugs:
367   - Define DIST_SUBDIRS even when the `no-dist' or `cygnus' options are used
368     so that `make distclean' and `make maintainer-clean' can work.
370   - Define AR and ARFLAGS even when only EXTRA_LIBRARIES are defined.
372   - Fix many rules to please FreeBSD make, which runs commands with `sh -e'.
374   - Polish diagnostic when no input file is found.
376 Bugs fixed in 1.8.4:
378 * Long standing bugs:
380   - Fix AM_PATH_PYTHON to correctly display $PYTHON when it has been
381     overridden by the user.
383   - Honor PATH_SEPARATOR in various places of the Automake package, for
384     the sake of OS/2.
386   - Adjust dependency tracking mode detection to ICC 8.0's new output.
387     (PR/416)
389   - Fix install-sh so it can install the `mv' binary... using `mv'.
391   - Fix tru64 dependency tracking for libtool objects.
393   - Work around Exuberant Ctags when creating a TAGS files in a directory
394     without files to scan but with subdirectories to include.
396 * Bugs introduced by 1.8:
398   - Fix an "internal error" when @LIBOBJS@ is used in a variable that is
399     not defined in the same conditions as the _LDADD that uses it.
401   - Do not warn when JAVAROOT is overridden, this is legitimate.
403 Bugs fixed in 1.8.3:
405 * Long standing bugs:
407   - Quote filenames in installation rules, in case $DESTDIR, $prefix,
408     or any of the other *dir variables contain a space.
410     Please note that Automake does not and cannot support spaces in
411     filenames that are involved during the build.  This change affects
412     only installation paths, so that `make install' does not bomb out
413     in packages configured with
414       ./configure --prefix '/c/Program Files'
416   - Fix the depfiles output so it works with GNU sed (<4.1) even when
417     POSIXLY_CORRECT is set.
419   - Do not AC_SUBST(LIBOBJS) in AM_WITH_REGEX.  This macro was unusable
420     since Autoconf 2.54, which defines LIBOBJS itself.
422   - Fix a potential (but unlikely) race condition in parallel elisp
423     builds.  (Introduced in 1.7.3.)
425   - Do not assume that users override _DEPENDENCIES in all conditions
426     where Automake will try to define them.
428   - Do not use `mkdir -p' in mkinstalldirs, unless this is GNU mkdir.
429     Solaris 8's `mkdir -p' is not thread-safe and can break parallel
430     builds.
432     This fix also affects the $(mkdir_p) variable defined since
433     Automake 1.8.  It will be set to `mkdir -p' only if mkdir is GNU
434     mkdir, and to `mkinstalldirs' or `install-sh -d' otherwise.
436   - Secure temporary directory creation in `make distcheck'. (PR/413)
438   - Do not generate two build rules for `parser.h' when the
439     parser appears in two different conditionals.
441   - Work around a Solaris 8 /bin/sh bug in the test for dependency
442     checking.  Usually ./configure will not pick this shell; so this
443     fix only helps cases where the shell is forced to /bin/sh.
445 * Bugs introduced by 1.8:
447   - In some situations (hand-written `m4_include's), aclocal would
448     call the `File::Spec->rel2abs' method, which was only introduced
449     in Perl 5.6.  This new version reestablish support Perl 5.005.
451     It is likely that the next major Automake releases will require at
452     least Perl 5.6.  Consider upgrading your development environment
453     if you are still using the five-year-old Perl 5.005.
455   - Automake would sometimes fail to define rules for targets listed
456     in variables defined in multiple conditions.  For instance on
457       if C1
458         bin_PROGRAMS = a
459       else
460         bin_PROGRAMS = b
461       endif
462     it would define only the `a.$(OBJEXT): a.c' rule and omit the
463     `b.$(OBJEXT): b.c' rule.
465 * New sections in manual:
467   - Third-Party Makefiles: how to interface third party Makefiles.
468   - Upgrading: upgrading packages to newer Automake versions.
469   - Multiple Outputs: handling tools that produce many outputs.
471 Bug fixed in 1.8.2:
473 * A (well known) portability bug slipped in the changes made to
474   install-sh in Automake 1.8.1.  The broken install-sh would refuse to
475   install anything on Tru64.
477 * Fix install rules for conditionally built python files.  (This never
478   really worked.)
480 Bug fixed in 1.8.1:
482 * Bugs introduced by 1.8:
484   - Fix Config.pm import error with old Perl versions (at least
485     5.005_03).  One symptom is that aclocal could not find its macro
486     directory.
488   - Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
489     created by `make install' are always world readable, even if the
490     installer happens to have an overly restrictive umask (e.g. 077).
491     This was a mistake and has been reverted.  There are at least two
492     reasons why we must not use `-m 0755':
493       - it causes special bits like SGID to be ignored,
494       - it may be too restrictive (some setups expect 775 directories).
496   - Fix aclocal to honor definitions located in files which have been
497     m4_included manually.  aclocal 1.8 had been updated to check
498     m4_included files for new requirements, but forgot that these
499     m4_included files can also provide new definitions.
501     Note that if you have such a setup, we recommend you get rid of
502     it.  In the past, there was a reason to m4_include files manually:
503     aclocal used to duplicate entire M4 files into aclocal.m4, even
504     files that were distributed.  Some packages were therefore
505     m4_including the distributed file directly, and playing some
506     tricks to ensure aclocal would not copy that file to aclocal.m4,
507     in order to limit the amount of duplication.  Since aclocal 1.8.x
508     will precisely output m4_includes for local M4 files, we recommend
509     that you clean up your setup, removing all manual m4_includes and
510     letting aclocal output them.
512   - Output detailed menus in the Info version if the Automake manual,
513     so that Emacs can locate the indexes.
515   - configure.ac and configure were listed twice in DIST_COMMON (an
516     internal variable where Automake lists configury files to
517     distribute).  This was harmless, but unaesthetic.
519   - Use `chmod a-w' instead of `chmod -w' as the latter honors umask.
520     This was an issue only in the Automake package itself, not in
521     its output.
523   - Automake assumed that all AC_CONFIG_LINKS arguments had the form
524     DEST:SRC.  This was wrong, as some packages do
525     AC_CONFIG_LINKS($computedlinks).  This version no longer abort in
526     that situation.
528   - Contrary to mkinstalldirs, $(mkdir_p) was expecting exactly one
529     argument.  This caused two kinds of failures:
530       - Rules installing data in a conditionally defined directory
531         failed when that directory was undefined.  In this case no
532         argument was supplied.
533       - `make installdirs' failed, because several directories were
534         passed to $(mkdir_p).  This was an issue only on platform
535         were $(mkdir_p) is implemented with `install-sh -d'.
536     $(mkdir_p) as been changed to accept 0 or more arguments, as
537     mkinstalldirs did.
539 * Long-standing bugs:
541   - Fix an unexpected diagnostic occurring when users attempt
542     to override some internal variables that Automake appends to.
544   - aclocal now scans configure.ac for macro definitions (PR/319).
546   - Fix a portability issue with OSF1/Tru64 Make.  If a directory
547     distributes files which are outside itself (this usually occurs
548     when using AC_CONFIG_AUX_DIR([../dir]) to use auxiliary files
549     from a parent package), then `make distcheck' fails due to an
550     optimization performed by OSF1/Tru64 Make in its VPATH handling.
551     (tests/subpkg2.test failure)
553   - Fix another portability issue with Sun and OSF1/Tru64 Make.
554     In a VPATH-build configuration, `make install' would install
555     nobase_ files to wrong locations.
557   - Fix a Perl `uninitialized value' diagnostic occurring when
558     automake complains that a Texinfo file does not have a
559     @setfilename statement.
561   - Erase config.status.lineno during `make distclean'.  This file
562     can be created by config.status.  Automake already knew about
563     configure.lineno, but forgot config.status.lineno.
565   - Distribute all files, even those which are built and installed
566     conditionally.  This change affects files listed in conditionally
567     defined *_HEADERS and *_PYTHON variable (unless they are nodist_*)
568     as well as those listed in conditionally defined dist_*_DATA,
569     dist_*_JAVA, dist_*_LISP, and dist_*_SCRIPTS variables.
571   - Fix AM_PATH_LISPDIR to avoid \? in sed regular expressions; it
572     doesn't conform to POSIX.
574   - Normalize help strings for configure variables and options added
575     by Automake macros.
577 * Anticipation:
579   - Check for python2.4 in AM_PATH_PYTHON.
581 * Spurious failures in test suite:
583   - tests/libtool5.test, tests/ltcond.test, tests/ltcond2.test,
584     tests/ltconv.test: fix failures with CVS Libtool.
585   - tests/aclocal6.test: fix failure if autom4te.cache is disabled.
586   - tests/txinfo24.test, tests/txinfo25.test, tests/txinfo28.test:
587     fix failures with old Texinfo versions.
589 New in 1.8:
591 * Meta-News
593   - The NEWS file is more verbose.
595 * Requirements
597   - Autoconf 2.58 or greater is required.
599 * New features
601   - Default source file names in the absence of a _SOURCES declaration
602     are made by removing any target extension before appending `.c', so
603     to make the libtool module `foo.la' from `foo.c', you only need to
604     do this:
606         lib_LTLIBRARIES = foo.la
607         foo_la_LDFLAGS  = -module
609     For backward compatibility, foo_la.c will be used instead of
610     foo.c if this file exists or is the explicit target of a rule.
611     However -Wobsolete will warn about this deprecated naming.
613   - AR's `cru' flags are now set in a global ARFLAGS variable instead
614     of being hard-coded in each $(AR) invocation, so they can be
615     substituted from configure.ac.  This has been requested by people
616     dealing with non-POSIX ar implementations.
618   - New warning option: -Woverride.  This will warn about any user
619     target or variable definitions which override Automake
620     definitions.
622   - Texinfo rules back up and restore info files when makeinfo fails.
624   - Texinfo rules now support the `html' target.
625     Running this requires Texinfo 4.0 or greater.
627     `html' is a new recursive target, so if your package mixes
628     hand-crafted `Makefile.in's with Automake-generated
629     `Makefile.in's, you should adjust the former to support (or
630     ignore) this target so that `make html' recurses successfully.  If
631     you had a custom `html' rule in your `Makefile.am', it's better to
632     rename it as `html-local', otherwise your rule will override
633     Automake's new rule (you can check that by running `automake
634     -Woverride') and that will stop the recursion to subdirectories.
636     Last but not least, this `html' rule is declared PHONY, even when
637     overridden.  Fortunately, it appears that few packages use a
638     non-PHONY `html' rule.
640   - Any file which is m4_included from configure.ac will appear as a
641     configure and Makefile.in dependency, and will be automatically
642     distributed.
644   - The rules for rebuilding Makefiles and Makefile.ins will now
645     rebuild all Makefiles and all Makefile.ins at once when one of
646     configure's dependencies has changed.  This is considerably faster
647     than previous implementations, where config.status and automake
648     were run separately in each directory (this still happens when you
649     change a Makefile.am locally, without touching configure.ac or
650     friends).  Doing this also solves a longstanding issue: these
651     rebuild rules failed to work when adding new directories to the
652     tree, forcing you to run automake manually.
654   - For similar reasons, the rules to rebuild configure,
655     config.status, and aclocal.m4 are now defined in all directories.
656     Note that if you were using the CONFIG_STATUS_DEPENDENCIES and
657     CONFIGURE_DEPENDENCIES (formerly undocumented) variables, you
658     should better define them in all directories.  This is easily done
659     using an AC_SUBST (make sure you prefix these dependencies with
660     $(top_srcdir) since this variable will appear at different
661     levels of the build tree).
663   - aclocal will now use `m4_include' instead of copying local m4
664     files into aclocal.m4.  (Local m4 files are those you ship with
665     your project, other files will be copied as usual.)
667     Because m4_included files are automatically distributed, it means
668     for most projects there is no point in EXTRA_DISTing the list of
669     m4 files which are used.  (You can probably get rid of
670     m4/Makefile.am if you had one.)
672   - aclocal will avoid touching aclocal.m4 when possible, so that
673     Autom4te's cache isn't needlessly invalidated.  This behavior can
674     be switched off with the new `--force' option.
676   - aclocal now uses Autoconf's --trace to detect macros which are
677     actually used and will no longer include unused macros simply
678     because they where mentioned.  This was often the case for macros
679     called conditionally.
681   - New options no-dist and no-dist-gzip.
683   - compile, depcomp, elisp-comp, install-sh, mdate-sh, mkinstalldirs,
684     py-compile, and ylwrap, now all understand --version and --help.
686   - Automake will now recognize AC_CONFIG_LINKS so far as removing created
687     links as part of the distclean target and including source files in
688     distributions.
690   - AM_PATH_PYTHON now supports ACTION-IF-FOUND and ACTION-IF-NOT-FOUND
691     argument.  The latter can be used to override the default behavior
692     (which is to abort).
694   - Automake will exit with $? = 63 on version mismatch.  (So does
695     Autoconf 2.58)  missing knows this, and in this case it will
696     emulate the tools as if they were absent.  Because older versions
697     of Automake and Autoconf did not use this exit code, this change
698     will only be useful in projects generated with future versions of
699     these tools.
701   - When using AC_CONFIG_FILES with multiple input files, Automake
702     generates the first ".in" input file for which a ".am" exists.
703     (Former versions would try to use only the first input file.)
705   - lisp_DATA is now allowed.  If you are using the empty ELCFILES
706     idiom to disable byte-compilation of lisp_LISP files, it is
707     recommended that you switch to using lisp_DATA.  Note that
708     this is not strictly equivalent: lisp_DATA will install elisp
709     files even if emacs is not installed, while *_LISP do not
710     install anything unless emacs is found.
712   - Makefiles will prefer `mkdir -p' over mkinstalldirs if it is
713     available.  This selection is achieved through the Makefile
714     variable $(mkdir_p) that is set by AM_INIT_AUTOMAKE to either
715     `mkdir -m 0755 -p --', `$(mkinstalldirs) -m 0755', or
716     `$(install_sh) -m 0755 -d'.
718 * Obsolete features
720   - Because `mkdir -p' is available on most platforms, and we can use
721     `install-sh -d' when it is not, the use of the mkinstalldirs
722     script is being phased out.  `automake --add-missing' no longer
723     installs it, and if you remove mkinstalldirs from your package,
724     automake will define $(mkinstalldirs) as an alias for $(mkdir_p).
726     Gettext 0.12.1 still requires mkinstalldirs.  Fortunately
727     gettextize and autopoint will install it when needed.  Automake
728     will continue to define the $(mkinstalldirs) and to distribute
729     mkinstalldirs when this script is in the source tree.
731   - AM_PROG_CC_STDC is now empty.  The content of this macro was
732     merged in AC_PROG_CC.  If your code uses $am_cv_prog_cc_stdc, you
733     should adjust it to use $ac_cv_prog_cc_stdc instead.  (This
734     renaming should be safe, even if you have to support several,
735     versions of Automake, because AC_PROG_CC defines this variable
736     since Autoconf 2.54.)
738   - Some users where using the undocumented ACLOCAL_M4_SOURCES
739     variable to override the aclocal.m4 dependencies computed
740     (inaccurately) by older versions of Automake.  Because Automake
741     now tracks configure's m4 dependencies accurately (see m4_include
742     above), the use of ACLOCAL_M4_SOURCES should be considered
743     obsolete and will be flagged as such when running `automake
744     -Wobsolete'.
746 * Bug fixes
748   - Defining programs conditionally using Automake conditionals no
749     longer leads to a combinatorial explosion.  The following
750     construct used to be troublesome when used with dozens of
751     conditions.
753       bin_PROGRAMS = a
754       if COND1
755         bin_PROGRAMS += a1
756       endif
757       if COND2
758         bin_PROGRAMS += a2
759       endif
760       if COND3
761         bin_PROGRAMS += a3
762       endif
763       ...
765     Likewise for _SOURCES, _LDADD, and _LIBADD variables.
767   - Due to implementation constraints, previous versions of Automake
768     proscribed multiple conditional definitions of some variables
769     like bin_PROGRAMS:
771       if COND1
772         bin_PROGRAMS = a1
773       endif
774       if COND2
775         bin_PROGRAMS = a2
776       endif
778     All _PROGRAMS, _LDADD, and _LIBADD variables were affected.
779     This restriction has been lifted, and these variables now
780     support multiple conditional definitions as do other variables.
782   - Cleanup the definitions of $(distdir) and $(top_distdir).
783     $(top_distdir) now points to the root of the distribution
784     directory created during `make dist', as it did in Automake 1.4,
785     not to the root of the build tree as it did in intervening
786     versions.  Furthermore these two variables are now only defined in
787     the top level Makefile, and passed to sub-directories when running
788     `make dist'.
790   - The --no-force option now correctly checks the Makefile.in's
791     dependencies before deciding not to update it.
793   - Do not assume that make files are called Makefile in cleaning rules.
795   - Update .info files in the source tree, not in the build tree.  This
796     is what the GNU Coding Standard recommend.  Only Automake 1.7.x
797     used to update these files in the build tree (previous versions did
798     it in the source tree too), and it caused several problems, varying
799     from mere annoyance to portability issues.
801   - COPYING, COPYING.LIB, and COPYING.LESSER are no longer overwritten
802     when --add-missing and --force-missing are used.  For backward
803     compatibility --add-missing will continue to install COPYING (in
804     `gnu' strictness) when none of these three files exist, but this
805     use is deprecated: you should better choose a license yourself and
806     install it once for all in your source tree (and in your code
807     management system).
809   - Fix ylwrap so that it does not overwrite header files that haven't
810     changed, as the inline rule already does.
812   - User-defined rules override automake-defined rules for the same
813     targets, even when rules do not have commands.  This is not new
814     (and was documented), however some of the automake-generated
815     rules have escaped this principle in former Automake versions.
816     Rules for the following targets are affected by this fix:
818        clean, clean-am, dist-all, distclean, distclean-am, dvi, dvi-am,
819        info, info-am, install-data-am, install-exec-am, install-info,
820        install-info-am, install-man, installcheck-am, maintainer-clean,
821        maintainer-clean-am, mostlyclean, mostlyclean-am, pdf, pdf-am,
822        ps, ps-am, uninstall-am, uninstall-info, uninstall-man
824     Practically it means that an attempt to supplement the dependencies
825     of some target, as in
827        clean: my-clean-rule
829     will now *silently override* the automake definition of the
830     rule for this target.  Running `automake -Woverride' will diagnose
831     all such overriding definitions.
833     It should be noted that almost all these targets support a *-local
834     variant that is meant to supplement the automake-defined rule
835     (See node `Extending' in the manual).  The above rule should
836     be rewritten as
838       clean-local: my-clean-rule
840     These *-local targets have been documented since at least
841     Automake 1.2, so you should not fear the change if you have
842     to support multiple automake versions.
844 * Miscellaneous
846   - The Automake manual is now distributed under the terms of the GNU FDL.
848   - Targets dist-gzip, dist-bzip2, dist-tarZ, dist-zip are always defined.
850   - core dumps are no longer removed by the cleaning rules.  There are
851     at least three reasons for this:
852       1. These files should not be created by any build step,
853          so their removal do not fit any of the cleaning rules.
854          Actually, they may be precious to the developer.
855       2. If such file is created during a build, then it's clearly a
856          bug Automake should not hide.  Not removing the file will
857          cause `make distcheck' to complain about its presence.
858       3. Operating systems have different naming conventions for
859          core dump files.  A core file on one system might be a
860          completely legitimate data file on another system.
862   - RUNTESTFLAGS, CTAGSFLAGS, ETAGSFLAGS, JAVACFLAGS are no longer
863     defined by Automake.  This means that any definition in the
864     environment will be used, unless overridden in the Makefile.am or
865     on the command line.  The old behavior, where these variables were
866     defined empty in each Makefile, can be obtained by AC_SUBSTing or
867     AC_ARG_VARing each variable from configure.ac.
869   - CONFIGURE_DEPENDENCIES and CONFIG_STATUS_DEPENDENCIES are now
870     documented.  (The is not a new feature, these variables have
871     been there since at least Automake 1.4.)
873 Bugs fixed in 1.7.9:
874 * Fix install-strip to work with nobase_ binaries.
875 * Fix renaming of #line directives in ylwrap.
876 * Rebuild with Autoconf 2.59.  (1.7.8 was not installable with pdksh.)
878 Bugs fixed in 1.7.8:
879 * Remove spurious blank lines in cleaning rules introduced in 1.7.7.
880 * Fix detection of Debian's install-info, broken since version 1.5.
881   (Debian bug #213524).
882 * Honor -module if it appears in AM_LDFLAGS (i.e., relax name checking)
883   This was only done for libfoo_LDFLAGS and LDFLAGS in previous versions.
885 Bugs fixed in 1.7.7:
886 * The implementation of automake's --no-force option is unreliable,
887   so this option is ignored in this version.  A real fix will appear in
888   Automake 1.8.  (Debian Bug #206299)
889 * AM_PATH_PYTHON: really check the whole list of interpreters if no
890   argument is given.  (PR/399)
891 * Do not warn about leading `_' in variable names, even with -Wportability.
892 * Support user redefinitions of TEXINFO_TEX.
893 * depcomp: support AIX Compiler version 6.
894 * Fix missing rebuilds during `make dist' with BSD make.
895   (Could produce tarballs containing out-of-date files.)
896 * Resurrect multilib support.
897 * Noteworthy manual updates:
898   - Extending aclocal: how to write m4 macros that won't trigger warnings
899     with Automake 1.8.
900   - A Shared Library: Rewrite and split into subsections.
902 Bugs fixed in 1.7.6:
903 * Fix depcomp's icc mode for ICC 7.1.
904 * Diagnose calls to AC_CONFIG_FILES and friends with not enough arguments.
905 * Fix maintainer-clean's removal of autom4te.cache in VPATH builds.
906 * Fix AM_PATH_LISPDIR to work with POSIXLY_CORRECT=1.
907 * Fix the location reported in some diagnostics related to AUTOMAKE_OPTIONS.
908 * Remove Latin-1 characters from elisp-comp.
909 * Update the manual's @dircategory to match the Free Software Directory.
911 Bugs fixed in 1.7.5:
912 * Update install-sh's license to remove an advertising clause.
913   (Debian bug #191717)
914 * Fix a bug introduced in 1.7.4, related to BUILT_SOURCE handling,
915   that caused invalid Makefile.ins to be generated.
916 * Make sure AM_MAKE_INCLUDE doesn't fail when a `doit' file exists.
917 * New FAQ entry: renamed objects.
919 Bugs fixed in 1.7.4:
920 * Tweak the TAGS rule to support Exuberant Ctags (in addition to
921   the Emacs implementation)
922 * Fix output of aclocal.m4 dependencies in subdirectories.
923 * Use `mv -f' instead of `mv' in fastdep rules.
924 * Upgrade mdate-sh to work on OS/2.
925 * Don't byte-compile elisp files when ELCFILES is set empty.
926   (this documented feature was broken by 1.7.3)
927 * Diagnose trailing backslashes on last line of Makefile.am.
928 * Diagnose whitespace following trailing backslashes.
929 * Multiple tests are now correctly supported in DEJATOOL. (PR/388)
930 * Fix rebuilt rules for AC_CONFIG_FILES([Makefile:Makefile.in:Makefile.bot])
931   Makefiles. (PR/389)
932 * `make install' will build `BUILT_SOURCES' first.
933 * Minor documentation fixes.
935 Bugs fixed in 1.7.3:
936 * Fix stamp files numbering (when using multiple AC_CONFIG_HEADERS).
937 * Query distutils for `pythondir' and `pythonexecdir', instead of
938   using an hardcoded path.  This should allow builds on 64-bit
939   distributions that usually use lib64/ instead of lib/.
940 * AM_PATH_PYTHON will also search for python2.3.
941 * elisp files are now built all at once instead of one by one. Besides
942   incurring a speed-up, this is required to support interdependent elisp files.
943 * Support for DJGPP:
944   - `make distcheck' will now work in `_inst/' and `_build' instead
945     of `=inst/' and `=build/'
946   - use `_dirstamp' when the file-system doesn't support `.dirstamp'
947   - install/uninstall `*.i[0-9][0-9]'-style info files
948   - more changes that affect only the Automake package (not its output)
949 * Fix some incompatibilities with upcoming perl-5.10.
950 * Properly quote AC_PACKAGE_TARNAME and AC_PACKAGE_VERSION when defining
951   PACKAGE and VERSION.
952 * depcomp fixes:
953   - dashmstdout and dashXmstdout modes: don't use `-o /dev/null', this
954     is troublesome with gcc and Solaris compilers. (PR/385)
955   - makedepend mode: work with Libtool. (PR/385 too)
956   - support for ICC.
957 * better support for unusual gettext setups, such as multiple po/ directories
958   (PR/381):
959   - Flag missing po/ and intl/ directories as warnings, not errors.
960   - Disable these warnings if po/ does not exist.
961 * Noteworthy manual updates:
962   - New FAQ chapter.
963   - Document how AC_CONFIG_AUX_DIR interacts with missing files.
964     (Debian Bug #39542)
965   - Document `AM_YFLAGS = -d'.  (PR/382)
967 Bugs fixed in 1.7.2:
968 * Fix installation and uninstallation of Info files built in subdirectories.
969 * Do not run `./configure --with-included-gettext' during `make distcheck'
970   if AM_GNU_GETTEXT([external]) is used.
971 * Correctly uninstall renamed man pages.
972 * Do not strip escaped newline in variables defined in one condition
973   and augmented in another condition.
974 * Fix ansi2knr rules for LIBOBJS sources.
975 * Clean all known Texinfo index files, not only those which appear to
976   be used, because we cannot know wich indexes are used in included files.
977   (PR/375, Debian Bug #168671)
978 * Honor only the first @setfilename seen in a Texinfo file.
979 * Treat "required file X not found" diagnostics as errors (exit status 1).
980 * Don't complain that a required file is not found when it is a Makefile
981   target. (PR/357)
982 * Don't use single suffix inference rules when building `.info'-less
983   Info files, for the sake of Solaris make.
984 * The `check' target now depends on `$(BUILT_SOURCES)'. (PR/359)
985 * Recognize multiple inference rules such as `.a.b .c.d:'. (PR/371)
986 * Warn about multiple inference rules when -Wportability is used. (PR/372)
987 * Fix building of deansified files from subdirectories. (PR/370)
988 * Add missing `fi' in the .c->.obj rules.
989 * Improve install-sh to work even when names contain spaces or certain
990   (but not all) shell metachars.
991 * Fix the following spurious failures in the test suite:
992   depcomp2.test, gnits2.test, gnits3.test, python3.test, texinfo13.test
993 * Noteworthy manual updates:
994   - Augment the section about BUILT_SOURCES.
995   - Mention that AM_PROG_CC_STDC is a relic that is better avoided today.
997 Bugs fixed in 1.7.1:
998 * Honor `ansi2knr' for files built in subdirectories, or using per-targets
999   flags.
1000 * Aclocal should now recognize macro names containing parentheses, e.g.
1001   AC_DEFUN([AC_LANG_PREPROC(Fortran 90)], [...]).
1002 * Erase *.sum and *.log files created by DejaGnu, during `make distclean'.
1003   (Debian Bug#153697)
1004 * Install Python files even if they were built.  (PR/369)
1005 * Have stamp-vti dependent upon configure instead of configure.ac, as the
1006   version might not be defined in the latter. (PR/358)
1007 * Reorder arguments passed to a couple of commands, so things works
1008   when POSIXLY_CORRECT=1.
1009 * Fix a regex that can cause Perl to segfault on large input.
1010   (Debian Bug#162583)
1011 * Fix distribution of packages that have some sources defined conditionally,
1012   as in the `Conditional compilation using Automake conditionals' example
1013   of the manual.
1014 * Fix spurious test suite failures on IRIX.
1015 * Don't report a required variable as undefined if it has been
1016   defined conditionally for the "right" conditions.
1017 * Fix cleaning of the /tmp subdirectory used by `make distcheck', in case
1018   `make distcheck' fails.
1019 * Fix distribution of included Makefile fragment, so we don't create
1020   spurious directories in the distribution. (PR/366)
1021 * Don't complain that a target lacks `.$(EXEEXT)' when it has it.
1023 New in 1.7:
1024 * Autoconf 2.54 is required.
1025 * `aclocal' and `automake' will no longer warn about obsolete
1026   configure macros.  This is done by `autoconf -Wobsolete'.
1027 * AM_CONFIG_HEADER, AM_SYS_POSIX_TERMIOS and
1028   AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL are obsolete (although still
1029   supported).  You should use AC_CONFIG_HEADERS, AC_SYS_POSIX_TERMIOS,
1030   and AC_HEADER_TIOCGWINSZ instead.  `autoupdate' can upgrade
1031   `configure.ac' for you.
1032 * Support for per-program and per-library `_CPPFLAGS'.
1033 * New `ctags' target (builds CTAGS files).
1034 * Support for -Wmumble and -Wno-mumble, where mumble is a warning category
1035   (see `automake --help' or the manual for a list of them).
1036 * Honor the WARNINGS environment variable.
1037 * Omit the call to depcomp when using gcc3: call the compiler directly.
1038 * A new option, std-options, tests that programs support --help and --version
1039   when `make installcheck' is run.  This is enabled by --gnits.
1040 * Texinfo rules now support the `ps' and `pdf' targets.
1041 * Info files are now created in the build directory, not the source directory.
1042 * info_TEXINFOS supports files in subdirectories (this requires Texinfo 4.1
1043   or greater).
1044 * `make distcheck' will enforce DESTDIR support by attempting
1045   a DESTDIR install.
1046 * `+=' can be used in conditionals, even if the augmented variable
1047   was defined for another condition.
1048 * Makefile fragments (inserted with `include') are always distributed.
1049 * Use Autoconf's --trace interface to inspect configure.ac and get
1050   a more accurate view of it.
1051 * Add support for extending aclocal's default macro search path
1052   using a `dirlist' file within the aclocal directory.
1053 * automake --output-dir is deprecated.
1054 * The part of the distcheck target that checks whether uninstall actually
1055   removes all installed files has been moved in a separate target,
1056   distuninstallcheck, so it can be overridden easily.
1057 * Many bug fixes.
1059 New in 1.6.3:
1060 * Support for AM_INIT_GETTEXT([external])
1061 * Bug fixes, including:
1062   - Fix Automake's own `make install' so it works even if `ln' doesn't.
1063   - nobase_ programs and scripts honor --program-transform correctly.
1064   - Erase configure.lineno during `make distclean'.
1065   - Erase YACC and LEX outputs during `make maintainer-clean'.
1067 New in 1.6.2:
1068 * Many bug fixes, including:
1069   - Requiring the current version works.
1070   - Fix "$@" portability issues (for Zsh).
1071   - Fix output of dummy dependency files in presence of post-processed
1072     Makefile.in's.
1073   - Don't compute dependencies in background to avoid races with libtool.
1074   - Fix handling of _OBJECTS variables for targets sharing source variables.
1075   - Check dependency mode for Java when AM_PROG_GCJ is used.
1077 New in 1.6.1:
1078 * automake --output-dir is deprecated
1079 * Many bug fixes, including:
1080   - Don't choke on AM_LDFLAGS definitions.
1081   - Clean libtool objects from subdirectories.
1082   - Allow configure variables with reserved suffix and unknown prefix
1083     (e.g. AC_SUBST(mumble_LDFLAGS) when 'mumble' is not a target).
1084   - Fix the definition of AUTOMAKE and ACLOCAL in configure.
1086 New in 1.6:
1087 * Autoconf 2.52 is required.
1088 * automake no longer run libtoolize.
1089   This is the job of autoreconf (from GNU Autoconf).
1090 * `dist' generates all the archive flavors, as did `dist-all'.
1091 * `dist-gzip' generates the Gzip tar file only.
1092 * Combining Automake Makefile conditionals no longer lead to a combinatorial
1093   explosion.  Makefile.in's keep a reasonable size.
1094 * AM_FUNC_ERROR_AT_LINE, AM_FUNC_STRTOD, AM_FUNC_OBSTACK, AM_PTRDIFF_T
1095   are no longer shipped, since Autoconf 2.52 provides them (both as AM_
1096   and AC_).
1097 * `#line' of Lex and Yacc files are properly set.
1098 * EXTRA_DIST can contain generated directories.
1099 * Support for dot-less extensions in suffix rules.
1100 * The part of the distcheck target that checks whether distclean actually
1101   cleans all built files has been moved in a separate target, distcleancheck,
1102   so it can be overridden easily.
1103 * `make distcheck' will pass additional options defined in
1104   $(DISTCHECK_CONFIGURE_FLAGS) to configure.
1105 * Fixed CDPATH portability problems, in particular for MacOS X.
1106 * Fixed handling of nobase_ targets.
1107 * Fixed support of implicit rules leading to .lo objects.
1108 * Fixed late inclusion of --add-missing files (e.g. depcomp) in DIST_COMMON
1109 * Added uninstall-hook target
1110 * `AC_INIT AM_INIT_AUTOMAKE(tarname,version)' is an obsolete construct.
1111   You can now use `AC_INIT(pkgname,version) AM_INIT_AUTOMAKE' instead.
1112   (Note that "pkgname" is not "tarname", see the manual for details.)
1113   It is also possible to pass a list of global Automake options as
1114   first argument to this new form of AM_INIT_AUTOMAKE.
1115 * Compiler-based assembler is now called `CCAS'; people expected `AS'
1116   to be a real assembler.
1117 * AM_INIT_AUTOMAKE will set STRIP itself when it needs it.  Adding
1118   AC_CHECK_TOOL([STRIP], [strip]) manually is no longer required.
1119 * aclocal and automake are also installed with the version number
1120   appended, and some of the install directory names have changed.
1121   This lets you have multiple versions installed simultaneously.
1122 * Support for parsers and lexers in subdirectories.
1124 New in 1.5:
1125 * Support for `configure.ac'.
1126 * Support for `else COND', `endif COND' and negated conditions `!COND'.
1127 * `make dist-all' is much faster.
1128 * Allows '@' AC_SUBSTs in macro names.
1129 * Faster AM_INIT_AUTOMAKE (requires update of `missing' script)
1130 * User-side dependency tracking.  Developers no longer need GNU make
1131 * Python support
1132 * Uses DIST_SUBDIRS in some situations when SUBDIRS is conditional
1133 * Most files are correctly handled if they appear in subdirs
1134   For instance, a _DATA file can appear in a subdir
1135 * GNU tar is no longer required for `make dist'
1136 * Added support for `dist_' and `nodist_' prefixes
1137 * Added support for `nobase_' prefix
1138 * Compiled Java support
1139 * Support for per-executable and per-library compilation flags
1140 * Many bug fixes
1142 New in 1.4:
1143 * Added support for the Fortran 77 programming language.
1144 * Re-indexed the Automake Texinfo manual.
1145 * Added `AM_FOOFLAGS' variable for each compiler invocation;
1146   e.g. AM_CFLAGS can be used in Makefile.am to set C compiler flags
1147 * Support for latest autoconf, including support for objext
1148 * Can now put `.' in SUBDIRS to control build order
1149 * `include' command and `+=' support for macro assignment
1150 * Dependency tracking no long susceptible to deleted header file problem
1151 * Maintainer mode now a conditional.  @MAINT@ is now an anachronism.
1152 * Bug fixes
1154 New in 1.3:
1155 * Bug fixes
1156 * Better Cygwin32 support
1157 * Support for suffix rules with _SOURCES variables
1158 * New options `readme-alpha' and `check-news'; Gnits mode sets these
1159 * @LEXLIB@ no longer required when lex source seen
1160   Lex support in `missing', and new lex macro.  Update your missing script.
1161 * Built-in support for assembly
1162 * aclocal gives error if `AM_' macro not found
1163 * Passed YFLAGS, not YACCFLAGS, to yacc
1164 * AM_PROG_CC_STDC does not have to come before AC_PROG_CPP
1165 * Dependencies computed as a side effect of compilation
1166 * Preliminary support for Java
1167 * DESTDIR support at "make install" time
1168 * Improved ansi2knr support; you must use the latest ansi2knr.c (included)
1170 New in 1.2:
1171 * Bug fixes
1172 * Better DejaGnu support
1173 * Added no-installinfo option
1174 * Added Emacs Lisp support
1175 * Added --no-force option
1176 * Included `aclocal' program
1177 * Automake will now generate rules to regenerate aclocal.m4, if appropriate
1178 * Now uses `AM_' macro names everywhere
1179 * ansi2knr option can have directory prefix (eg `../lib/ansi2knr')
1180   ansi2knr now works correctly on K&R sources
1181 * Better C++, yacc, lex support
1182 * Will compute _DEPENDENCIES variables automatically if not supplied
1183 * Will interpolate $(...) and ${...} when examining contents of a variable
1184 * .deps files now in build directory, not source directory; dependency
1185   handling generally rewritten
1186 * DATA, MANS and BUILT_SOURCES no longer included in distribution
1187 * can now put config.h into a subdir
1188 * Added dist-all target
1189 * Support for install-info program (see texinfo 3.9)
1190 * Support for "yacc -d"
1191 * configure substitutions are automatically discovered and included
1192   in generated Makefile.in
1193 * Special --cygnus mode
1194 * OMIT_DEPENDENCIES can now hold list of dependencies to be omitted
1195   when making distribution.  Some dependencies are auto-ignored.
1196 * Changed how libraries are specified in _LIBRARIES variable
1197 * Full libtool support, from Gord Matzigkeit
1198 * No longer have to explicitly touch stamp-h when using AC_CONFIG_HEADER;
1199   AM_CONFIG_HEADER handles it automatically
1200 * Texinfo output files no longer need .info extension
1201 * Added `missing' support
1202 * Cygwin32 support
1203 * Conditionals in Makefile.am, from Ian Taylor
1205 New in 1.0:
1206 * Bug fixes
1207 * distcheck target runs install and installcheck targets
1208 * Added preliminary support for DejaGnu.
1210 New in 0.33:
1211 * More bug fixes
1212 * More checking
1213 * More libtool fixes from Gord Matzigkeit; libtool support is still
1214   preliminary however
1215 * Added support for jm_MAINTAINER_MODE
1216 * dist-zip support
1217 * New "distcheck" target
1219 New in 0.32:
1220 * Many bug fixes
1221 * mkinstalldirs and mdate-sh now appear in directory specified by
1222   AC_CONFIG_AUX_DIR.
1223 * Removed DIST_SUBDIRS, DIST_OTHER
1224 * AC_ARG_PROGRAM only required when an actual program exists
1225 * dist-hook target now run before distribution packaged up; idea from
1226   Dieter Baron.  Other hooks exist, too.
1227 * Preliminary (unfinished) support for libtool
1228 * Added short option names.
1229 * Better "dist" support when gluing together multiple packages
1231 New in 0.31:
1232 * Bug fixes
1233 * Documentation updates (many from François Pinard)
1234 * strictness `normal' now renamed to `foreign'
1235 * Renamed --install-missing to --add-missing
1236 * Now handles AC_CONFIG_AUX_DIR
1237 * Now handles TESTS macro
1238 * DIST_OTHER renamed to EXTRA_DIST
1239 * DIST_SUBDIRS is deprecated
1240 * @ALLOCA@ and @LIBOBJS@ now work in _LDADD variables
1241 * Better error messages in many cases
1242 * Program names are canonicalized
1243 * Added "check" prefix; from Gord Matzigkeit
1245 New in 0.30:
1246 * Bug fixes
1247 * configure.in scanner knows about AC_PATH_XTRA, AC_OUTPUT ":" syntax
1248 * Beginnings of a test suite
1249 * Automatically adds -I options for $(srcdir), ".", and path to config.h
1250 * Doesn't print anything when running
1251 * Beginnings of MAINT_CHARSET support
1252 * Can specify version in AUTOMAKE_OPTIONS
1253 * Most errors recognizable by Emacs' M-x next-error
1254 * Added --verbose option
1255 * All "primary" variables now obsolete; use EXTRA_PRIMARY to supply
1256   configure-generated names
1257 * Required macros now distributed in aclocal.m4
1258 * New documentation
1259 * --strictness=gnu is default
1261 New in 0.29:
1262 * Many bug fixes
1263 * More sophisticated configure.in scanning; now understands ALLOCA and
1264   LIBOBJS directly, handles AC_CONFIG_HEADER more precisely, etc.
1265 * TEXINFOS and MANS now obsolete; use info_TEXINFOS and man_MANS instead.
1266 * CONFIG_HEADER variable now obsolete
1267 * Can handle multiple Texinfo sources
1268 * Allow hierarchies deeper than 2.  From Gord Matzigkeit.
1269 * HEADERS variable no longer needed; now can put .h files directly into
1270   foo_SOURCES variable.
1271 * Automake automatically rebuilds files listed in AC_OUTPUT.  The
1272   corresponding ".in" files are included in the distribution.
1274 New in 0.28:
1275 * Added --gnu and --gnits options
1276 * More standards checking
1277 * Bug fixes
1278 * Cleaned up 'dist' targets
1279 * Added AUTOMAKE_OPTIONS variable and several options
1280 * Now scans configure.in to get some information (preliminary)
1282 New in 0.27:
1283 * Works with Perl 4 again
1285 New in 0.26:
1286 * Added --install-missing option.
1287 * Pretty-prints generated macros and rules
1288 * Comments in Makefile.am are placed more intelligently in Makefile.in
1289 * Generates .PHONY target
1290 * Rule or macro in Makefile.am now overrides contents of Automake file
1291 * Substantial cleanups from François Pinard
1293 New in 0.25:
1294 * Bug fixes.
1295 * Works with Perl 4 again.
1297 New in 0.24:
1298 * New uniform naming scheme.
1299 * --strictness option
1300 * Works with Perl 5
1301 * '.c' files corresponding to '.y' or '.l' files are automatically
1302   distributed.
1303 * Many bug fixes and cleanups
1305 New in 0.23:
1306 * Allow objects to be conditionally included in libraries via lib_LIBADD.
1308 New in 0.22:
1309 * Bug fixes in 'clean' code.
1310 * Now generates 'installdirs' target.
1311 * man page installation reworked.
1312 * 'make dist' no longer re-creates all Makefile.in's.
1314 New in 0.21:
1315 * Reimplemented in Perl
1316 * Added --amdir option (for debugging)
1317 * Texinfo support cleaned up.
1318 * Automatic de-ANSI-fication cleaned up.
1319 * Cleaned up 'clean' targets.
1321 New in 0.20:
1322 * Automatic dependency tracking
1323 * More documentation
1324 * New variables DATA and PACKAGEDATA
1325 * SCRIPTS installed using $(INSTALL_SCRIPT)
1326 * No longer uses double-colon rules
1327 * Bug fixes
1328 * Changes in advance of internationalization
1330 -----
1332 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
1333 2004, 2005, 2006, 2007  Free Software Foundation, Inc.
1335 This program is free software; you can redistribute it and/or modify
1336 it under the terms of the GNU General Public License as published by
1337 the Free Software Foundation; either version 3, or (at your option)
1338 any later version.
1340 This program is distributed in the hope that it will be useful,
1341 but WITHOUT ANY WARRANTY; without even the implied warranty of
1342 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1343 GNU General Public License for more details.
1345 You should have received a copy of the GNU General Public License
1346 along with this program.  If not, see <http://www.gnu.org/licenses/>.