5 - automake now generates silenced rules for texinfo outputs.
7 - The deprecated options `--output-dir', `--Werror' and `--Wno-error'
12 - New `cscope' target to build a cscope database for the source tree.
14 * Miscellaneous changes:
16 - The `dist' and `dist-all' targets now can run compressors in parallel.
18 - The `lzma' compression scheme and associated automake option `dist-lzma'
19 is obsoleted by `xz' and `dist-xz' due to upstream changes.
21 - "make dist" can now create lzip-compressed tarballs.
23 - You may adjust the compression options used in dist-xz and dist-bzip2.
24 The default is still -9 for each, but you may specify a different
25 level via the XZ_OPT and BZIP2 envvars respectively. E.g.,
26 "make dist-xz XZ_OPT=-7" or "make dist-xz BZIP2=-5"
28 - Messages of types warning or error from `automake' and `aclocal' are now
29 prefixed with the respective type, and presence of -Werror is noted.
31 - The `compile' script now converts some options for MSVC for a better
32 user experience. Similarly, the new `ar-lib' script wraps Microsoft lib.
34 - Automake's early configure-time sanity check now tries to avoid sleeping
35 for a second, which slowed down cached configure runs noticeably. In that
36 case, it will check back at the end of the configure script to ensure that
37 at least one second has passed, to avoid time stamp issues with makefile
38 rules rerunning autotools programs.
40 - For programs and libraries, automake now detects EXTRA_foo_DEPENDENCIES and
41 adds them to the normal list of dependencies, but without overwriting the
42 foo_DEPENDENCIES variable, which is normally computed by automake.
46 - Lots of minor bugfixes.
48 * Bugs introduced by 1.11:
50 - The `parallel-tests' test driver works around a GNU make 3.80 bug with
51 trailing white space in the test list (`TESTS = foo $(EMPTY)').
53 - The `silent-rules' option now also silences all compile rules if dependency
54 tracking is disabled. Also, when `silent-rules' is not used, the output from
55 `make' does not contain spurious extra lines with only a backslash in them
56 any more; it now again matches that from pre-1.11 Automake.
58 - The `dist-xz' option now uses `xz -9' for maximum compression.
60 - The AM_COND_IF macro also works if the shell expression for the conditional
61 is no longer valid for the condition.
65 - On Darwin 9, `pythondir' and `pyexecdir' pointed below `/Library/Python'
66 even if the `--prefix' argument pointed outside of a system directory.
67 AM_PATH_PYTHON has been fixed to ignore the value returned from python's
68 `get_python_lib' function if it points outside the configured prefix,
69 unless the `--prefix' argument was either `/usr' or below `/System'.
71 - The testsuite does not try to change the mode of `ltmain.sh' files from
72 a Libtool installation (symlinked to test directories) any more.
74 - AM_PROG_GCJ uses AC_CHECK_TOOLS to look for `gcj' now, so that prefixed
75 tools are preferred in a cross-compile setup.
77 - The distribution is tarred up with mode 755 now by the `dist*' targets.
78 This fixes a race condition where untrusted users could modify files
79 in the $(PACKAGE)-$(VERSION) distdir before packing if the toplevel
80 build directory was world-searchable. This is CVE-2009-4029.
82 - Several scripts as well as the parallel-tests testsuite driver now
83 exit with the right exit status upon receiving a signal.
85 - A per-Makefile.am setting of -Werror does not carry over to the
86 handling of other Makefile.am files any more.
88 - The order of Yacc and Lex flags is fixed to be consistent with other
89 languages: $(AM_YFLAGS) comes before $(YFLAGS), and $(AM_LFLAGS) before
90 $(LFLAGS), so that the user variables override the developer variables.
92 - Rules generated by Automake now try harder to not change any files when
93 `make -n' is invoked. Fixes include compilation of Emacs Lisp, Vala, or
94 Yacc source files and the rule to update config.h.
96 - The code for automatic dependency tracking works around a Solaris
97 make bug triggered by sources containing repeated slashes when the
98 `subdir-objects' was used.
102 * Version requirements:
104 - Autoconf 2.62 or greater is required.
106 * Changes to aclocal:
108 - The autoconf version check implemented by aclocal in aclocal.m4
109 (and new in Automake 1.10) is degraded to a warning. This helps
110 in the common case where the Autoconf versions used are compatible.
112 * Changes to automake:
114 - The automake program can run multiple threads for creating most
115 Makefile.in files concurrently, if at least Perl 5.7.2 is available
116 with interpreter-based threads enabled. Set the environment variable
117 AUTOMAKE_JOBS to the maximum number of threads to use, in order to
118 enable this experimental feature.
120 * Changes to Libtool support:
122 - Libtool generic flags are now passed to the install and uninstall
125 - distcheck works with Libtool 2.x even when LT_OUTPUT is used, as
126 config.lt is removed correctly now.
130 - subdir-object mode works now with Fortran (F77, FC, preprocessed
131 Fortran, and Ratfor).
133 - For files with extension .f90, .f95, .f03, or .f08, the flag
134 $(FCFLAGS_f[09]x) computed by AC_FC_SRCEXT is now used in compile rules.
136 - Files with extension .sx are also treated as preprocessed assembler.
138 - The default source file extension (.c) can be overridden with
139 AM_DEFAULT_SOURCE_EXT now.
141 - Python 3.0 is supported now, Python releases prior to 2.0 are no
144 - AM_PATH_PYTHON honors python's idea about the site directory.
146 - There is initial support for the Vala programming language, when using
149 * Miscellaneous changes:
151 - Automake development is done in a git repository on Savannah now, see
153 http://git.sv.gnu.org/gitweb/?p=automake.git
155 A read-only CVS mirror is provided at
157 cvs -d :pserver:anonymous@pserver.git.sv.gnu.org:/automake.git \
158 checkout -d automake HEAD
160 - "make dist" can now create xz-compressed tarballs,
161 as well as (deprecated?) lzma-compressed tarballs.
163 - `automake --add-missing' will by default install the GPLv3 file as
164 COPYING if it is missing. It will also warn that the license file
165 should be added to source control. Note that Automake will never
166 overwrite an existing COPYING file, even when the `--force-missing'
169 - The manual is now distributed under the terms of the GNU FDL 1.3.
171 - Automake ships and installs man pages for automake and aclocal now.
173 - New shorthand `$(pkglibexecdir)' for `$(libexecdir)/@PACKAGE@'.
175 - install-sh supports -C, which does not update the installed file
176 (and its time stamps) if the contents did not change.
178 - The `gnupload' script has been revamped.
180 - The `depcomp' and `compile' scripts now work with MSVC under MSYS.
182 - The targets `install' and `uninstall' are more efficient now, in that
183 for example multiple files from one Automake variable such as
184 `bin_SCRIPTS' are copied in one `install' (or `libtool --mode=install')
185 invocation if they do not have to be renamed.
187 Both install and uninstall may sometimes enter (`cd' into) the target
188 installation directory now, when no build-local scripts are used.
190 Both install and uninstall do not fail anymore but do nothing if an
191 installation directory variable like `bindir' is set to the empty string.
193 For built-in rules, `make install' now fails reliably if installation
194 of a file failed. Conversely, `make uninstall' even succeeds when
195 issued multiple times.
197 These changes may need some adjustments from users: For example,
198 some `install' programs refuse to install multiple copies of the
199 same file in one invocation, so you may need to remove duplicate
200 entries from file lists.
202 Also, within one set of files, say, nobase_data_DATA, the order of
203 installation may be changed, or even unstable among different hosts,
204 due to the use of associative arrays in awk. The increased use of
205 awk matches a similar move in Autoconf to provide for better scaling.
207 Further, most undocumented per-rule install command variables such as
208 binSCRIPT_INSTALL have been removed because they are not needed any
209 more. Packages which use them should be using the appropriate one of
210 INSTALL_{DATA,PROGRAM,SCRIPT} or their install_sh_{DATA,PROGRAM,SCRIPT}
211 counterpart, depending on the type of files and the need for automatic
212 target directory creation.
214 - The "deleted header file problem" for *.m4 files is avoided by
215 stub rules. This allows `make' to trigger a rerun of `aclocal'
216 also if some previously needed macro file has been removed.
218 - Rebuild rules now also work for a removed `subdir/Makefile.in' in
219 an otherwise up to date tree.
221 - The `color-tests' option causes colored test result output on terminals.
223 - The `parallel-tests' option enables a new test driver that allows for
224 parallel test execution, inter-test dependencies, lazy test execution
225 for unit-testing, re-testing only failed tests, and formatted result output
226 as RST (reStructuredText) and HTML. Enabling this option may require some
227 changes to your test suite setup; see the manual for details.
229 - The `silent-rules' option enables Linux kernel-style silent build output.
230 This option requires the widely supported but non-POSIX `make' feature
231 of recursive variable expansion, so do not use it if your package needs
232 to build with `make' implementations that do not support it.
234 To enable less verbose build output, the developer has to use the Automake
235 option `silent-rules' in `AM_INIT_AUTOMAKE', or call the `AM_SILENT_RULES'
236 macro. The user may then set the default verbosity by passing the
237 `--enable-silent-rules' option to `configure'. At `make' run time, this
238 default may be overridden using `make V=0' for less verbose, and `make V=1'
239 for backward-compatible verbose output.
241 - New prefix `notrans_' for manpages which should not be transformed
242 by --program-transform.
244 - New macro AM_COND_IF for conditional evaluation and conditional
247 - For AC_CONFIG_LINKS, if source and destination are equal, do not
248 remove the file in a non-VPATH build. Such setups work with Autoconf
251 - AM_MAINTAINER_MODE now allows for an optional argument specifying
254 - AM_SUBST_NOTMAKE may prevent substitution of AC_SUBSTed variables,
255 useful especially for multi-line values.
257 - Automake's early configure-time sanity check now diagnoses an
258 unsafe absolute source directory name and makes configure fail.
260 - The Automake macros and rules cope better with whitespace in the
261 current directory name, as long as the relative path to `configure'
262 does not contain whitespace. To this end, the values of `$(MISSING)'
263 and `$(install_sh)' may contain suitable quoting, and their expansion
264 might need `eval'uation if used outside of a makefile. These
265 undocumented variables may be used in several documented macros such
266 as $(AUTOCONF) or $(MAKEINFO).
270 * Long standing bugs:
272 - Fix aix dependency tracking for libtool objects.
274 - Work around AIX sh quoting issue in AC_PROG_CC_C_O, leading to
275 unnecessary use of the `compile' script.
277 - For nobase_*_LTLIBRARIES with nonempty directory components, the
278 correct `-rpath' argument is used now.
280 - `config.status --file=Makefile depfiles' now also works with the
281 extra quoting used internally by Autoconf 2.62 and newer
282 (it used to work only without the `--file=' bit).
284 - The `missing' script works better with versioned tool names.
286 - Semantics for `missing help2man' have been revamped:
288 Previously, if `help2man' was not present, `missing help2man' would have
289 the following semantics: if some man page was out of date but present, then
290 a warning would be printed, but the exit status was 0. If the man page was
291 not present at all, then `missing' would create a replacement man page
292 containing an error message, and exit with a status of 2. This does not play
293 well with `make': the next run will see this particular man page as being up
294 to date, and will only error out on the next generated man page, if any;
295 repeat until all pages are done. This was not desirable.
297 These are the new semantics: if some man page is not present, and help2man
298 is not either, then `missing' will warn and generate the replacement page
299 containing the error message, but exit successfully. However, `make dist'
300 will ensure that no such bogus man pages are packaged into a tarball.
302 - Targets provided by automake behave better with `make -n', in that they
303 take care not to create files.
305 - `config.status Makefile... depfiles' works fine again in the presence of
306 disabled dependency tracking.
308 - The default no-op recursive rules for these targets also work with BSD make
309 now: html, install-html, install-dvi, install-pdf, install-pdf, install-info.
311 - `make distcheck' works also when both a directory and some file below it
312 have been added to a distribution variable, such as EXTRA_DIST or *_SOURCES.
314 - Texinfo dvi, ps, pdf, and html output files are not removed upon
315 `make mostlyclean' any more; only the LaTeX by-products are.
317 - Renamed objects also work with the `subdir-objects' option and
318 source file languages which Automake does not know itself.
320 - `automake' now correctly complains about variable assignments which are
321 preceded by a comment, extend over multiple lines with backslash-escaped
322 newlines, and end in a comment sign. Previous versions would silently
323 and wrongly ignore such assignments completely.
325 * Bugs introduced by 1.10:
327 - Fix output of dummy dependency files in presence of post-processed
328 Makefile.in's again, but also cope with long lines.
330 - $(EXEEXT) is automatically appended to filenames of XFAIL_TESTS
331 that have been declared as programs in the same Makefile.
332 This is for consistency with the analogous change to TESTS in 1.10.
334 - Fix order of standard includes to again be `-I. -I$(srcdir)',
335 followed by directories containing config headers.
339 * Version requirements:
341 - Autoconf 2.60 or greater is required.
343 - Perl 5.6 or greater is required.
345 * Changes to aclocal:
347 - aclocal now also supports -Wmumble and -Wno-mumble options.
349 - `dirlist' entries (for the aclocal search path) may use shell
350 wildcards such as `*', `?', or `[...]'.
352 - aclocal supports an --install option that will cause system-wide
353 third-party macros to be installed in the local directory
354 specified with the first -I flag. This option also uses #serial
355 lines in M4 files to upgrade local macros.
357 The new aclocal options --dry-run and --diff help to review changes
358 before they are installed.
360 - aclocal now outputs an autoconf version check in aclocal.m4 in
361 projects using automake.
363 For a few years, automake and aclocal have been calling autoconf
364 (or its underlying engine autom4te) to accurately retrieve the
365 data they need from configure.ac and its siblings. Doing so can
366 only work if all autotools use the same version of autoconf. For
367 instance a Makefile.in generated by automake for one version of
368 autoconf may stop working if configure is regenerated with another
369 version of autoconf, and vice versa.
371 This new version check ensures that the whole build system has
372 been generated using the same autoconf version.
374 * Support for new Autoconf macros:
376 - The new AC_REQUIRE_AUX_FILE Autoconf macro is supported.
378 - If `subdir-objects' is set, and AC_CONFIG_LIBOBJ_DIR is specified,
379 $(LIBOBJS), $(LTLIBOBJS), $(ALLOCA), and $(LTALLOCA) can be used
380 in different directories. However, only one instance of such a
381 library objects directory is supported.
383 * Change to Libtool support:
385 - Libtool generic flags (those that go before the --mode=MODE option)
386 can be specified using AM_LIBTOOLFLAGS and target_LIBTOOLFLAGS.
388 * Yacc and Lex changes:
390 - The rebuild rules for distributed Yacc and Lex output will avoid
391 overwriting existing files if AM_MAINTAINER_MODE and maintainer-mode
394 - ylwrap is now always used for lex and yacc source files,
395 regardless of whether there is more than one source per directory.
399 - Preprocessed assembler (*.S) compilation now honors CPPFLAGS,
400 AM_CPPFLAGS and per-target _CPPFLAGS, and supports dependency
401 tracking, unlike non-preprocessed assembler (*.s).
403 - subdir-object mode works now with Assembler. Automake assumes
404 that the compiler understands `-c -o'.
406 - Preprocessed assembler (*.S) compilation now also honors
407 $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES).
409 - Improved support for Objective C:
410 - Autoconf's new AC_PROG_OBJC will enable automatic dependency tracking.
411 - A new section of the manual documents the support.
413 - New support for Unified Parallel C:
414 - AM_PROG_UPC looks for a UPC compiler.
415 - A new section of the manual documents the support.
417 - Per-target flags are now correctly handled in link rules.
419 For instance maude_CFLAGS correctly overrides AM_CFLAGS; likewise
420 for maude_LDFLAGS and AM_LDFLAGS. Previous versions bogusly
421 preferred AM_CFLAGS over maude_CFLAGS while linking, and they
422 used both AM_LDFLAGS and maude_LDFLAGS on the same link command.
424 The fix for compiler flags (i.e., using maude_CFLAGS instead of
425 AM_CFLAGS) should not hurt any package since that is how _CFLAGS
426 is expected to work (and actually works during compilation).
428 However using maude_LDFLAGS "instead of" AM_LDFLAGS rather than
429 "in addition to" breaks backward compatibility with older versions.
430 If your package used both variables, as in
432 AM_LDFLAGS = common flags
434 a_LDFLAGS = more flags
437 and assumed *_LDFLAGS would sum up, you should rewrite it as
439 AM_LDFLAGS = common flags
441 a_LDFLAGS = $(AM_LDFLAGS) more flags
444 This new behavior of *_LDFLAGS is more coherent with other
445 per-target variables, and the way *_LDFLAGS variables were
446 considered internally.
448 * New installation targets:
450 - New targets mandated by GNU Coding Standards:
455 By default they will only install Texinfo manuals.
456 You can customize them with *-local variants:
462 - The undocumented recursive target `uninstall-info' no longer exists.
463 (`uninstall' is in charge of removing all possible documentation
464 flavors, including optional formats such as dvi, ps, or info even
465 when `no-installinfo' is used.)
467 * Miscellaneous changes:
469 - Automake no longer complains if input files for AC_CONFIG_FILES
470 are specified using shell variables.
472 - clean, distribution, or rebuild rules are normally disabled for
473 inputs and outputs of AC_CONFIG_FILES, AC_CONFIG_HEADERS, and
474 AC_CONFIG_LINK specified using shell variables. However, if these
475 variables are used as ${VAR}, and AC_SUBSTed, then Automake will
476 be able to output rules anyway.
477 (See the Automake documentation for AC_CONFIG_FILES.)
479 - $(EXEEXT) is automatically appended to filenames of TESTS
480 that have been declared as programs in the same Makefile.
481 This is mostly useful when some check_PROGRAMS are listed in TESTS.
483 - `-Wportability' has finally been turned on by default for `gnu' and
484 `gnits' strictness. This means, automake will complain about %-rules
485 or $(GNU Make functions) unless you switch to `foreign' strictness or
486 use `-Wno-portability'.
488 - Automake now uses AC_PROG_MKDIR_P (new in Autoconf 2.60), and uses
489 $(MKDIR_P) instead of $(mkdir_p) to create directories. The
490 $(mkdir_p) variable is still defined (to the same value as
491 $(MKDIR_P)) but should be considered obsolete. If you are using
492 $(mkdir_p) in some of your rules, please plan to update them to
493 $(MKDIR_P) at some point.
495 - AM_C_PROTOTYPES and ansi2knr are now documented as being obsolete.
496 They still work in this release, but may be withdrawn in a future one.
498 - Inline compilation rules for gcc3-style dependency tracking are
501 - Automake installs a "Hello World!" example package in $(docdir).
502 This example is used throughout the new "Autotools Introduction"
503 chapter of the manual.
507 * Makefile.in bloat reduction:
509 - Inference rules are used to compile sources in subdirectories when
510 the `subdir-objects' option is used and no per-target flags are
511 used. This should reduce the size of some projects a lot, because
512 Automake used to output an explicit rule for each such object in
515 - Automake no longer outputs three rules (.o, .obj, .lo) for each
516 object that must be built with explicit rules. It just outputs
517 the rules required to build the kind of object considered: either
518 the two .o and .obj rules for usual objects, or the .lo rule for
521 * Change to Libtool support:
523 - Libtool tags are used with libtool versions that support them.
524 (I.e., with Libtool 1.5 or greater.)
526 - Automake is now able to handle setups where a libtool library is
527 conditionally installed in different directories, as in
530 lib_LTLIBRARIES = liba.la
532 pkglib_LTLIBRARIES = liba.la
534 liba_la_SOURCES = ...
536 * Changes to aclocal:
538 - aclocal now ensures that AC_DEFUNs and AU_DEFUNs it discovers are
539 really evaluated, before it decides to include them in aclocal.m4.
540 This solves nasty problems with conditional redefinitions of
541 Autoconf macros in /usr/share/aclocal/*.m4 files causing extraneous
542 *.m4 files to be included in any project using these macros.
543 (Calls to AC_PROG_EGREP causing libtool.m4 to be included is the
544 most famous instance of this bug.)
546 - Do not complain about missing conditionally AC_REQUIREd macros
547 that are not actually used. In 1.8.x aclocal would correctly
548 determine which of these macros were really needed (and include
549 only these in the package); unfortunately it would also require
550 all of them to be present in order to run. This created
551 situations were aclocal would not work on a tarball distributing
552 all the macros it uses. For instance running aclocal on a project
553 containing only the subset of the Gettext macros in use by the
554 project did not work, because gettext conditionally requires other
557 * Portability improvements:
559 - Tar format can be chosen with the new options tar-v7, tar-ustar, and
560 tar-pax. The new option filename-length-max=99 helps diagnosing
561 filenames that are too long for tar-v7. (PR/414)
563 - Variables aumented with `+=' are now automatically flattened (i.e.,
564 trailing backslashes removed) and then wrapped around 80 colummns
565 (adding trailing backslashes). In previous versions, a long series
571 would result in a single-line definition of VAR that could possibly
572 exceed the maximum line length of some make implementations.
574 Non-augmented variables are still output as they are defined in
579 - Support Fortran 90/95 with the new "fc" and "ppfc" languages.
580 Works the same as the old Fortran 77 implementation; just replace
581 F77 with FC everywhere (exception: FFLAGS becomes FCFLAGS).
582 Requires a version of autoconf which provides AC_PROG_FC (>=2.59).
584 - Support for conditional _LISP.
586 - Support for conditional -hook and -local rules (PR/428).
588 - Diagnose AC_CONFIG_AUX_DIR calls following AM_INIT_AUTOMAKE. (PR/49)
590 - Automake will not write any Makefile.ins after the first error it
591 encounters. The previous Makefile.ins (if any) will be left in
592 place. (Warnings will not prevent output, but remember they can
593 be turned into errors with -Werror.)
595 - The restriction that SUBDIRS must contain direct children is gone.
598 - The manual tells more about SUBDIRS vs. DIST_SUBDIRS.
599 It also gives an example of nested packages using AC_CONFIG_SUBDIRS.
603 * Long standing bugs:
605 - Define DIST_SUBDIRS even when the `no-dist' or `cygnus' options are used
606 so that `make distclean' and `make maintainer-clean' can work.
608 - Define AR and ARFLAGS even when only EXTRA_LIBRARIES are defined.
610 - Fix many rules to please FreeBSD make, which runs commands with `sh -e'.
612 - Polish diagnostic when no input file is found.
616 * Long standing bugs:
618 - Fix AM_PATH_PYTHON to correctly display $PYTHON when it has been
619 overridden by the user.
621 - Honor PATH_SEPARATOR in various places of the Automake package, for
624 - Adjust dependency tracking mode detection to ICC 8.0's new output.
627 - Fix install-sh so it can install the `mv' binary... using `mv'.
629 - Fix tru64 dependency tracking for libtool objects.
631 - Work around Exuberant Ctags when creating a TAGS files in a directory
632 without files to scan but with subdirectories to include.
634 * Bugs introduced by 1.8:
636 - Fix an "internal error" when @LIBOBJS@ is used in a variable that is
637 not defined in the same conditions as the _LDADD that uses it.
639 - Do not warn when JAVAROOT is overridden, this is legitimate.
643 * Long standing bugs:
645 - Quote filenames in installation rules, in case $DESTDIR, $prefix,
646 or any of the other *dir variables contain a space.
648 Please note that Automake does not and cannot support spaces in
649 filenames that are involved during the build. This change affects
650 only installation paths, so that `make install' does not bomb out
651 in packages configured with
652 ./configure --prefix '/c/Program Files'
654 - Fix the depfiles output so it works with GNU sed (<4.1) even when
655 POSIXLY_CORRECT is set.
657 - Do not AC_SUBST(LIBOBJS) in AM_WITH_REGEX. This macro was unusable
658 since Autoconf 2.54, which defines LIBOBJS itself.
660 - Fix a potential (but unlikely) race condition in parallel elisp
661 builds. (Introduced in 1.7.3.)
663 - Do not assume that users override _DEPENDENCIES in all conditions
664 where Automake will try to define them.
666 - Do not use `mkdir -p' in mkinstalldirs, unless this is GNU mkdir.
667 Solaris 8's `mkdir -p' is not thread-safe and can break parallel
670 This fix also affects the $(mkdir_p) variable defined since
671 Automake 1.8. It will be set to `mkdir -p' only if mkdir is GNU
672 mkdir, and to `mkinstalldirs' or `install-sh -d' otherwise.
674 - Secure temporary directory creation in `make distcheck'. (PR/413)
676 - Do not generate two build rules for `parser.h' when the
677 parser appears in two different conditionals.
679 - Work around a Solaris 8 /bin/sh bug in the test for dependency
680 checking. Usually ./configure will not pick this shell; so this
681 fix only helps cases where the shell is forced to /bin/sh.
683 * Bugs introduced by 1.8:
685 - In some situations (hand-written `m4_include's), aclocal would
686 call the `File::Spec->rel2abs' method, which was only introduced
687 in Perl 5.6. This new version reestablish support Perl 5.005.
689 It is likely that the next major Automake releases will require at
690 least Perl 5.6. Consider upgrading your development environment
691 if you are still using the five-year-old Perl 5.005.
693 - Automake would sometimes fail to define rules for targets listed
694 in variables defined in multiple conditions. For instance on
700 it would define only the `a.$(OBJEXT): a.c' rule and omit the
701 `b.$(OBJEXT): b.c' rule.
703 * New sections in manual:
705 - Third-Party Makefiles: how to interface third party Makefiles.
706 - Upgrading: upgrading packages to newer Automake versions.
707 - Multiple Outputs: handling tools that produce many outputs.
711 * A (well known) portability bug slipped in the changes made to
712 install-sh in Automake 1.8.1. The broken install-sh would refuse to
713 install anything on Tru64.
715 * Fix install rules for conditionally built python files. (This never
720 * Bugs introduced by 1.8:
722 - Fix Config.pm import error with old Perl versions (at least
723 5.005_03). One symptom is that aclocal could not find its macro
726 - Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
727 created by `make install' are always world readable, even if the
728 installer happens to have an overly restrictive umask (e.g. 077).
729 This was a mistake and has been reverted. There are at least two
730 reasons why we must not use `-m 0755':
731 - it causes special bits like SGID to be ignored,
732 - it may be too restrictive (some setups expect 775 directories).
734 - Fix aclocal to honor definitions located in files which have been
735 m4_included manually. aclocal 1.8 had been updated to check
736 m4_included files for new requirements, but forgot that these
737 m4_included files can also provide new definitions.
739 Note that if you have such a setup, we recommend you get rid of
740 it. In the past, there was a reason to m4_include files manually:
741 aclocal used to duplicate entire M4 files into aclocal.m4, even
742 files that were distributed. Some packages were therefore
743 m4_including the distributed file directly, and playing some
744 tricks to ensure aclocal would not copy that file to aclocal.m4,
745 in order to limit the amount of duplication. Since aclocal 1.8.x
746 will precisely output m4_includes for local M4 files, we recommend
747 that you clean up your setup, removing all manual m4_includes and
748 letting aclocal output them.
750 - Output detailed menus in the Info version if the Automake manual,
751 so that Emacs can locate the indexes.
753 - configure.ac and configure were listed twice in DIST_COMMON (an
754 internal variable where Automake lists configury files to
755 distribute). This was harmless, but unaesthetic.
757 - Use `chmod a-w' instead of `chmod -w' as the latter honors umask.
758 This was an issue only in the Automake package itself, not in
761 - Automake assumed that all AC_CONFIG_LINKS arguments had the form
762 DEST:SRC. This was wrong, as some packages do
763 AC_CONFIG_LINKS($computedlinks). This version no longer abort in
766 - Contrary to mkinstalldirs, $(mkdir_p) was expecting exactly one
767 argument. This caused two kinds of failures:
768 - Rules installing data in a conditionally defined directory
769 failed when that directory was undefined. In this case no
770 argument was supplied.
771 - `make installdirs' failed, because several directories were
772 passed to $(mkdir_p). This was an issue only on platform
773 were $(mkdir_p) is implemented with `install-sh -d'.
774 $(mkdir_p) as been changed to accept 0 or more arguments, as
777 * Long-standing bugs:
779 - Fix an unexpected diagnostic occurring when users attempt
780 to override some internal variables that Automake appends to.
782 - aclocal now scans configure.ac for macro definitions (PR/319).
784 - Fix a portability issue with OSF1/Tru64 Make. If a directory
785 distributes files which are outside itself (this usually occurs
786 when using AC_CONFIG_AUX_DIR([../dir]) to use auxiliary files
787 from a parent package), then `make distcheck' fails due to an
788 optimization performed by OSF1/Tru64 Make in its VPATH handling.
789 (tests/subpkg2.test failure)
791 - Fix another portability issue with Sun and OSF1/Tru64 Make.
792 In a VPATH-build configuration, `make install' would install
793 nobase_ files to wrong locations.
795 - Fix a Perl `uninitialized value' diagnostic occurring when
796 automake complains that a Texinfo file does not have a
797 @setfilename statement.
799 - Erase config.status.lineno during `make distclean'. This file
800 can be created by config.status. Automake already knew about
801 configure.lineno, but forgot config.status.lineno.
803 - Distribute all files, even those which are built and installed
804 conditionally. This change affects files listed in conditionally
805 defined *_HEADERS and *_PYTHON variable (unless they are nodist_*)
806 as well as those listed in conditionally defined dist_*_DATA,
807 dist_*_JAVA, dist_*_LISP, and dist_*_SCRIPTS variables.
809 - Fix AM_PATH_LISPDIR to avoid \? in sed regular expressions; it
810 doesn't conform to POSIX.
812 - Normalize help strings for configure variables and options added
817 - Check for python2.4 in AM_PATH_PYTHON.
819 * Spurious failures in test suite:
821 - tests/libtool5.test, tests/ltcond.test, tests/ltcond2.test,
822 tests/ltconv.test: fix failures with CVS Libtool.
823 - tests/aclocal6.test: fix failure if autom4te.cache is disabled.
824 - tests/txinfo24.test, tests/txinfo25.test, tests/txinfo28.test:
825 fix failures with old Texinfo versions.
831 - The NEWS file is more verbose.
835 - Autoconf 2.58 or greater is required.
839 - Default source file names in the absence of a _SOURCES declaration
840 are made by removing any target extension before appending `.c', so
841 to make the libtool module `foo.la' from `foo.c', you only need to
844 lib_LTLIBRARIES = foo.la
845 foo_la_LDFLAGS = -module
847 For backward compatibility, foo_la.c will be used instead of
848 foo.c if this file exists or is the explicit target of a rule.
849 However -Wobsolete will warn about this deprecated naming.
851 - AR's `cru' flags are now set in a global ARFLAGS variable instead
852 of being hard-coded in each $(AR) invocation, so they can be
853 substituted from configure.ac. This has been requested by people
854 dealing with non-POSIX ar implementations.
856 - New warning option: -Woverride. This will warn about any user
857 target or variable definitions which override Automake
860 - Texinfo rules back up and restore info files when makeinfo fails.
862 - Texinfo rules now support the `html' target.
863 Running this requires Texinfo 4.0 or greater.
865 `html' is a new recursive target, so if your package mixes
866 hand-crafted `Makefile.in's with Automake-generated
867 `Makefile.in's, you should adjust the former to support (or
868 ignore) this target so that `make html' recurses successfully. If
869 you had a custom `html' rule in your `Makefile.am', it's better to
870 rename it as `html-local', otherwise your rule will override
871 Automake's new rule (you can check that by running `automake
872 -Woverride') and that will stop the recursion to subdirectories.
874 Last but not least, this `html' rule is declared PHONY, even when
875 overridden. Fortunately, it appears that few packages use a
876 non-PHONY `html' rule.
878 - Any file which is m4_included from configure.ac will appear as a
879 configure and Makefile.in dependency, and will be automatically
882 - The rules for rebuilding Makefiles and Makefile.ins will now
883 rebuild all Makefiles and all Makefile.ins at once when one of
884 configure's dependencies has changed. This is considerably faster
885 than previous implementations, where config.status and automake
886 were run separately in each directory (this still happens when you
887 change a Makefile.am locally, without touching configure.ac or
888 friends). Doing this also solves a longstanding issue: these
889 rebuild rules failed to work when adding new directories to the
890 tree, forcing you to run automake manually.
892 - For similar reasons, the rules to rebuild configure,
893 config.status, and aclocal.m4 are now defined in all directories.
894 Note that if you were using the CONFIG_STATUS_DEPENDENCIES and
895 CONFIGURE_DEPENDENCIES (formerly undocumented) variables, you
896 should better define them in all directories. This is easily done
897 using an AC_SUBST (make sure you prefix these dependencies with
898 $(top_srcdir) since this variable will appear at different
899 levels of the build tree).
901 - aclocal will now use `m4_include' instead of copying local m4
902 files into aclocal.m4. (Local m4 files are those you ship with
903 your project, other files will be copied as usual.)
905 Because m4_included files are automatically distributed, it means
906 for most projects there is no point in EXTRA_DISTing the list of
907 m4 files which are used. (You can probably get rid of
908 m4/Makefile.am if you had one.)
910 - aclocal will avoid touching aclocal.m4 when possible, so that
911 Autom4te's cache isn't needlessly invalidated. This behavior can
912 be switched off with the new `--force' option.
914 - aclocal now uses Autoconf's --trace to detect macros which are
915 actually used and will no longer include unused macros simply
916 because they where mentioned. This was often the case for macros
917 called conditionally.
919 - New options no-dist and no-dist-gzip.
921 - compile, depcomp, elisp-comp, install-sh, mdate-sh, mkinstalldirs,
922 py-compile, and ylwrap, now all understand --version and --help.
924 - Automake will now recognize AC_CONFIG_LINKS so far as removing created
925 links as part of the distclean target and including source files in
928 - AM_PATH_PYTHON now supports ACTION-IF-FOUND and ACTION-IF-NOT-FOUND
929 argument. The latter can be used to override the default behavior
932 - Automake will exit with $? = 63 on version mismatch. (So does
933 Autoconf 2.58) missing knows this, and in this case it will
934 emulate the tools as if they were absent. Because older versions
935 of Automake and Autoconf did not use this exit code, this change
936 will only be useful in projects generated with future versions of
939 - When using AC_CONFIG_FILES with multiple input files, Automake
940 generates the first ".in" input file for which a ".am" exists.
941 (Former versions would try to use only the first input file.)
943 - lisp_DATA is now allowed. If you are using the empty ELCFILES
944 idiom to disable byte-compilation of lisp_LISP files, it is
945 recommended that you switch to using lisp_DATA. Note that
946 this is not strictly equivalent: lisp_DATA will install elisp
947 files even if emacs is not installed, while *_LISP do not
948 install anything unless emacs is found.
950 - Makefiles will prefer `mkdir -p' over mkinstalldirs if it is
951 available. This selection is achieved through the Makefile
952 variable $(mkdir_p) that is set by AM_INIT_AUTOMAKE to either
953 `mkdir -m 0755 -p --', `$(mkinstalldirs) -m 0755', or
954 `$(install_sh) -m 0755 -d'.
958 - Because `mkdir -p' is available on most platforms, and we can use
959 `install-sh -d' when it is not, the use of the mkinstalldirs
960 script is being phased out. `automake --add-missing' no longer
961 installs it, and if you remove mkinstalldirs from your package,
962 automake will define $(mkinstalldirs) as an alias for $(mkdir_p).
964 Gettext 0.12.1 still requires mkinstalldirs. Fortunately
965 gettextize and autopoint will install it when needed. Automake
966 will continue to define the $(mkinstalldirs) and to distribute
967 mkinstalldirs when this script is in the source tree.
969 - AM_PROG_CC_STDC is now empty. The content of this macro was
970 merged in AC_PROG_CC. If your code uses $am_cv_prog_cc_stdc, you
971 should adjust it to use $ac_cv_prog_cc_stdc instead. (This
972 renaming should be safe, even if you have to support several,
973 versions of Automake, because AC_PROG_CC defines this variable
974 since Autoconf 2.54.)
976 - Some users where using the undocumented ACLOCAL_M4_SOURCES
977 variable to override the aclocal.m4 dependencies computed
978 (inaccurately) by older versions of Automake. Because Automake
979 now tracks configure's m4 dependencies accurately (see m4_include
980 above), the use of ACLOCAL_M4_SOURCES should be considered
981 obsolete and will be flagged as such when running `automake
986 - Defining programs conditionally using Automake conditionals no
987 longer leads to a combinatorial explosion. The following
988 construct used to be troublesome when used with dozens of
1003 Likewise for _SOURCES, _LDADD, and _LIBADD variables.
1005 - Due to implementation constraints, previous versions of Automake
1006 proscribed multiple conditional definitions of some variables
1016 All _PROGRAMS, _LDADD, and _LIBADD variables were affected.
1017 This restriction has been lifted, and these variables now
1018 support multiple conditional definitions as do other variables.
1020 - Cleanup the definitions of $(distdir) and $(top_distdir).
1021 $(top_distdir) now points to the root of the distribution
1022 directory created during `make dist', as it did in Automake 1.4,
1023 not to the root of the build tree as it did in intervening
1024 versions. Furthermore these two variables are now only defined in
1025 the top level Makefile, and passed to sub-directories when running
1028 - The --no-force option now correctly checks the Makefile.in's
1029 dependencies before deciding not to update it.
1031 - Do not assume that make files are called Makefile in cleaning rules.
1033 - Update .info files in the source tree, not in the build tree. This
1034 is what the GNU Coding Standard recommend. Only Automake 1.7.x
1035 used to update these files in the build tree (previous versions did
1036 it in the source tree too), and it caused several problems, varying
1037 from mere annoyance to portability issues.
1039 - COPYING, COPYING.LIB, and COPYING.LESSER are no longer overwritten
1040 when --add-missing and --force-missing are used. For backward
1041 compatibility --add-missing will continue to install COPYING (in
1042 `gnu' strictness) when none of these three files exist, but this
1043 use is deprecated: you should better choose a license yourself and
1044 install it once for all in your source tree (and in your code
1047 - Fix ylwrap so that it does not overwrite header files that haven't
1048 changed, as the inline rule already does.
1050 - User-defined rules override automake-defined rules for the same
1051 targets, even when rules do not have commands. This is not new
1052 (and was documented), however some of the automake-generated
1053 rules have escaped this principle in former Automake versions.
1054 Rules for the following targets are affected by this fix:
1056 clean, clean-am, dist-all, distclean, distclean-am, dvi, dvi-am,
1057 info, info-am, install-data-am, install-exec-am, install-info,
1058 install-info-am, install-man, installcheck-am, maintainer-clean,
1059 maintainer-clean-am, mostlyclean, mostlyclean-am, pdf, pdf-am,
1060 ps, ps-am, uninstall-am, uninstall-info, uninstall-man
1062 Practically it means that an attempt to supplement the dependencies
1063 of some target, as in
1065 clean: my-clean-rule
1067 will now *silently override* the automake definition of the
1068 rule for this target. Running `automake -Woverride' will diagnose
1069 all such overriding definitions.
1071 It should be noted that almost all these targets support a *-local
1072 variant that is meant to supplement the automake-defined rule
1073 (See node `Extending' in the manual). The above rule should
1076 clean-local: my-clean-rule
1078 These *-local targets have been documented since at least
1079 Automake 1.2, so you should not fear the change if you have
1080 to support multiple automake versions.
1084 - The Automake manual is now distributed under the terms of the GNU FDL.
1086 - Targets dist-gzip, dist-bzip2, dist-tarZ, dist-zip are always defined.
1088 - core dumps are no longer removed by the cleaning rules. There are
1089 at least three reasons for this:
1090 1. These files should not be created by any build step,
1091 so their removal do not fit any of the cleaning rules.
1092 Actually, they may be precious to the developer.
1093 2. If such file is created during a build, then it's clearly a
1094 bug Automake should not hide. Not removing the file will
1095 cause `make distcheck' to complain about its presence.
1096 3. Operating systems have different naming conventions for
1097 core dump files. A core file on one system might be a
1098 completely legitimate data file on another system.
1100 - RUNTESTFLAGS, CTAGSFLAGS, ETAGSFLAGS, JAVACFLAGS are no longer
1101 defined by Automake. This means that any definition in the
1102 environment will be used, unless overridden in the Makefile.am or
1103 on the command line. The old behavior, where these variables were
1104 defined empty in each Makefile, can be obtained by AC_SUBSTing or
1105 AC_ARG_VARing each variable from configure.ac.
1107 - CONFIGURE_DEPENDENCIES and CONFIG_STATUS_DEPENDENCIES are now
1108 documented. (The is not a new feature, these variables have
1109 been there since at least Automake 1.4.)
1111 Bugs fixed in 1.7.9:
1112 * Fix install-strip to work with nobase_ binaries.
1113 * Fix renaming of #line directives in ylwrap.
1114 * Rebuild with Autoconf 2.59. (1.7.8 was not installable with pdksh.)
1116 Bugs fixed in 1.7.8:
1117 * Remove spurious blank lines in cleaning rules introduced in 1.7.7.
1118 * Fix detection of Debian's install-info, broken since version 1.5.
1119 (Debian bug #213524).
1120 * Honor -module if it appears in AM_LDFLAGS (i.e., relax name checking)
1121 This was only done for libfoo_LDFLAGS and LDFLAGS in previous versions.
1123 Bugs fixed in 1.7.7:
1124 * The implementation of automake's --no-force option is unreliable,
1125 so this option is ignored in this version. A real fix will appear in
1126 Automake 1.8. (Debian Bug #206299)
1127 * AM_PATH_PYTHON: really check the whole list of interpreters if no
1128 argument is given. (PR/399)
1129 * Do not warn about leading `_' in variable names, even with -Wportability.
1130 * Support user redefinitions of TEXINFO_TEX.
1131 * depcomp: support AIX Compiler version 6.
1132 * Fix missing rebuilds during `make dist' with BSD make.
1133 (Could produce tarballs containing out-of-date files.)
1134 * Resurrect multilib support.
1135 * Noteworthy manual updates:
1136 - Extending aclocal: how to write m4 macros that won't trigger warnings
1138 - A Shared Library: Rewrite and split into subsections.
1140 Bugs fixed in 1.7.6:
1141 * Fix depcomp's icc mode for ICC 7.1.
1142 * Diagnose calls to AC_CONFIG_FILES and friends with not enough arguments.
1143 * Fix maintainer-clean's removal of autom4te.cache in VPATH builds.
1144 * Fix AM_PATH_LISPDIR to work with POSIXLY_CORRECT=1.
1145 * Fix the location reported in some diagnostics related to AUTOMAKE_OPTIONS.
1146 * Remove Latin-1 characters from elisp-comp.
1147 * Update the manual's @dircategory to match the Free Software Directory.
1149 Bugs fixed in 1.7.5:
1150 * Update install-sh's license to remove an advertising clause.
1151 (Debian bug #191717)
1152 * Fix a bug introduced in 1.7.4, related to BUILT_SOURCE handling,
1153 that caused invalid Makefile.ins to be generated.
1154 * Make sure AM_MAKE_INCLUDE doesn't fail when a `doit' file exists.
1155 * New FAQ entry: renamed objects.
1157 Bugs fixed in 1.7.4:
1158 * Tweak the TAGS rule to support Exuberant Ctags (in addition to
1159 the Emacs implementation)
1160 * Fix output of aclocal.m4 dependencies in subdirectories.
1161 * Use `mv -f' instead of `mv' in fastdep rules.
1162 * Upgrade mdate-sh to work on OS/2.
1163 * Don't byte-compile elisp files when ELCFILES is set empty.
1164 (this documented feature was broken by 1.7.3)
1165 * Diagnose trailing backslashes on last line of Makefile.am.
1166 * Diagnose whitespace following trailing backslashes.
1167 * Multiple tests are now correctly supported in DEJATOOL. (PR/388)
1168 * Fix rebuilt rules for AC_CONFIG_FILES([Makefile:Makefile.in:Makefile.bot])
1170 * `make install' will build `BUILT_SOURCES' first.
1171 * Minor documentation fixes.
1173 Bugs fixed in 1.7.3:
1174 * Fix stamp files numbering (when using multiple AC_CONFIG_HEADERS).
1175 * Query distutils for `pythondir' and `pythonexecdir', instead of
1176 using an hardcoded path. This should allow builds on 64-bit
1177 distributions that usually use lib64/ instead of lib/.
1178 * AM_PATH_PYTHON will also search for python2.3.
1179 * elisp files are now built all at once instead of one by one. Besides
1180 incurring a speed-up, this is required to support interdependent elisp files.
1181 * Support for DJGPP:
1182 - `make distcheck' will now work in `_inst/' and `_build' instead
1183 of `=inst/' and `=build/'
1184 - use `_dirstamp' when the file-system doesn't support `.dirstamp'
1185 - install/uninstall `*.i[0-9][0-9]'-style info files
1186 - more changes that affect only the Automake package (not its output)
1187 * Fix some incompatibilities with upcoming perl-5.10.
1188 * Properly quote AC_PACKAGE_TARNAME and AC_PACKAGE_VERSION when defining
1189 PACKAGE and VERSION.
1191 - dashmstdout and dashXmstdout modes: don't use `-o /dev/null', this
1192 is troublesome with gcc and Solaris compilers. (PR/385)
1193 - makedepend mode: work with Libtool. (PR/385 too)
1195 * better support for unusual gettext setups, such as multiple po/ directories
1197 - Flag missing po/ and intl/ directories as warnings, not errors.
1198 - Disable these warnings if po/ does not exist.
1199 * Noteworthy manual updates:
1201 - Document how AC_CONFIG_AUX_DIR interacts with missing files.
1203 - Document `AM_YFLAGS = -d'. (PR/382)
1205 Bugs fixed in 1.7.2:
1206 * Fix installation and uninstallation of Info files built in subdirectories.
1207 * Do not run `./configure --with-included-gettext' during `make distcheck'
1208 if AM_GNU_GETTEXT([external]) is used.
1209 * Correctly uninstall renamed man pages.
1210 * Do not strip escaped newline in variables defined in one condition
1211 and augmented in another condition.
1212 * Fix ansi2knr rules for LIBOBJS sources.
1213 * Clean all known Texinfo index files, not only those which appear to
1214 be used, because we cannot know wich indexes are used in included files.
1215 (PR/375, Debian Bug #168671)
1216 * Honor only the first @setfilename seen in a Texinfo file.
1217 * Treat "required file X not found" diagnostics as errors (exit status 1).
1218 * Don't complain that a required file is not found when it is a Makefile
1220 * Don't use single suffix inference rules when building `.info'-less
1221 Info files, for the sake of Solaris make.
1222 * The `check' target now depends on `$(BUILT_SOURCES)'. (PR/359)
1223 * Recognize multiple inference rules such as `.a.b .c.d:'. (PR/371)
1224 * Warn about multiple inference rules when -Wportability is used. (PR/372)
1225 * Fix building of deansified files from subdirectories. (PR/370)
1226 * Add missing `fi' in the .c->.obj rules.
1227 * Improve install-sh to work even when names contain spaces or certain
1228 (but not all) shell metachars.
1229 * Fix the following spurious failures in the test suite:
1230 depcomp2.test, gnits2.test, gnits3.test, python3.test, texinfo13.test
1231 * Noteworthy manual updates:
1232 - Augment the section about BUILT_SOURCES.
1233 - Mention that AM_PROG_CC_STDC is a relic that is better avoided today.
1235 Bugs fixed in 1.7.1:
1236 * Honor `ansi2knr' for files built in subdirectories, or using per-targets
1238 * Aclocal should now recognize macro names containing parentheses, e.g.
1239 AC_DEFUN([AC_LANG_PREPROC(Fortran 90)], [...]).
1240 * Erase *.sum and *.log files created by DejaGnu, during `make distclean'.
1242 * Install Python files even if they were built. (PR/369)
1243 * Have stamp-vti dependent upon configure instead of configure.ac, as the
1244 version might not be defined in the latter. (PR/358)
1245 * Reorder arguments passed to a couple of commands, so things works
1246 when POSIXLY_CORRECT=1.
1247 * Fix a regex that can cause Perl to segfault on large input.
1249 * Fix distribution of packages that have some sources defined conditionally,
1250 as in the `Conditional compilation using Automake conditionals' example
1252 * Fix spurious test suite failures on IRIX.
1253 * Don't report a required variable as undefined if it has been
1254 defined conditionally for the "right" conditions.
1255 * Fix cleaning of the /tmp subdirectory used by `make distcheck', in case
1256 `make distcheck' fails.
1257 * Fix distribution of included Makefile fragment, so we don't create
1258 spurious directories in the distribution. (PR/366)
1259 * Don't complain that a target lacks `.$(EXEEXT)' when it has it.
1262 * Autoconf 2.54 is required.
1263 * `aclocal' and `automake' will no longer warn about obsolete
1264 configure macros. This is done by `autoconf -Wobsolete'.
1265 * AM_CONFIG_HEADER, AM_SYS_POSIX_TERMIOS and
1266 AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL are obsolete (although still
1267 supported). You should use AC_CONFIG_HEADERS, AC_SYS_POSIX_TERMIOS,
1268 and AC_HEADER_TIOCGWINSZ instead. `autoupdate' can upgrade
1269 `configure.ac' for you.
1270 * Support for per-program and per-library `_CPPFLAGS'.
1271 * New `ctags' target (builds CTAGS files).
1272 * Support for -Wmumble and -Wno-mumble, where mumble is a warning category
1273 (see `automake --help' or the manual for a list of them).
1274 * Honor the WARNINGS environment variable.
1275 * Omit the call to depcomp when using gcc3: call the compiler directly.
1276 * A new option, std-options, tests that programs support --help and --version
1277 when `make installcheck' is run. This is enabled by --gnits.
1278 * Texinfo rules now support the `ps' and `pdf' targets.
1279 * Info files are now created in the build directory, not the source directory.
1280 * info_TEXINFOS supports files in subdirectories (this requires Texinfo 4.1
1282 * `make distcheck' will enforce DESTDIR support by attempting
1284 * `+=' can be used in conditionals, even if the augmented variable
1285 was defined for another condition.
1286 * Makefile fragments (inserted with `include') are always distributed.
1287 * Use Autoconf's --trace interface to inspect configure.ac and get
1288 a more accurate view of it.
1289 * Add support for extending aclocal's default macro search path
1290 using a `dirlist' file within the aclocal directory.
1291 * automake --output-dir is deprecated.
1292 * The part of the distcheck target that checks whether uninstall actually
1293 removes all installed files has been moved in a separate target,
1294 distuninstallcheck, so it can be overridden easily.
1298 * Support for AM_INIT_GETTEXT([external])
1299 * Bug fixes, including:
1300 - Fix Automake's own `make install' so it works even if `ln' doesn't.
1301 - nobase_ programs and scripts honor --program-transform correctly.
1302 - Erase configure.lineno during `make distclean'.
1303 - Erase YACC and LEX outputs during `make maintainer-clean'.
1306 * Many bug fixes, including:
1307 - Requiring the current version works.
1308 - Fix "$@" portability issues (for Zsh).
1309 - Fix output of dummy dependency files in presence of post-processed
1311 - Don't compute dependencies in background to avoid races with libtool.
1312 - Fix handling of _OBJECTS variables for targets sharing source variables.
1313 - Check dependency mode for Java when AM_PROG_GCJ is used.
1316 * automake --output-dir is deprecated
1317 * Many bug fixes, including:
1318 - Don't choke on AM_LDFLAGS definitions.
1319 - Clean libtool objects from subdirectories.
1320 - Allow configure variables with reserved suffix and unknown prefix
1321 (e.g. AC_SUBST(mumble_LDFLAGS) when 'mumble' is not a target).
1322 - Fix the definition of AUTOMAKE and ACLOCAL in configure.
1325 * Autoconf 2.52 is required.
1326 * automake no longer run libtoolize.
1327 This is the job of autoreconf (from GNU Autoconf).
1328 * `dist' generates all the archive flavors, as did `dist-all'.
1329 * `dist-gzip' generates the Gzip tar file only.
1330 * Combining Automake Makefile conditionals no longer lead to a combinatorial
1331 explosion. Makefile.in's keep a reasonable size.
1332 * AM_FUNC_ERROR_AT_LINE, AM_FUNC_STRTOD, AM_FUNC_OBSTACK, AM_PTRDIFF_T
1333 are no longer shipped, since Autoconf 2.52 provides them (both as AM_
1335 * `#line' of Lex and Yacc files are properly set.
1336 * EXTRA_DIST can contain generated directories.
1337 * Support for dot-less extensions in suffix rules.
1338 * The part of the distcheck target that checks whether distclean actually
1339 cleans all built files has been moved in a separate target, distcleancheck,
1340 so it can be overridden easily.
1341 * `make distcheck' will pass additional options defined in
1342 $(DISTCHECK_CONFIGURE_FLAGS) to configure.
1343 * Fixed CDPATH portability problems, in particular for MacOS X.
1344 * Fixed handling of nobase_ targets.
1345 * Fixed support of implicit rules leading to .lo objects.
1346 * Fixed late inclusion of --add-missing files (e.g. depcomp) in DIST_COMMON
1347 * Added uninstall-hook target
1348 * `AC_INIT AM_INIT_AUTOMAKE(tarname,version)' is an obsolete construct.
1349 You can now use `AC_INIT(pkgname,version) AM_INIT_AUTOMAKE' instead.
1350 (Note that "pkgname" is not "tarname", see the manual for details.)
1351 It is also possible to pass a list of global Automake options as
1352 first argument to this new form of AM_INIT_AUTOMAKE.
1353 * Compiler-based assembler is now called `CCAS'; people expected `AS'
1354 to be a real assembler.
1355 * AM_INIT_AUTOMAKE will set STRIP itself when it needs it. Adding
1356 AC_CHECK_TOOL([STRIP], [strip]) manually is no longer required.
1357 * aclocal and automake are also installed with the version number
1358 appended, and some of the install directory names have changed.
1359 This lets you have multiple versions installed simultaneously.
1360 * Support for parsers and lexers in subdirectories.
1363 * Support for `configure.ac'.
1364 * Support for `else COND', `endif COND' and negated conditions `!COND'.
1365 * `make dist-all' is much faster.
1366 * Allows '@' AC_SUBSTs in macro names.
1367 * Faster AM_INIT_AUTOMAKE (requires update of `missing' script)
1368 * User-side dependency tracking. Developers no longer need GNU make
1370 * Uses DIST_SUBDIRS in some situations when SUBDIRS is conditional
1371 * Most files are correctly handled if they appear in subdirs
1372 For instance, a _DATA file can appear in a subdir
1373 * GNU tar is no longer required for `make dist'
1374 * Added support for `dist_' and `nodist_' prefixes
1375 * Added support for `nobase_' prefix
1376 * Compiled Java support
1377 * Support for per-executable and per-library compilation flags
1381 * Added support for the Fortran 77 programming language.
1382 * Re-indexed the Automake Texinfo manual.
1383 * Added `AM_FOOFLAGS' variable for each compiler invocation;
1384 e.g. AM_CFLAGS can be used in Makefile.am to set C compiler flags
1385 * Support for latest autoconf, including support for objext
1386 * Can now put `.' in SUBDIRS to control build order
1387 * `include' command and `+=' support for macro assignment
1388 * Dependency tracking no long susceptible to deleted header file problem
1389 * Maintainer mode now a conditional. @MAINT@ is now an anachronism.
1394 * Better Cygwin32 support
1395 * Support for suffix rules with _SOURCES variables
1396 * New options `readme-alpha' and `check-news'; Gnits mode sets these
1397 * @LEXLIB@ no longer required when lex source seen
1398 Lex support in `missing', and new lex macro. Update your missing script.
1399 * Built-in support for assembly
1400 * aclocal gives error if `AM_' macro not found
1401 * Passed YFLAGS, not YACCFLAGS, to yacc
1402 * AM_PROG_CC_STDC does not have to come before AC_PROG_CPP
1403 * Dependencies computed as a side effect of compilation
1404 * Preliminary support for Java
1405 * DESTDIR support at "make install" time
1406 * Improved ansi2knr support; you must use the latest ansi2knr.c (included)
1410 * Better DejaGnu support
1411 * Added no-installinfo option
1412 * Added Emacs Lisp support
1413 * Added --no-force option
1414 * Included `aclocal' program
1415 * Automake will now generate rules to regenerate aclocal.m4, if appropriate
1416 * Now uses `AM_' macro names everywhere
1417 * ansi2knr option can have directory prefix (eg `../lib/ansi2knr')
1418 ansi2knr now works correctly on K&R sources
1419 * Better C++, yacc, lex support
1420 * Will compute _DEPENDENCIES variables automatically if not supplied
1421 * Will interpolate $(...) and ${...} when examining contents of a variable
1422 * .deps files now in build directory, not source directory; dependency
1423 handling generally rewritten
1424 * DATA, MANS and BUILT_SOURCES no longer included in distribution
1425 * can now put config.h into a subdir
1426 * Added dist-all target
1427 * Support for install-info program (see texinfo 3.9)
1428 * Support for "yacc -d"
1429 * configure substitutions are automatically discovered and included
1430 in generated Makefile.in
1431 * Special --cygnus mode
1432 * OMIT_DEPENDENCIES can now hold list of dependencies to be omitted
1433 when making distribution. Some dependencies are auto-ignored.
1434 * Changed how libraries are specified in _LIBRARIES variable
1435 * Full libtool support, from Gord Matzigkeit
1436 * No longer have to explicitly touch stamp-h when using AC_CONFIG_HEADER;
1437 AM_CONFIG_HEADER handles it automatically
1438 * Texinfo output files no longer need .info extension
1439 * Added `missing' support
1441 * Conditionals in Makefile.am, from Ian Taylor
1445 * distcheck target runs install and installcheck targets
1446 * Added preliminary support for DejaGnu.
1451 * More libtool fixes from Gord Matzigkeit; libtool support is still
1453 * Added support for jm_MAINTAINER_MODE
1455 * New "distcheck" target
1459 * mkinstalldirs and mdate-sh now appear in directory specified by
1461 * Removed DIST_SUBDIRS, DIST_OTHER
1462 * AC_ARG_PROGRAM only required when an actual program exists
1463 * dist-hook target now run before distribution packaged up; idea from
1464 Dieter Baron. Other hooks exist, too.
1465 * Preliminary (unfinished) support for libtool
1466 * Added short option names.
1467 * Better "dist" support when gluing together multiple packages
1471 * Documentation updates (many from François Pinard)
1472 * strictness `normal' now renamed to `foreign'
1473 * Renamed --install-missing to --add-missing
1474 * Now handles AC_CONFIG_AUX_DIR
1475 * Now handles TESTS macro
1476 * DIST_OTHER renamed to EXTRA_DIST
1477 * DIST_SUBDIRS is deprecated
1478 * @ALLOCA@ and @LIBOBJS@ now work in _LDADD variables
1479 * Better error messages in many cases
1480 * Program names are canonicalized
1481 * Added "check" prefix; from Gord Matzigkeit
1485 * configure.in scanner knows about AC_PATH_XTRA, AC_OUTPUT ":" syntax
1486 * Beginnings of a test suite
1487 * Automatically adds -I options for $(srcdir), ".", and path to config.h
1488 * Doesn't print anything when running
1489 * Beginnings of MAINT_CHARSET support
1490 * Can specify version in AUTOMAKE_OPTIONS
1491 * Most errors recognizable by Emacs' M-x next-error
1492 * Added --verbose option
1493 * All "primary" variables now obsolete; use EXTRA_PRIMARY to supply
1494 configure-generated names
1495 * Required macros now distributed in aclocal.m4
1497 * --strictness=gnu is default
1501 * More sophisticated configure.in scanning; now understands ALLOCA and
1502 LIBOBJS directly, handles AC_CONFIG_HEADER more precisely, etc.
1503 * TEXINFOS and MANS now obsolete; use info_TEXINFOS and man_MANS instead.
1504 * CONFIG_HEADER variable now obsolete
1505 * Can handle multiple Texinfo sources
1506 * Allow hierarchies deeper than 2. From Gord Matzigkeit.
1507 * HEADERS variable no longer needed; now can put .h files directly into
1508 foo_SOURCES variable.
1509 * Automake automatically rebuilds files listed in AC_OUTPUT. The
1510 corresponding ".in" files are included in the distribution.
1513 * Added --gnu and --gnits options
1514 * More standards checking
1516 * Cleaned up 'dist' targets
1517 * Added AUTOMAKE_OPTIONS variable and several options
1518 * Now scans configure.in to get some information (preliminary)
1521 * Works with Perl 4 again
1524 * Added --install-missing option.
1525 * Pretty-prints generated macros and rules
1526 * Comments in Makefile.am are placed more intelligently in Makefile.in
1527 * Generates .PHONY target
1528 * Rule or macro in Makefile.am now overrides contents of Automake file
1529 * Substantial cleanups from François Pinard
1533 * Works with Perl 4 again.
1536 * New uniform naming scheme.
1537 * --strictness option
1539 * '.c' files corresponding to '.y' or '.l' files are automatically
1541 * Many bug fixes and cleanups
1544 * Allow objects to be conditionally included in libraries via lib_LIBADD.
1547 * Bug fixes in 'clean' code.
1548 * Now generates 'installdirs' target.
1549 * man page installation reworked.
1550 * 'make dist' no longer re-creates all Makefile.in's.
1553 * Reimplemented in Perl
1554 * Added --amdir option (for debugging)
1555 * Texinfo support cleaned up.
1556 * Automatic de-ANSI-fication cleaned up.
1557 * Cleaned up 'clean' targets.
1560 * Automatic dependency tracking
1561 * More documentation
1562 * New variables DATA and PACKAGEDATA
1563 * SCRIPTS installed using $(INSTALL_SCRIPT)
1564 * No longer uses double-colon rules
1566 * Changes in advance of internationalization
1570 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
1571 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
1573 This program is free software; you can redistribute it and/or modify
1574 it under the terms of the GNU General Public License as published by
1575 the Free Software Foundation; either version 2, or (at your option)
1578 This program is distributed in the hope that it will be useful,
1579 but WITHOUT ANY WARRANTY; without even the implied warranty of
1580 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1581 GNU General Public License for more details.
1583 You should have received a copy of the GNU General Public License
1584 along with this program. If not, see <http://www.gnu.org/licenses/>.