Sync auxiliary files from upstream.
[automake.git] / NEWS
blob0389cca5c614b5f2a2ace71c0edccbf383b6c4d5
1 New in 1.10c:
3 * Languages changes:
5   - There is initial support for the Vala programming language, when using
6     Vala 0.7.0 or later.
8   - AM_PATH_PYTHON honors python's idea about the site directory.
10 * Miscellaneous Changes:
12   - In 1.10b, the `parallel-tests' driver introduced per-extension test
13     driver variables `<EXT>_LOG_COMPILER', defined as
15       $(<EXT>_LOG_COMPILE) $(AM_<EXT>_LOG_FLAGS) $(<EXT>_LOG_FLAGS)
17     for extensions `.ext' registered in `TEST_EXTENSIONS'.  Now, for tests
18     without a known extension, add `LOG_COMPILER', defined as
20       $(LOG_COMPILE) $(AM_LOG_FLAGS) $(LOG_FLAGS)
22     to the rules.
24   - The new `parallel-tests' targets `recheck' and `recheck-html' will not run
25     any tests that have not run yet.
27   - The `silent-rules' mode introduces a configure-time `--enable-silent-rules'
28     option to specify the default build verbosity; it can still be overridden
29     with an explicit `make V=[0|1]'.  The configure switch necessitated to
30     remove the automake command-line switch `--silent-rules' and per-Makefile.am
31     settings `AUTOMAKE_OPTIONS = silent-rules', so the feature needs to be
32     enabled in configure.ac now, either by adding the `silent-rules' option
33     to `AM_INIT_AUTOMAKE', or by calling the new `AM_SILENT_RULES' macro.
35 Bugs fixed in 1.10c:
37 * Long standing bugs:
39   - Texinfo dvi, ps, pdf, and html output files are not removed upon
40     `make mostlyclean' any more; only the LaTeX by-products are.
42   - Renamed objects also work with the `subdir-objects' option and
43     source file languages which Automake does not know itself.
45   - `automake' now correctly complains about variable assignments which are
46     preceded by a comment, extend over multiple lines with backslash-escaped
47     newlines, and end in a comment sign.  Previous versions would silently
48     and wrongly ignore such assignments completely.
50 * Bugs introduced by 1.10:
52   - The `parallel-tests' driver also works on systems with a nonempty
53     executable extension, such as Windows.
56 New in 1.10b:
58 * Version requirements:
60   - Autoconf 2.62 or greater is required.
62 * Changes to aclocal:
64   - The autoconf version check implemented by aclocal in aclocal.m4
65     (and new in Automake 1.10) is degraded to a warning.  This helps
66     in the common case where the Autoconf versions used are compatible.
68 * Changes to automake:
70   - The automake program can run multiple threads for creating most
71     Makefile.in files concurrently, if at least Perl 5.7.2 is available
72     with interpreter-based threads enabled.  Set the environment variable
73     AUTOMAKE_JOBS to the maximum number of threads to use, in order to
74     enable this experimental feature.
76 * Changes to Libtool support:
78   - Libtool generic flags are now passed to the install and uninstall
79     modes as well.
81   - distcheck works with Libtool 2.x even when LT_OUTPUT is used, as
82     config.lt is removed correctly now.
84 * Languages changes:
86   - subdir-object mode works now with Fortran (F77, FC, preprocessed
87     Fortran, and Ratfor).
89   - For files with extension .f90, .f95, .f03, or .f08, the flag
90     $(FCFLAGS_f[09]x) computed by AC_FC_SRCEXT is now used in compile rules.
92   - Files with extension .sx are also treated as preprocessed assembler.
94   - Python 3.0 is supported now, Python releases prior to 2.0 are no
95     longer supported.
97   - The default source file extension (.c) can be overridden with
98     AM_DEFAULT_SOURCE_EXT now.
100 * Miscellaneous changes:
102   - Automake development is done in a git repository on Savannah now, see
104       http://git.sv.gnu.org/gitweb/?p=automake.git
106     A read-only CVS mirror is provided at
108       cvs -d :pserver:anonymous@pserver.git.sv.gnu.org:/automake.git \
109           checkout -d automake HEAD
111   - "make dist" can now create xz-compressed tarballs,
112     as well as (deprecated?) lzma-compressed tarballs.
114   - Automake is licensed under GPLv3+.  `automake --add-missing' will
115     by default install the GPLv3 file as COPYING if it is missing.
116     It will also warn that the license file should be added to source
117     control.  Note that Automake will never overwrite an existing COPYING
118     file, even when the `--force-missing' option is used.
120   - The manual is now distributed under the terms of the GNU FDL 1.3.
122   - Automake ships and installs man pages for automake and aclocal now.
124   - New shorthand `$(pkglibexecdir)' for `$(libexecdir)/@PACKAGE@'.
126   - install-sh supports -C, which does not update the installed file
127     (and its time stamps) if the contents did not change.
129   - The `gnupload' script has been revamped.
131   - The `depcomp' and `compile' scripts now work with MSVC under MSYS.
133   - The targets `install' and `uninstall' are more efficient now, in that
134     for example multiple files from one Automake variable such as
135     `bin_SCRIPTS' are copied in one `install' (or `libtool --mode=install')
136     invocation if they do not have to be renamed.
138     Both install and uninstall may sometimes enter (`cd' into) the target
139     installation directory now, when no build-local scripts are used.
141     Both install and uninstall do not fail anymore but do nothing if an
142     installation directory variable like `bindir' is set to the empty string.
144     For built-in rules, `make install' now fails reliably if installation
145     of a file failed.  Conversely, `make uninstall' even succeeds when
146     issued multiple times.
148     These changes may need some adjustments from users:  For example,
149     some `install' programs refuse to install multiple copies of the
150     same file in one invocation, so you may need to remove duplicate
151     entries from file lists.
153     Also, within one set of files, say, nobase_data_DATA, the order of
154     installation may be changed, or even unstable among different hosts,
155     due to the use of associative arrays in awk.  The increased use of
156     awk matches a similar move in Autoconf to provide for better scaling.
158     Further, most undocumented per-rule install command variables such as
159     binSCRIPT_INSTALL have been removed because they are not needed any
160     more.  Packages which use them should be using the appropriate one of
161     INSTALL_{DATA,PROGRAM,SCRIPT} or their install_sh_{DATA,PROGRAM,SCRIPT}
162     counterpart, depending on the type of files and the need for automatic
163     target directory creation.
165   - The "deleted header file problem" for *.m4 files is avoided by
166     stub rules.  This allows `make' to trigger a rerun of `aclocal'
167     also if some previously needed macro file has been removed.
169   - Rebuild rules now also work for a removed `subdir/Makefile.in' in
170     an otherwise up to date tree.
172   - The `color-tests' option causes colored test result output on terminals.
174   - The `parallel-tests' option enables a new test driver that allows for
175     parallel test execution, inter-test dependencies, lazy test execution
176     for unit-testing, and formatted result output as RST (reStructuredText)
177     and HTML.  Enabling this option may require some changes to your test
178     suite setup; see the manual for details.
180   - The `silent-rules' option enables Linux kernel-style silent build output.
181     This option requires the widely supported but non-POSIX `make' feature
182     of recursive variable expansion, so do not use it if your package needs
183     to build with `make' implementations that do not support it.
184     Besides the normal option setting methods, it can also be enabled
185     globally by the new automake option `--silent-rules'.
187   - New prefix `notrans_' for manpages which should not be transformed
188     by --program-transform.
190   - New macro AM_COND_IF for conditional evaluation and conditional
191     config files.
193   - For AC_CONFIG_LINKS, if source and destination are equal, do not
194     remove the file in a non-VPATH build.  Such setups work with Autoconf
195     2.62 or newer.
197   - AM_MAINTAINER_MODE now allows for an optional argument specifying
198     the default setting.
200   - AM_SUBST_NOTMAKE may prevent substitution of AC_SUBSTed variables,
201     useful especially for multi-line values.
203   - Automake's early configure-time sanity check now diagnoses an
204     unsafe absolute source directory name and makes configure fail.
206   - The Automake macros and rules cope better with whitespace in the
207     current directory name, as long as the relative path to `configure'
208     does not contain whitespace.  To this end, the values of `$(MISSING)'
209     and `$(install_sh)' may contain suitable quoting, and their expansion
210     might need `eval'uation if used outside of a makefile.  These
211     undocumented variables may be used in several documented macros such
212     as $(AUTOCONF) or $(MAKEINFO).
214 Bugs fixed in 1.10b:
216 * Long standing bugs:
218   - Fix aix dependency tracking for libtool objects.
220   - Work around AIX sh quoting issue in AC_PROG_CC_C_O, leading to
221     unnecessary use of the `compile' script.
223   - For nobase_*_LTLIBRARIES with nonempty directory components, the
224     correct `-rpath' argument is used now.
226   - `config.status --file=Makefile depfiles' now also works with the
227     extra quoting used internally by Autoconf 2.62 and newer
228     (it used to work only without the `--file=' bit).
230   - The `missing' script works better with versioned tool names.
232   - Semantics for `missing help2man' have been revamped:
234     Previously, if `help2man' was not present, `missing help2man' would have
235     the following semantics: if some man page was out of date but present, then
236     a warning would be printed, but the exit status was 0.  If the man page was
237     not present at all, then `missing' would create a replacement man page
238     containing an error message, and exit with a status of 2.  This does not play
239     well with `make': the next run will see this particular man page as being up
240     to date, and will only error out on the next generated man page, if any;
241     repeat until all pages are done.  This was not desirable.
243     These are the new semantics: if some man page is not present, and help2man
244     is not either, then `missing' will warn and generate the replacement page
245     containing the error message, but exit successfully.  However, `make dist'
246     will ensure that no such bogus man pages are packaged into a tarball.
248   - Targets provided by automake behave better with `make -n', in that they
249     take care not to create files.
251   - `config.status Makefile... depfiles' works fine again in the presence of
252     disabled dependency tracking.
254   - The default no-op recursive rules for these targets also work with BSD make
255     now: html, install-html, install-dvi, install-pdf, install-pdf, install-info.
257   - `make distcheck' works also when both a directory and some file below it
258     have been added to a distribution variable, such as EXTRA_DIST or *_SOURCES.
260 * Bugs introduced by 1.10:
262   - Fix output of dummy dependency files in presence of post-processed
263     Makefile.in's again, but also cope with long lines.
265   - $(EXEEXT) is automatically appended to filenames of XFAIL_TESTS
266     that have been declared as programs in the same Makefile.
267     This is for consistency with the analogous change to TESTS in 1.10.
269   - Fix order of standard includes to again be `-I. -I$(srcdir)',
270     followed by directories containing config headers.
272 New in 1.10:
274 * Version requirements:
276   - Autoconf 2.60 or greater is required.
278   - Perl 5.6 or greater is required.
280 * Changes to aclocal:
282   - aclocal now also supports -Wmumble and -Wno-mumble options.
284   - `dirlist' entries (for the aclocal search path) may use shell
285     wildcards such as `*', `?', or `[...]'.
287   - aclocal supports an --install option that will cause system-wide
288     third-party macros to be installed in the local directory
289     specified with the first -I flag.  This option also uses #serial
290     lines in M4 files to upgrade local macros.
292     The new aclocal options --dry-run and --diff help to review changes
293     before they are installed.
295   - aclocal now outputs an autoconf version check in aclocal.m4 in
296     projects using automake.
298     For a few years, automake and aclocal have been calling autoconf
299     (or its underlying engine autom4te) to accurately retrieve the
300     data they need from configure.ac and its siblings.  Doing so can
301     only work if all autotools use the same version of autoconf.  For
302     instance a Makefile.in generated by automake for one version of
303     autoconf may stop working if configure is regenerated with another
304     version of autoconf, and vice versa.
306     This new version check ensures that the whole build system has
307     been generated using the same autoconf version.
309 * Support for new Autoconf macros:
311   - The new AC_REQUIRE_AUX_FILE Autoconf macro is supported.
313   - If `subdir-objects' is set, and AC_CONFIG_LIBOBJ_DIR is specified,
314     $(LIBOBJS), $(LTLIBOBJS), $(ALLOCA), and $(LTALLOCA) can be used
315     in different directories.  However, only one instance of such a
316     library objects directory is supported.
318 * Change to Libtool support:
320   - Libtool generic flags (those that go before the --mode=MODE option)
321     can be specified using AM_LIBTOOLFLAGS and target_LIBTOOLFLAGS.
323 * Yacc and Lex changes:
325   - The rebuild rules for distributed Yacc and Lex output will avoid
326     overwriting existing files if AM_MAINTAINER_MODE and maintainer-mode
327     is not enabled.
329   - ylwrap is now always used for lex and yacc source files,
330     regardless of whether there is more than one source per directory.
332 * Languages changes:
334   - Preprocessed assembler (*.S) compilation now honors CPPFLAGS,
335     AM_CPPFLAGS and per-target _CPPFLAGS, and supports dependency
336     tracking, unlike non-preprocessed assembler (*.s).
338   - subdir-object mode works now with Assembler.  Automake assumes
339     that the compiler understands `-c -o'.
341   - Preprocessed assembler (*.S) compilation now also honors
342     $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES).
344   - Improved support for Objective C:
345     - Autoconf's new AC_PROG_OBJC will enable automatic dependency tracking.
346     - A new section of the manual documents the support.
348   - New support for Unified Parallel C:
349     - AM_PROG_UPC looks for a UPC compiler.
350     - A new section of the manual documents the support.
352   - Per-target flags are now correctly handled in link rules.
354     For instance maude_CFLAGS correctly overrides AM_CFLAGS; likewise
355     for maude_LDFLAGS and AM_LDFLAGS.  Previous versions bogusly
356     preferred AM_CFLAGS over maude_CFLAGS while linking, and they
357     used both AM_LDFLAGS and maude_LDFLAGS on the same link command.
359     The fix for compiler flags (i.e., using maude_CFLAGS instead of
360     AM_CFLAGS) should not hurt any package since that is how _CFLAGS
361     is expected to work (and actually works during compilation).
363     However using maude_LDFLAGS "instead of" AM_LDFLAGS rather than
364     "in addition to" breaks backward compatibility with older versions.
365     If your package used both variables, as in
367       AM_LDFLAGS = common flags
368       bin_PROGRAMS = a b c
369       a_LDFLAGS = more flags
370       ...
372     and assumed *_LDFLAGS would sum up, you should rewrite it as
374       AM_LDFLAGS = common flags
375       bin_PROGRAMS = a b c
376       a_LDFLAGS = $(AM_LDFLAGS) more flags
377       ...
379     This new behavior of *_LDFLAGS is more coherent with other
380     per-target variables, and the way *_LDFLAGS variables were
381     considered internally.
383 * New installation targets:
385   - New targets mandated by GNU Coding Standards:
386       install-dvi
387       install-html
388       install-ps
389       install-pdf
390     By default they will only install Texinfo manuals.
391     You can customize them with *-local variants:
392       install-dvi-local
393       install-html-local
394       install-ps-local
395       install-pdf-local
397   - The undocumented recursive target `uninstall-info' no longer exists.
398     (`uninstall' is in charge of removing all possible documentation
399     flavors, including optional formats such as dvi, ps, or info even
400     when `no-installinfo' is used.)
402 * Miscellaneous changes:
404   - Automake no longer complains if input files for AC_CONFIG_FILES
405     are specified using shell variables.
407   - clean, distribution, or rebuild rules are normally disabled for
408     inputs and outputs of AC_CONFIG_FILES, AC_CONFIG_HEADERS, and
409     AC_CONFIG_LINK specified using shell variables.  However, if these
410     variables are used as ${VAR}, and AC_SUBSTed, then Automake will
411     be able to output rules anyway.
412     (See the Automake documentation for AC_CONFIG_FILES.)
414   - $(EXEEXT) is automatically appended to filenames of TESTS
415     that have been declared as programs in the same Makefile.
416     This is mostly useful when some check_PROGRAMS are listed in TESTS.
418   - `-Wportability' has finally been turned on by default for `gnu' and
419     `gnits' strictness.  This means, automake will complain about %-rules
420     or $(GNU Make functions) unless you switch to `foreign' strictness or
421     use `-Wno-portability'.
423   - Automake now uses AC_PROG_MKDIR_P (new in Autoconf 2.60), and uses
424     $(MKDIR_P) instead of $(mkdir_p) to create directories.  The
425     $(mkdir_p) variable is still defined (to the same value as
426     $(MKDIR_P)) but should be considered obsolete.  If you are using
427     $(mkdir_p) in some of your rules, please plan to update them to
428     $(MKDIR_P) at some point.
430   - AM_C_PROTOTYPES and ansi2knr are now documented as being obsolete.
431     They still work in this release, but may be withdrawn in a future one.
433   - Inline compilation rules for gcc3-style dependency tracking are
434     more readable.
436   - Automake installs a "Hello World!" example package in $(docdir).
437     This example is used throughout the new "Autotools Introduction"
438     chapter of the manual.
440 New in 1.9:
442 * Makefile.in bloat reduction:
444   - Inference rules are used to compile sources in subdirectories when
445     the `subdir-objects' option is used and no per-target flags are
446     used.  This should reduce the size of some projects a lot, because
447     Automake used to output an explicit rule for each such object in
448     the past.
450   - Automake no longer outputs three rules (.o, .obj, .lo) for each
451     object that must be built with explicit rules.  It just outputs
452     the rules required to build the kind of object considered: either
453     the two .o and .obj rules for usual objects, or the .lo rule for
454     libtool objects.
456 * Change to Libtool support:
458   - Libtool tags are used with libtool versions that support them.
459     (I.e., with Libtool 1.5 or greater.)
461   - Automake is now able to handle setups where a libtool library is
462     conditionally installed in different directories, as in
464       if COND
465         lib_LTLIBRARIES = liba.la
466       else
467         pkglib_LTLIBRARIES = liba.la
468       endif
469       liba_la_SOURCES = ...
471 * Changes to aclocal:
473   - aclocal now ensures that AC_DEFUNs and AU_DEFUNs it discovers are
474     really evaluated, before it decides to include them in aclocal.m4.
475     This solves nasty problems with conditional redefinitions of
476     Autoconf macros in /usr/share/aclocal/*.m4 files causing extraneous
477     *.m4 files to be included in any project using these macros.
478     (Calls to AC_PROG_EGREP causing libtool.m4 to be included is the
479     most famous instance of this bug.)
481   - Do not complain about missing conditionally AC_REQUIREd macros
482     that are not actually used.  In 1.8.x aclocal would correctly
483     determine which of these macros were really needed (and include
484     only these in the package); unfortunately it would also require
485     all of them to be present in order to run.  This created
486     situations were aclocal would not work on a tarball distributing
487     all the macros it uses.  For instance running aclocal on a project
488     containing only the subset of the Gettext macros in use by the
489     project did not work, because gettext conditionally requires other
490     macros.
492 * Portability improvements:
494   - Tar format can be chosen with the new options tar-v7, tar-ustar, and
495     tar-pax.  The new option filename-length-max=99 helps diagnosing
496     filenames that are too long for tar-v7.  (PR/414)
498   - Variables aumented with `+=' are now automatically flattened (i.e.,
499     trailing backslashes removed) and then wrapped around 80 colummns
500     (adding trailing backslashes).  In previous versions, a long series
501     of
502       VAR += value1
503       VAR += value2
504       VAR += value3
505       ...
506     would result in a single-line definition of VAR that could possibly
507     exceed the maximum line length of some make implementations.
509     Non-augmented variables are still output as they are defined in
510     the Makefile.am.
512 * Miscellaneous:
514   - Support Fortran 90/95 with the new "fc" and "ppfc" languages.
515     Works the same as the old Fortran 77 implementation; just replace
516     F77 with FC everywhere (exception: FFLAGS becomes FCFLAGS).
517     Requires a version of autoconf which provides AC_PROG_FC (>=2.59).
519   - Support for conditional _LISP.
521   - Support for conditional -hook and -local rules (PR/428).
523   - Diagnose AC_CONFIG_AUX_DIR calls following AM_INIT_AUTOMAKE. (PR/49)
525   - Automake will not write any Makefile.ins after the first error it
526     encounters.  The previous Makefile.ins (if any) will be left in
527     place.  (Warnings will not prevent output, but remember they can
528     be turned into errors with -Werror.)
530   - The restriction that SUBDIRS must contain direct children is gone.
531     Do not abuse.
533   - The manual tells more about SUBDIRS vs. DIST_SUBDIRS.
534     It also gives an example of nested packages using AC_CONFIG_SUBDIRS.
536 Bugs fixed in 1.8.5:
538 * Long standing bugs:
540   - Define DIST_SUBDIRS even when the `no-dist' or `cygnus' options are used
541     so that `make distclean' and `make maintainer-clean' can work.
543   - Define AR and ARFLAGS even when only EXTRA_LIBRARIES are defined.
545   - Fix many rules to please FreeBSD make, which runs commands with `sh -e'.
547   - Polish diagnostic when no input file is found.
549 Bugs fixed in 1.8.4:
551 * Long standing bugs:
553   - Fix AM_PATH_PYTHON to correctly display $PYTHON when it has been
554     overridden by the user.
556   - Honor PATH_SEPARATOR in various places of the Automake package, for
557     the sake of OS/2.
559   - Adjust dependency tracking mode detection to ICC 8.0's new output.
560     (PR/416)
562   - Fix install-sh so it can install the `mv' binary... using `mv'.
564   - Fix tru64 dependency tracking for libtool objects.
566   - Work around Exuberant Ctags when creating a TAGS files in a directory
567     without files to scan but with subdirectories to include.
569 * Bugs introduced by 1.8:
571   - Fix an "internal error" when @LIBOBJS@ is used in a variable that is
572     not defined in the same conditions as the _LDADD that uses it.
574   - Do not warn when JAVAROOT is overridden, this is legitimate.
576 Bugs fixed in 1.8.3:
578 * Long standing bugs:
580   - Quote filenames in installation rules, in case $DESTDIR, $prefix,
581     or any of the other *dir variables contain a space.
583     Please note that Automake does not and cannot support spaces in
584     filenames that are involved during the build.  This change affects
585     only installation paths, so that `make install' does not bomb out
586     in packages configured with
587       ./configure --prefix '/c/Program Files'
589   - Fix the depfiles output so it works with GNU sed (<4.1) even when
590     POSIXLY_CORRECT is set.
592   - Do not AC_SUBST(LIBOBJS) in AM_WITH_REGEX.  This macro was unusable
593     since Autoconf 2.54, which defines LIBOBJS itself.
595   - Fix a potential (but unlikely) race condition in parallel elisp
596     builds.  (Introduced in 1.7.3.)
598   - Do not assume that users override _DEPENDENCIES in all conditions
599     where Automake will try to define them.
601   - Do not use `mkdir -p' in mkinstalldirs, unless this is GNU mkdir.
602     Solaris 8's `mkdir -p' is not thread-safe and can break parallel
603     builds.
605     This fix also affects the $(mkdir_p) variable defined since
606     Automake 1.8.  It will be set to `mkdir -p' only if mkdir is GNU
607     mkdir, and to `mkinstalldirs' or `install-sh -d' otherwise.
609   - Secure temporary directory creation in `make distcheck'. (PR/413)
611   - Do not generate two build rules for `parser.h' when the
612     parser appears in two different conditionals.
614   - Work around a Solaris 8 /bin/sh bug in the test for dependency
615     checking.  Usually ./configure will not pick this shell; so this
616     fix only helps cases where the shell is forced to /bin/sh.
618 * Bugs introduced by 1.8:
620   - In some situations (hand-written `m4_include's), aclocal would
621     call the `File::Spec->rel2abs' method, which was only introduced
622     in Perl 5.6.  This new version reestablish support Perl 5.005.
624     It is likely that the next major Automake releases will require at
625     least Perl 5.6.  Consider upgrading your development environment
626     if you are still using the five-year-old Perl 5.005.
628   - Automake would sometimes fail to define rules for targets listed
629     in variables defined in multiple conditions.  For instance on
630       if C1
631         bin_PROGRAMS = a
632       else
633         bin_PROGRAMS = b
634       endif
635     it would define only the `a.$(OBJEXT): a.c' rule and omit the
636     `b.$(OBJEXT): b.c' rule.
638 * New sections in manual:
640   - Third-Party Makefiles: how to interface third party Makefiles.
641   - Upgrading: upgrading packages to newer Automake versions.
642   - Multiple Outputs: handling tools that produce many outputs.
644 Bug fixed in 1.8.2:
646 * A (well known) portability bug slipped in the changes made to
647   install-sh in Automake 1.8.1.  The broken install-sh would refuse to
648   install anything on Tru64.
650 * Fix install rules for conditionally built python files.  (This never
651   really worked.)
653 Bug fixed in 1.8.1:
655 * Bugs introduced by 1.8:
657   - Fix Config.pm import error with old Perl versions (at least
658     5.005_03).  One symptom is that aclocal could not find its macro
659     directory.
661   - Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
662     created by `make install' are always world readable, even if the
663     installer happens to have an overly restrictive umask (e.g. 077).
664     This was a mistake and has been reverted.  There are at least two
665     reasons why we must not use `-m 0755':
666       - it causes special bits like SGID to be ignored,
667       - it may be too restrictive (some setups expect 775 directories).
669   - Fix aclocal to honor definitions located in files which have been
670     m4_included manually.  aclocal 1.8 had been updated to check
671     m4_included files for new requirements, but forgot that these
672     m4_included files can also provide new definitions.
674     Note that if you have such a setup, we recommend you get rid of
675     it.  In the past, there was a reason to m4_include files manually:
676     aclocal used to duplicate entire M4 files into aclocal.m4, even
677     files that were distributed.  Some packages were therefore
678     m4_including the distributed file directly, and playing some
679     tricks to ensure aclocal would not copy that file to aclocal.m4,
680     in order to limit the amount of duplication.  Since aclocal 1.8.x
681     will precisely output m4_includes for local M4 files, we recommend
682     that you clean up your setup, removing all manual m4_includes and
683     letting aclocal output them.
685   - Output detailed menus in the Info version if the Automake manual,
686     so that Emacs can locate the indexes.
688   - configure.ac and configure were listed twice in DIST_COMMON (an
689     internal variable where Automake lists configury files to
690     distribute).  This was harmless, but unaesthetic.
692   - Use `chmod a-w' instead of `chmod -w' as the latter honors umask.
693     This was an issue only in the Automake package itself, not in
694     its output.
696   - Automake assumed that all AC_CONFIG_LINKS arguments had the form
697     DEST:SRC.  This was wrong, as some packages do
698     AC_CONFIG_LINKS($computedlinks).  This version no longer abort in
699     that situation.
701   - Contrary to mkinstalldirs, $(mkdir_p) was expecting exactly one
702     argument.  This caused two kinds of failures:
703       - Rules installing data in a conditionally defined directory
704         failed when that directory was undefined.  In this case no
705         argument was supplied.
706       - `make installdirs' failed, because several directories were
707         passed to $(mkdir_p).  This was an issue only on platform
708         were $(mkdir_p) is implemented with `install-sh -d'.
709     $(mkdir_p) as been changed to accept 0 or more arguments, as
710     mkinstalldirs did.
712 * Long-standing bugs:
714   - Fix an unexpected diagnostic occurring when users attempt
715     to override some internal variables that Automake appends to.
717   - aclocal now scans configure.ac for macro definitions (PR/319).
719   - Fix a portability issue with OSF1/Tru64 Make.  If a directory
720     distributes files which are outside itself (this usually occurs
721     when using AC_CONFIG_AUX_DIR([../dir]) to use auxiliary files
722     from a parent package), then `make distcheck' fails due to an
723     optimization performed by OSF1/Tru64 Make in its VPATH handling.
724     (tests/subpkg2.test failure)
726   - Fix another portability issue with Sun and OSF1/Tru64 Make.
727     In a VPATH-build configuration, `make install' would install
728     nobase_ files to wrong locations.
730   - Fix a Perl `uninitialized value' diagnostic occurring when
731     automake complains that a Texinfo file does not have a
732     @setfilename statement.
734   - Erase config.status.lineno during `make distclean'.  This file
735     can be created by config.status.  Automake already knew about
736     configure.lineno, but forgot config.status.lineno.
738   - Distribute all files, even those which are built and installed
739     conditionally.  This change affects files listed in conditionally
740     defined *_HEADERS and *_PYTHON variable (unless they are nodist_*)
741     as well as those listed in conditionally defined dist_*_DATA,
742     dist_*_JAVA, dist_*_LISP, and dist_*_SCRIPTS variables.
744   - Fix AM_PATH_LISPDIR to avoid \? in sed regular expressions; it
745     doesn't conform to POSIX.
747   - Normalize help strings for configure variables and options added
748     by Automake macros.
750 * Anticipation:
752   - Check for python2.4 in AM_PATH_PYTHON.
754 * Spurious failures in test suite:
756   - tests/libtool5.test, tests/ltcond.test, tests/ltcond2.test,
757     tests/ltconv.test: fix failures with CVS Libtool.
758   - tests/aclocal6.test: fix failure if autom4te.cache is disabled.
759   - tests/txinfo24.test, tests/txinfo25.test, tests/txinfo28.test:
760     fix failures with old Texinfo versions.
762 New in 1.8:
764 * Meta-News
766   - The NEWS file is more verbose.
768 * Requirements
770   - Autoconf 2.58 or greater is required.
772 * New features
774   - Default source file names in the absence of a _SOURCES declaration
775     are made by removing any target extension before appending `.c', so
776     to make the libtool module `foo.la' from `foo.c', you only need to
777     do this:
779         lib_LTLIBRARIES = foo.la
780         foo_la_LDFLAGS  = -module
782     For backward compatibility, foo_la.c will be used instead of
783     foo.c if this file exists or is the explicit target of a rule.
784     However -Wobsolete will warn about this deprecated naming.
786   - AR's `cru' flags are now set in a global ARFLAGS variable instead
787     of being hard-coded in each $(AR) invocation, so they can be
788     substituted from configure.ac.  This has been requested by people
789     dealing with non-POSIX ar implementations.
791   - New warning option: -Woverride.  This will warn about any user
792     target or variable definitions which override Automake
793     definitions.
795   - Texinfo rules back up and restore info files when makeinfo fails.
797   - Texinfo rules now support the `html' target.
798     Running this requires Texinfo 4.0 or greater.
800     `html' is a new recursive target, so if your package mixes
801     hand-crafted `Makefile.in's with Automake-generated
802     `Makefile.in's, you should adjust the former to support (or
803     ignore) this target so that `make html' recurses successfully.  If
804     you had a custom `html' rule in your `Makefile.am', it's better to
805     rename it as `html-local', otherwise your rule will override
806     Automake's new rule (you can check that by running `automake
807     -Woverride') and that will stop the recursion to subdirectories.
809     Last but not least, this `html' rule is declared PHONY, even when
810     overridden.  Fortunately, it appears that few packages use a
811     non-PHONY `html' rule.
813   - Any file which is m4_included from configure.ac will appear as a
814     configure and Makefile.in dependency, and will be automatically
815     distributed.
817   - The rules for rebuilding Makefiles and Makefile.ins will now
818     rebuild all Makefiles and all Makefile.ins at once when one of
819     configure's dependencies has changed.  This is considerably faster
820     than previous implementations, where config.status and automake
821     were run separately in each directory (this still happens when you
822     change a Makefile.am locally, without touching configure.ac or
823     friends).  Doing this also solves a longstanding issue: these
824     rebuild rules failed to work when adding new directories to the
825     tree, forcing you to run automake manually.
827   - For similar reasons, the rules to rebuild configure,
828     config.status, and aclocal.m4 are now defined in all directories.
829     Note that if you were using the CONFIG_STATUS_DEPENDENCIES and
830     CONFIGURE_DEPENDENCIES (formerly undocumented) variables, you
831     should better define them in all directories.  This is easily done
832     using an AC_SUBST (make sure you prefix these dependencies with
833     $(top_srcdir) since this variable will appear at different
834     levels of the build tree).
836   - aclocal will now use `m4_include' instead of copying local m4
837     files into aclocal.m4.  (Local m4 files are those you ship with
838     your project, other files will be copied as usual.)
840     Because m4_included files are automatically distributed, it means
841     for most projects there is no point in EXTRA_DISTing the list of
842     m4 files which are used.  (You can probably get rid of
843     m4/Makefile.am if you had one.)
845   - aclocal will avoid touching aclocal.m4 when possible, so that
846     Autom4te's cache isn't needlessly invalidated.  This behavior can
847     be switched off with the new `--force' option.
849   - aclocal now uses Autoconf's --trace to detect macros which are
850     actually used and will no longer include unused macros simply
851     because they where mentioned.  This was often the case for macros
852     called conditionally.
854   - New options no-dist and no-dist-gzip.
856   - compile, depcomp, elisp-comp, install-sh, mdate-sh, mkinstalldirs,
857     py-compile, and ylwrap, now all understand --version and --help.
859   - Automake will now recognize AC_CONFIG_LINKS so far as removing created
860     links as part of the distclean target and including source files in
861     distributions.
863   - AM_PATH_PYTHON now supports ACTION-IF-FOUND and ACTION-IF-NOT-FOUND
864     argument.  The latter can be used to override the default behavior
865     (which is to abort).
867   - Automake will exit with $? = 63 on version mismatch.  (So does
868     Autoconf 2.58)  missing knows this, and in this case it will
869     emulate the tools as if they were absent.  Because older versions
870     of Automake and Autoconf did not use this exit code, this change
871     will only be useful in projects generated with future versions of
872     these tools.
874   - When using AC_CONFIG_FILES with multiple input files, Automake
875     generates the first ".in" input file for which a ".am" exists.
876     (Former versions would try to use only the first input file.)
878   - lisp_DATA is now allowed.  If you are using the empty ELCFILES
879     idiom to disable byte-compilation of lisp_LISP files, it is
880     recommended that you switch to using lisp_DATA.  Note that
881     this is not strictly equivalent: lisp_DATA will install elisp
882     files even if emacs is not installed, while *_LISP do not
883     install anything unless emacs is found.
885   - Makefiles will prefer `mkdir -p' over mkinstalldirs if it is
886     available.  This selection is achieved through the Makefile
887     variable $(mkdir_p) that is set by AM_INIT_AUTOMAKE to either
888     `mkdir -m 0755 -p --', `$(mkinstalldirs) -m 0755', or
889     `$(install_sh) -m 0755 -d'.
891 * Obsolete features
893   - Because `mkdir -p' is available on most platforms, and we can use
894     `install-sh -d' when it is not, the use of the mkinstalldirs
895     script is being phased out.  `automake --add-missing' no longer
896     installs it, and if you remove mkinstalldirs from your package,
897     automake will define $(mkinstalldirs) as an alias for $(mkdir_p).
899     Gettext 0.12.1 still requires mkinstalldirs.  Fortunately
900     gettextize and autopoint will install it when needed.  Automake
901     will continue to define the $(mkinstalldirs) and to distribute
902     mkinstalldirs when this script is in the source tree.
904   - AM_PROG_CC_STDC is now empty.  The content of this macro was
905     merged in AC_PROG_CC.  If your code uses $am_cv_prog_cc_stdc, you
906     should adjust it to use $ac_cv_prog_cc_stdc instead.  (This
907     renaming should be safe, even if you have to support several,
908     versions of Automake, because AC_PROG_CC defines this variable
909     since Autoconf 2.54.)
911   - Some users where using the undocumented ACLOCAL_M4_SOURCES
912     variable to override the aclocal.m4 dependencies computed
913     (inaccurately) by older versions of Automake.  Because Automake
914     now tracks configure's m4 dependencies accurately (see m4_include
915     above), the use of ACLOCAL_M4_SOURCES should be considered
916     obsolete and will be flagged as such when running `automake
917     -Wobsolete'.
919 * Bug fixes
921   - Defining programs conditionally using Automake conditionals no
922     longer leads to a combinatorial explosion.  The following
923     construct used to be troublesome when used with dozens of
924     conditions.
926       bin_PROGRAMS = a
927       if COND1
928         bin_PROGRAMS += a1
929       endif
930       if COND2
931         bin_PROGRAMS += a2
932       endif
933       if COND3
934         bin_PROGRAMS += a3
935       endif
936       ...
938     Likewise for _SOURCES, _LDADD, and _LIBADD variables.
940   - Due to implementation constraints, previous versions of Automake
941     proscribed multiple conditional definitions of some variables
942     like bin_PROGRAMS:
944       if COND1
945         bin_PROGRAMS = a1
946       endif
947       if COND2
948         bin_PROGRAMS = a2
949       endif
951     All _PROGRAMS, _LDADD, and _LIBADD variables were affected.
952     This restriction has been lifted, and these variables now
953     support multiple conditional definitions as do other variables.
955   - Cleanup the definitions of $(distdir) and $(top_distdir).
956     $(top_distdir) now points to the root of the distribution
957     directory created during `make dist', as it did in Automake 1.4,
958     not to the root of the build tree as it did in intervening
959     versions.  Furthermore these two variables are now only defined in
960     the top level Makefile, and passed to sub-directories when running
961     `make dist'.
963   - The --no-force option now correctly checks the Makefile.in's
964     dependencies before deciding not to update it.
966   - Do not assume that make files are called Makefile in cleaning rules.
968   - Update .info files in the source tree, not in the build tree.  This
969     is what the GNU Coding Standard recommend.  Only Automake 1.7.x
970     used to update these files in the build tree (previous versions did
971     it in the source tree too), and it caused several problems, varying
972     from mere annoyance to portability issues.
974   - COPYING, COPYING.LIB, and COPYING.LESSER are no longer overwritten
975     when --add-missing and --force-missing are used.  For backward
976     compatibility --add-missing will continue to install COPYING (in
977     `gnu' strictness) when none of these three files exist, but this
978     use is deprecated: you should better choose a license yourself and
979     install it once for all in your source tree (and in your code
980     management system).
982   - Fix ylwrap so that it does not overwrite header files that haven't
983     changed, as the inline rule already does.
985   - User-defined rules override automake-defined rules for the same
986     targets, even when rules do not have commands.  This is not new
987     (and was documented), however some of the automake-generated
988     rules have escaped this principle in former Automake versions.
989     Rules for the following targets are affected by this fix:
991        clean, clean-am, dist-all, distclean, distclean-am, dvi, dvi-am,
992        info, info-am, install-data-am, install-exec-am, install-info,
993        install-info-am, install-man, installcheck-am, maintainer-clean,
994        maintainer-clean-am, mostlyclean, mostlyclean-am, pdf, pdf-am,
995        ps, ps-am, uninstall-am, uninstall-info, uninstall-man
997     Practically it means that an attempt to supplement the dependencies
998     of some target, as in
1000        clean: my-clean-rule
1002     will now *silently override* the automake definition of the
1003     rule for this target.  Running `automake -Woverride' will diagnose
1004     all such overriding definitions.
1006     It should be noted that almost all these targets support a *-local
1007     variant that is meant to supplement the automake-defined rule
1008     (See node `Extending' in the manual).  The above rule should
1009     be rewritten as
1011       clean-local: my-clean-rule
1013     These *-local targets have been documented since at least
1014     Automake 1.2, so you should not fear the change if you have
1015     to support multiple automake versions.
1017 * Miscellaneous
1019   - The Automake manual is now distributed under the terms of the GNU FDL.
1021   - Targets dist-gzip, dist-bzip2, dist-tarZ, dist-zip are always defined.
1023   - core dumps are no longer removed by the cleaning rules.  There are
1024     at least three reasons for this:
1025       1. These files should not be created by any build step,
1026          so their removal do not fit any of the cleaning rules.
1027          Actually, they may be precious to the developer.
1028       2. If such file is created during a build, then it's clearly a
1029          bug Automake should not hide.  Not removing the file will
1030          cause `make distcheck' to complain about its presence.
1031       3. Operating systems have different naming conventions for
1032          core dump files.  A core file on one system might be a
1033          completely legitimate data file on another system.
1035   - RUNTESTFLAGS, CTAGSFLAGS, ETAGSFLAGS, JAVACFLAGS are no longer
1036     defined by Automake.  This means that any definition in the
1037     environment will be used, unless overridden in the Makefile.am or
1038     on the command line.  The old behavior, where these variables were
1039     defined empty in each Makefile, can be obtained by AC_SUBSTing or
1040     AC_ARG_VARing each variable from configure.ac.
1042   - CONFIGURE_DEPENDENCIES and CONFIG_STATUS_DEPENDENCIES are now
1043     documented.  (The is not a new feature, these variables have
1044     been there since at least Automake 1.4.)
1046 Bugs fixed in 1.7.9:
1047 * Fix install-strip to work with nobase_ binaries.
1048 * Fix renaming of #line directives in ylwrap.
1049 * Rebuild with Autoconf 2.59.  (1.7.8 was not installable with pdksh.)
1051 Bugs fixed in 1.7.8:
1052 * Remove spurious blank lines in cleaning rules introduced in 1.7.7.
1053 * Fix detection of Debian's install-info, broken since version 1.5.
1054   (Debian bug #213524).
1055 * Honor -module if it appears in AM_LDFLAGS (i.e., relax name checking)
1056   This was only done for libfoo_LDFLAGS and LDFLAGS in previous versions.
1058 Bugs fixed in 1.7.7:
1059 * The implementation of automake's --no-force option is unreliable,
1060   so this option is ignored in this version.  A real fix will appear in
1061   Automake 1.8.  (Debian Bug #206299)
1062 * AM_PATH_PYTHON: really check the whole list of interpreters if no
1063   argument is given.  (PR/399)
1064 * Do not warn about leading `_' in variable names, even with -Wportability.
1065 * Support user redefinitions of TEXINFO_TEX.
1066 * depcomp: support AIX Compiler version 6.
1067 * Fix missing rebuilds during `make dist' with BSD make.
1068   (Could produce tarballs containing out-of-date files.)
1069 * Resurrect multilib support.
1070 * Noteworthy manual updates:
1071   - Extending aclocal: how to write m4 macros that won't trigger warnings
1072     with Automake 1.8.
1073   - A Shared Library: Rewrite and split into subsections.
1075 Bugs fixed in 1.7.6:
1076 * Fix depcomp's icc mode for ICC 7.1.
1077 * Diagnose calls to AC_CONFIG_FILES and friends with not enough arguments.
1078 * Fix maintainer-clean's removal of autom4te.cache in VPATH builds.
1079 * Fix AM_PATH_LISPDIR to work with POSIXLY_CORRECT=1.
1080 * Fix the location reported in some diagnostics related to AUTOMAKE_OPTIONS.
1081 * Remove Latin-1 characters from elisp-comp.
1082 * Update the manual's @dircategory to match the Free Software Directory.
1084 Bugs fixed in 1.7.5:
1085 * Update install-sh's license to remove an advertising clause.
1086   (Debian bug #191717)
1087 * Fix a bug introduced in 1.7.4, related to BUILT_SOURCE handling,
1088   that caused invalid Makefile.ins to be generated.
1089 * Make sure AM_MAKE_INCLUDE doesn't fail when a `doit' file exists.
1090 * New FAQ entry: renamed objects.
1092 Bugs fixed in 1.7.4:
1093 * Tweak the TAGS rule to support Exuberant Ctags (in addition to
1094   the Emacs implementation)
1095 * Fix output of aclocal.m4 dependencies in subdirectories.
1096 * Use `mv -f' instead of `mv' in fastdep rules.
1097 * Upgrade mdate-sh to work on OS/2.
1098 * Don't byte-compile elisp files when ELCFILES is set empty.
1099   (this documented feature was broken by 1.7.3)
1100 * Diagnose trailing backslashes on last line of Makefile.am.
1101 * Diagnose whitespace following trailing backslashes.
1102 * Multiple tests are now correctly supported in DEJATOOL. (PR/388)
1103 * Fix rebuilt rules for AC_CONFIG_FILES([Makefile:Makefile.in:Makefile.bot])
1104   Makefiles. (PR/389)
1105 * `make install' will build `BUILT_SOURCES' first.
1106 * Minor documentation fixes.
1108 Bugs fixed in 1.7.3:
1109 * Fix stamp files numbering (when using multiple AC_CONFIG_HEADERS).
1110 * Query distutils for `pythondir' and `pythonexecdir', instead of
1111   using an hardcoded path.  This should allow builds on 64-bit
1112   distributions that usually use lib64/ instead of lib/.
1113 * AM_PATH_PYTHON will also search for python2.3.
1114 * elisp files are now built all at once instead of one by one. Besides
1115   incurring a speed-up, this is required to support interdependent elisp files.
1116 * Support for DJGPP:
1117   - `make distcheck' will now work in `_inst/' and `_build' instead
1118     of `=inst/' and `=build/'
1119   - use `_dirstamp' when the file-system doesn't support `.dirstamp'
1120   - install/uninstall `*.i[0-9][0-9]'-style info files
1121   - more changes that affect only the Automake package (not its output)
1122 * Fix some incompatibilities with upcoming perl-5.10.
1123 * Properly quote AC_PACKAGE_TARNAME and AC_PACKAGE_VERSION when defining
1124   PACKAGE and VERSION.
1125 * depcomp fixes:
1126   - dashmstdout and dashXmstdout modes: don't use `-o /dev/null', this
1127     is troublesome with gcc and Solaris compilers. (PR/385)
1128   - makedepend mode: work with Libtool. (PR/385 too)
1129   - support for ICC.
1130 * better support for unusual gettext setups, such as multiple po/ directories
1131   (PR/381):
1132   - Flag missing po/ and intl/ directories as warnings, not errors.
1133   - Disable these warnings if po/ does not exist.
1134 * Noteworthy manual updates:
1135   - New FAQ chapter.
1136   - Document how AC_CONFIG_AUX_DIR interacts with missing files.
1137     (Debian Bug #39542)
1138   - Document `AM_YFLAGS = -d'.  (PR/382)
1140 Bugs fixed in 1.7.2:
1141 * Fix installation and uninstallation of Info files built in subdirectories.
1142 * Do not run `./configure --with-included-gettext' during `make distcheck'
1143   if AM_GNU_GETTEXT([external]) is used.
1144 * Correctly uninstall renamed man pages.
1145 * Do not strip escaped newline in variables defined in one condition
1146   and augmented in another condition.
1147 * Fix ansi2knr rules for LIBOBJS sources.
1148 * Clean all known Texinfo index files, not only those which appear to
1149   be used, because we cannot know wich indexes are used in included files.
1150   (PR/375, Debian Bug #168671)
1151 * Honor only the first @setfilename seen in a Texinfo file.
1152 * Treat "required file X not found" diagnostics as errors (exit status 1).
1153 * Don't complain that a required file is not found when it is a Makefile
1154   target. (PR/357)
1155 * Don't use single suffix inference rules when building `.info'-less
1156   Info files, for the sake of Solaris make.
1157 * The `check' target now depends on `$(BUILT_SOURCES)'. (PR/359)
1158 * Recognize multiple inference rules such as `.a.b .c.d:'. (PR/371)
1159 * Warn about multiple inference rules when -Wportability is used. (PR/372)
1160 * Fix building of deansified files from subdirectories. (PR/370)
1161 * Add missing `fi' in the .c->.obj rules.
1162 * Improve install-sh to work even when names contain spaces or certain
1163   (but not all) shell metachars.
1164 * Fix the following spurious failures in the test suite:
1165   depcomp2.test, gnits2.test, gnits3.test, python3.test, texinfo13.test
1166 * Noteworthy manual updates:
1167   - Augment the section about BUILT_SOURCES.
1168   - Mention that AM_PROG_CC_STDC is a relic that is better avoided today.
1170 Bugs fixed in 1.7.1:
1171 * Honor `ansi2knr' for files built in subdirectories, or using per-targets
1172   flags.
1173 * Aclocal should now recognize macro names containing parentheses, e.g.
1174   AC_DEFUN([AC_LANG_PREPROC(Fortran 90)], [...]).
1175 * Erase *.sum and *.log files created by DejaGnu, during `make distclean'.
1176   (Debian Bug#153697)
1177 * Install Python files even if they were built.  (PR/369)
1178 * Have stamp-vti dependent upon configure instead of configure.ac, as the
1179   version might not be defined in the latter. (PR/358)
1180 * Reorder arguments passed to a couple of commands, so things works
1181   when POSIXLY_CORRECT=1.
1182 * Fix a regex that can cause Perl to segfault on large input.
1183   (Debian Bug#162583)
1184 * Fix distribution of packages that have some sources defined conditionally,
1185   as in the `Conditional compilation using Automake conditionals' example
1186   of the manual.
1187 * Fix spurious test suite failures on IRIX.
1188 * Don't report a required variable as undefined if it has been
1189   defined conditionally for the "right" conditions.
1190 * Fix cleaning of the /tmp subdirectory used by `make distcheck', in case
1191   `make distcheck' fails.
1192 * Fix distribution of included Makefile fragment, so we don't create
1193   spurious directories in the distribution. (PR/366)
1194 * Don't complain that a target lacks `.$(EXEEXT)' when it has it.
1196 New in 1.7:
1197 * Autoconf 2.54 is required.
1198 * `aclocal' and `automake' will no longer warn about obsolete
1199   configure macros.  This is done by `autoconf -Wobsolete'.
1200 * AM_CONFIG_HEADER, AM_SYS_POSIX_TERMIOS and
1201   AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL are obsolete (although still
1202   supported).  You should use AC_CONFIG_HEADERS, AC_SYS_POSIX_TERMIOS,
1203   and AC_HEADER_TIOCGWINSZ instead.  `autoupdate' can upgrade
1204   `configure.ac' for you.
1205 * Support for per-program and per-library `_CPPFLAGS'.
1206 * New `ctags' target (builds CTAGS files).
1207 * Support for -Wmumble and -Wno-mumble, where mumble is a warning category
1208   (see `automake --help' or the manual for a list of them).
1209 * Honor the WARNINGS environment variable.
1210 * Omit the call to depcomp when using gcc3: call the compiler directly.
1211 * A new option, std-options, tests that programs support --help and --version
1212   when `make installcheck' is run.  This is enabled by --gnits.
1213 * Texinfo rules now support the `ps' and `pdf' targets.
1214 * Info files are now created in the build directory, not the source directory.
1215 * info_TEXINFOS supports files in subdirectories (this requires Texinfo 4.1
1216   or greater).
1217 * `make distcheck' will enforce DESTDIR support by attempting
1218   a DESTDIR install.
1219 * `+=' can be used in conditionals, even if the augmented variable
1220   was defined for another condition.
1221 * Makefile fragments (inserted with `include') are always distributed.
1222 * Use Autoconf's --trace interface to inspect configure.ac and get
1223   a more accurate view of it.
1224 * Add support for extending aclocal's default macro search path
1225   using a `dirlist' file within the aclocal directory.
1226 * automake --output-dir is deprecated.
1227 * The part of the distcheck target that checks whether uninstall actually
1228   removes all installed files has been moved in a separate target,
1229   distuninstallcheck, so it can be overridden easily.
1230 * Many bug fixes.
1232 New in 1.6.3:
1233 * Support for AM_INIT_GETTEXT([external])
1234 * Bug fixes, including:
1235   - Fix Automake's own `make install' so it works even if `ln' doesn't.
1236   - nobase_ programs and scripts honor --program-transform correctly.
1237   - Erase configure.lineno during `make distclean'.
1238   - Erase YACC and LEX outputs during `make maintainer-clean'.
1240 New in 1.6.2:
1241 * Many bug fixes, including:
1242   - Requiring the current version works.
1243   - Fix "$@" portability issues (for Zsh).
1244   - Fix output of dummy dependency files in presence of post-processed
1245     Makefile.in's.
1246   - Don't compute dependencies in background to avoid races with libtool.
1247   - Fix handling of _OBJECTS variables for targets sharing source variables.
1248   - Check dependency mode for Java when AM_PROG_GCJ is used.
1250 New in 1.6.1:
1251 * automake --output-dir is deprecated
1252 * Many bug fixes, including:
1253   - Don't choke on AM_LDFLAGS definitions.
1254   - Clean libtool objects from subdirectories.
1255   - Allow configure variables with reserved suffix and unknown prefix
1256     (e.g. AC_SUBST(mumble_LDFLAGS) when 'mumble' is not a target).
1257   - Fix the definition of AUTOMAKE and ACLOCAL in configure.
1259 New in 1.6:
1260 * Autoconf 2.52 is required.
1261 * automake no longer run libtoolize.
1262   This is the job of autoreconf (from GNU Autoconf).
1263 * `dist' generates all the archive flavors, as did `dist-all'.
1264 * `dist-gzip' generates the Gzip tar file only.
1265 * Combining Automake Makefile conditionals no longer lead to a combinatorial
1266   explosion.  Makefile.in's keep a reasonable size.
1267 * AM_FUNC_ERROR_AT_LINE, AM_FUNC_STRTOD, AM_FUNC_OBSTACK, AM_PTRDIFF_T
1268   are no longer shipped, since Autoconf 2.52 provides them (both as AM_
1269   and AC_).
1270 * `#line' of Lex and Yacc files are properly set.
1271 * EXTRA_DIST can contain generated directories.
1272 * Support for dot-less extensions in suffix rules.
1273 * The part of the distcheck target that checks whether distclean actually
1274   cleans all built files has been moved in a separate target, distcleancheck,
1275   so it can be overridden easily.
1276 * `make distcheck' will pass additional options defined in
1277   $(DISTCHECK_CONFIGURE_FLAGS) to configure.
1278 * Fixed CDPATH portability problems, in particular for MacOS X.
1279 * Fixed handling of nobase_ targets.
1280 * Fixed support of implicit rules leading to .lo objects.
1281 * Fixed late inclusion of --add-missing files (e.g. depcomp) in DIST_COMMON
1282 * Added uninstall-hook target
1283 * `AC_INIT AM_INIT_AUTOMAKE(tarname,version)' is an obsolete construct.
1284   You can now use `AC_INIT(pkgname,version) AM_INIT_AUTOMAKE' instead.
1285   (Note that "pkgname" is not "tarname", see the manual for details.)
1286   It is also possible to pass a list of global Automake options as
1287   first argument to this new form of AM_INIT_AUTOMAKE.
1288 * Compiler-based assembler is now called `CCAS'; people expected `AS'
1289   to be a real assembler.
1290 * AM_INIT_AUTOMAKE will set STRIP itself when it needs it.  Adding
1291   AC_CHECK_TOOL([STRIP], [strip]) manually is no longer required.
1292 * aclocal and automake are also installed with the version number
1293   appended, and some of the install directory names have changed.
1294   This lets you have multiple versions installed simultaneously.
1295 * Support for parsers and lexers in subdirectories.
1297 New in 1.5:
1298 * Support for `configure.ac'.
1299 * Support for `else COND', `endif COND' and negated conditions `!COND'.
1300 * `make dist-all' is much faster.
1301 * Allows '@' AC_SUBSTs in macro names.
1302 * Faster AM_INIT_AUTOMAKE (requires update of `missing' script)
1303 * User-side dependency tracking.  Developers no longer need GNU make
1304 * Python support
1305 * Uses DIST_SUBDIRS in some situations when SUBDIRS is conditional
1306 * Most files are correctly handled if they appear in subdirs
1307   For instance, a _DATA file can appear in a subdir
1308 * GNU tar is no longer required for `make dist'
1309 * Added support for `dist_' and `nodist_' prefixes
1310 * Added support for `nobase_' prefix
1311 * Compiled Java support
1312 * Support for per-executable and per-library compilation flags
1313 * Many bug fixes
1315 New in 1.4:
1316 * Added support for the Fortran 77 programming language.
1317 * Re-indexed the Automake Texinfo manual.
1318 * Added `AM_FOOFLAGS' variable for each compiler invocation;
1319   e.g. AM_CFLAGS can be used in Makefile.am to set C compiler flags
1320 * Support for latest autoconf, including support for objext
1321 * Can now put `.' in SUBDIRS to control build order
1322 * `include' command and `+=' support for macro assignment
1323 * Dependency tracking no long susceptible to deleted header file problem
1324 * Maintainer mode now a conditional.  @MAINT@ is now an anachronism.
1325 * Bug fixes
1327 New in 1.3:
1328 * Bug fixes
1329 * Better Cygwin32 support
1330 * Support for suffix rules with _SOURCES variables
1331 * New options `readme-alpha' and `check-news'; Gnits mode sets these
1332 * @LEXLIB@ no longer required when lex source seen
1333   Lex support in `missing', and new lex macro.  Update your missing script.
1334 * Built-in support for assembly
1335 * aclocal gives error if `AM_' macro not found
1336 * Passed YFLAGS, not YACCFLAGS, to yacc
1337 * AM_PROG_CC_STDC does not have to come before AC_PROG_CPP
1338 * Dependencies computed as a side effect of compilation
1339 * Preliminary support for Java
1340 * DESTDIR support at "make install" time
1341 * Improved ansi2knr support; you must use the latest ansi2knr.c (included)
1343 New in 1.2:
1344 * Bug fixes
1345 * Better DejaGnu support
1346 * Added no-installinfo option
1347 * Added Emacs Lisp support
1348 * Added --no-force option
1349 * Included `aclocal' program
1350 * Automake will now generate rules to regenerate aclocal.m4, if appropriate
1351 * Now uses `AM_' macro names everywhere
1352 * ansi2knr option can have directory prefix (eg `../lib/ansi2knr')
1353   ansi2knr now works correctly on K&R sources
1354 * Better C++, yacc, lex support
1355 * Will compute _DEPENDENCIES variables automatically if not supplied
1356 * Will interpolate $(...) and ${...} when examining contents of a variable
1357 * .deps files now in build directory, not source directory; dependency
1358   handling generally rewritten
1359 * DATA, MANS and BUILT_SOURCES no longer included in distribution
1360 * can now put config.h into a subdir
1361 * Added dist-all target
1362 * Support for install-info program (see texinfo 3.9)
1363 * Support for "yacc -d"
1364 * configure substitutions are automatically discovered and included
1365   in generated Makefile.in
1366 * Special --cygnus mode
1367 * OMIT_DEPENDENCIES can now hold list of dependencies to be omitted
1368   when making distribution.  Some dependencies are auto-ignored.
1369 * Changed how libraries are specified in _LIBRARIES variable
1370 * Full libtool support, from Gord Matzigkeit
1371 * No longer have to explicitly touch stamp-h when using AC_CONFIG_HEADER;
1372   AM_CONFIG_HEADER handles it automatically
1373 * Texinfo output files no longer need .info extension
1374 * Added `missing' support
1375 * Cygwin32 support
1376 * Conditionals in Makefile.am, from Ian Taylor
1378 New in 1.0:
1379 * Bug fixes
1380 * distcheck target runs install and installcheck targets
1381 * Added preliminary support for DejaGnu.
1383 New in 0.33:
1384 * More bug fixes
1385 * More checking
1386 * More libtool fixes from Gord Matzigkeit; libtool support is still
1387   preliminary however
1388 * Added support for jm_MAINTAINER_MODE
1389 * dist-zip support
1390 * New "distcheck" target
1392 New in 0.32:
1393 * Many bug fixes
1394 * mkinstalldirs and mdate-sh now appear in directory specified by
1395   AC_CONFIG_AUX_DIR.
1396 * Removed DIST_SUBDIRS, DIST_OTHER
1397 * AC_ARG_PROGRAM only required when an actual program exists
1398 * dist-hook target now run before distribution packaged up; idea from
1399   Dieter Baron.  Other hooks exist, too.
1400 * Preliminary (unfinished) support for libtool
1401 * Added short option names.
1402 * Better "dist" support when gluing together multiple packages
1404 New in 0.31:
1405 * Bug fixes
1406 * Documentation updates (many from François Pinard)
1407 * strictness `normal' now renamed to `foreign'
1408 * Renamed --install-missing to --add-missing
1409 * Now handles AC_CONFIG_AUX_DIR
1410 * Now handles TESTS macro
1411 * DIST_OTHER renamed to EXTRA_DIST
1412 * DIST_SUBDIRS is deprecated
1413 * @ALLOCA@ and @LIBOBJS@ now work in _LDADD variables
1414 * Better error messages in many cases
1415 * Program names are canonicalized
1416 * Added "check" prefix; from Gord Matzigkeit
1418 New in 0.30:
1419 * Bug fixes
1420 * configure.in scanner knows about AC_PATH_XTRA, AC_OUTPUT ":" syntax
1421 * Beginnings of a test suite
1422 * Automatically adds -I options for $(srcdir), ".", and path to config.h
1423 * Doesn't print anything when running
1424 * Beginnings of MAINT_CHARSET support
1425 * Can specify version in AUTOMAKE_OPTIONS
1426 * Most errors recognizable by Emacs' M-x next-error
1427 * Added --verbose option
1428 * All "primary" variables now obsolete; use EXTRA_PRIMARY to supply
1429   configure-generated names
1430 * Required macros now distributed in aclocal.m4
1431 * New documentation
1432 * --strictness=gnu is default
1434 New in 0.29:
1435 * Many bug fixes
1436 * More sophisticated configure.in scanning; now understands ALLOCA and
1437   LIBOBJS directly, handles AC_CONFIG_HEADER more precisely, etc.
1438 * TEXINFOS and MANS now obsolete; use info_TEXINFOS and man_MANS instead.
1439 * CONFIG_HEADER variable now obsolete
1440 * Can handle multiple Texinfo sources
1441 * Allow hierarchies deeper than 2.  From Gord Matzigkeit.
1442 * HEADERS variable no longer needed; now can put .h files directly into
1443   foo_SOURCES variable.
1444 * Automake automatically rebuilds files listed in AC_OUTPUT.  The
1445   corresponding ".in" files are included in the distribution.
1447 New in 0.28:
1448 * Added --gnu and --gnits options
1449 * More standards checking
1450 * Bug fixes
1451 * Cleaned up 'dist' targets
1452 * Added AUTOMAKE_OPTIONS variable and several options
1453 * Now scans configure.in to get some information (preliminary)
1455 New in 0.27:
1456 * Works with Perl 4 again
1458 New in 0.26:
1459 * Added --install-missing option.
1460 * Pretty-prints generated macros and rules
1461 * Comments in Makefile.am are placed more intelligently in Makefile.in
1462 * Generates .PHONY target
1463 * Rule or macro in Makefile.am now overrides contents of Automake file
1464 * Substantial cleanups from François Pinard
1466 New in 0.25:
1467 * Bug fixes.
1468 * Works with Perl 4 again.
1470 New in 0.24:
1471 * New uniform naming scheme.
1472 * --strictness option
1473 * Works with Perl 5
1474 * '.c' files corresponding to '.y' or '.l' files are automatically
1475   distributed.
1476 * Many bug fixes and cleanups
1478 New in 0.23:
1479 * Allow objects to be conditionally included in libraries via lib_LIBADD.
1481 New in 0.22:
1482 * Bug fixes in 'clean' code.
1483 * Now generates 'installdirs' target.
1484 * man page installation reworked.
1485 * 'make dist' no longer re-creates all Makefile.in's.
1487 New in 0.21:
1488 * Reimplemented in Perl
1489 * Added --amdir option (for debugging)
1490 * Texinfo support cleaned up.
1491 * Automatic de-ANSI-fication cleaned up.
1492 * Cleaned up 'clean' targets.
1494 New in 0.20:
1495 * Automatic dependency tracking
1496 * More documentation
1497 * New variables DATA and PACKAGEDATA
1498 * SCRIPTS installed using $(INSTALL_SCRIPT)
1499 * No longer uses double-colon rules
1500 * Bug fixes
1501 * Changes in advance of internationalization
1503 -----
1505 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
1506 2004, 2005, 2006, 2007  Free Software Foundation, Inc.
1508 This program is free software; you can redistribute it and/or modify
1509 it under the terms of the GNU General Public License as published by
1510 the Free Software Foundation; either version 3, or (at your option)
1511 any later version.
1513 This program is distributed in the hope that it will be useful,
1514 but WITHOUT ANY WARRANTY; without even the implied warranty of
1515 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1516 GNU General Public License for more details.
1518 You should have received a copy of the GNU General Public License
1519 along with this program.  If not, see <http://www.gnu.org/licenses/>.