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