* lib/depcomp (tru64) [libtool]: Nicolas Joly reported on
[automake.git] / NEWS
blob0bc8c04f6cf28c39aa42788e073141f7897b6f03
1 New in 1.8a:
3 * Better support for Fortran 90/95 with the new "fc" and "ppfc" languages.
4   Works the same as the old Fortran 77 implementation; just replace F77
5   with FC everywhere (exception: FFLAGS becomes FCFLAGS).  Requires a
6   version of autoconf which provides AC_PROG_FC (>=2.59).
8 * Libtool tags are used with libtool versions that support them.
9   (I.e., with Libtool 1.5 or greater.)
11 * Makefile.in bloat reduction.
13   - Inference rules are used to compile sources in subdirectories when
14     the `subdir-objects' option is used and no per-target flags are
15     used.  This should reduce the size of some projects a lot, because
16     Automake used to output an explicit rule for each such object in
17     the past.
19   - Automake no longer outputs three rules (.o, .obj, .lo) for each
20     object that must be built with explicit rules.  It just outputs
21     the rules required to build the kind of object considered: either
22     the two .o and .obj rules for usual objects, or the .lo rule for
23     libtool objects.
25 * Support for conditional _LISP.
27 * Automake is now able to handle setups where a libtool library is
28   conditionally installed in different directories, as in
30     if COND
31       lib_LTLIBRARIES = liba.la
32     else
33       pkglib_LTLIBRARIES = liba.la
34     endif
35     liba_la_SOURCES = ...
37 * aclocal now ensures that AC_DEFUNs and AU_DEFUNs it discovers are
38   really evaluated, before it decides to include them in aclocal.m4.
39   This solves nasty problems with conditional redefinitions of
40   Autoconf macros in /usr/share/aclocal/*.m4 files causing extraneous
41   *.m4 files to be included in any project using these macros.
42   (Calls to AC_PROG_EGREP causing libtool.m4 to be included is the
43   most famous instance of this bug.)
45 * Diagnose AC_CONFIG_AUX_DIR calls following AM_INIT_AUTOMAKE. (PR/49)
47 * Tar format can be chosen with the new options tar-v7, tar-ustar, and
48   tar-pax.  The new option filename-length-max=99 helps diagnosing
49   filenames that are too long for tar-v7.
51 New in 1.8:
53 * Meta-News
55   - The NEWS file is more verbose.
57 * Requirements
59   - Autoconf 2.58 or greater is required.
61 * New features
63   - Default source file names in the absence of a _SOURCES declaration
64     are made by removing any target extension before appending `.c', so
65     to make the libtool module `foo.la' from `foo.c', you only need to
66     do this:
68         lib_LTLIBRARIES = foo.la
69         foo_la_LDFLAGS  = -module
71     For backward compatibility, foo_la.c will be used instead of
72     foo.c if this file exists or is the explicit target of a rule.
73     However -Wobsolete will warn about this deprecated naming.
75   - AR's `cru' flags are now set in a global ARFLAGS variable instead
76     of being hard-coded in each $(AR) invocation, so they can be
77     substituted from configure.ac.  This has been requested by people
78     dealing with non-POSIX ar implementations.
80   - New warning option: -Woverride.  This will warn about any user
81     target or variable definitions which override Automake
82     definitions.
84   - Texinfo rules back up and restore info files when makeinfo fails.
86   - Texinfo rules now support the `html' target.
87     Running this requires Texinfo 4.0 or greater.
89     `html' is a new recursive target, so if your package mixes
90     hand-crafted `Makefile.in's with Automake-generated
91     `Makefile.in's, you should adjust the former to support (or
92     ignore) this target so that `make html' recurses successfully.  If
93     you had a custom `html' rule in your `Makefile.am', it's better to
94     rename it as `html-local', otherwise your rule will override
95     Automake's new rule (you can check that by running `automake
96     -Woverride') and that will stop the recursion to subdirectories.
98     Last but not least, this `html' rule is declared PHONY, even when
99     overridden.  Fortunately, it appears that few packages use a
100     non-PHONY `html' rule.
102   - Any file which is m4_included from configure.ac will appear as a
103     configure and Makefile.in dependency, and will be automatically
104     distributed.
106   - The rules for rebuilding Makefiles and Makefile.ins will now
107     rebuild all Makefiles and all Makefile.ins at once when one of
108     configure's dependencies has changed.  This is considerably faster
109     than previous implementations, where config.status and automake
110     were run separately in each directory (this still happens when you
111     change a Makefile.am locally, without touching configure.ac or
112     friends).  Doing this also solves a longstanding issue: these
113     rebuild rules failed to work when adding new directories to the
114     tree, forcing you to run automake manually.
116   - For similar reasons, the rules to rebuild configure,
117     config.status, and aclocal.m4 are now defined in all directories.
118     Note that if you were using the CONFIG_STATUS_DEPENDENCIES and
119     CONFIGURE_DEPENDENCIES (formerly undocumented) variables, you
120     should better define them in all directories.  This is easily done
121     using an AC_SUBST (make sure you prefix these dependencies with
122     $(top_srcdir) since this variable will appear at different
123     levels of the build tree).
125   - aclocal will now use `m4_include' instead of copying local m4
126     files into aclocal.m4.  (Local m4 files are those you ship with
127     your project, other files will be copied as usual.)
129     Because m4_included files are automatically distributed, it means
130     for most projects there is no point in EXTRA_DISTing the list of
131     m4 files which are used.  (You can probably get rid of
132     m4/Makefile.am if you had one.)
134   - aclocal will avoid touching aclocal.m4 when possible, so that
135     Autom4te's cache isn't needlessly invalidated.  This behavior can
136     be switched off with the new `--force' option.
138   - aclocal now uses Autoconf's --trace to detect macros which are
139     actually used and will no longer include unused macros simply
140     because they where mentioned.  This was often the case for macros
141     called conditionally.
143   - New options no-dist and no-dist-gzip.
145   - compile, depcomp, elisp-comp, install-sh, mdate-sh, mkinstalldirs,
146     py-compile, and ylwrap, now all understand --version and --help.
148   - Automake will now recognize AC_CONFIG_LINKS so far as removing created
149     links as part of the distclean target and including source files in
150     distributions.
152   - AM_PATH_PYTHON now supports ACTION-IF-FOUND and ACTION-IF-NOT-FOUND
153     argument.  The latter can be used to override the default behavior
154     (which is to abort).
156   - Automake will exit with $? = 63 on version mismatch.  (So does
157     Autoconf 2.58)  missing knows this, and in this case it will
158     emulate the tools as if they were absent.  Because older versions
159     of Automake and Autoconf did not use this exit code, this change
160     will only be useful in projects generated with future versions of
161     these tools.
163   - When using AC_CONFIG_FILES with multiple input files, Automake
164     generates the first ".in" input file for which a ".am" exists.
165     (Former versions would try to use only the first input file.)
167   - lisp_DATA is now allowed.  If you are using the empty ELCFILES
168     idiom to disable byte-compilation of lisp_LISP files, it is
169     recommended that you switch to using lisp_DATA.  Note that
170     this is not strictly equivalent: lisp_DATA will install elisp
171     files even if emacs is not installed, while *_LISP do not
172     install anything unless emacs is found.
174   - Makefiles will prefer `mkdir -p' over mkinstalldirs if it is
175     available.  This selection is achieved through the Makefile
176     variable $(mkdir_p) that is set by AM_INIT_AUTOMAKE to either
177     `mkdir -m 0755 -p --', `$(mkinstalldirs) -m 0755', or
178     `$(install_sh) -m 0755 -d'.
180 * Obsolete features
182   - Because `mkdir -p' is available on most platforms, and we can use
183     `install-sh -d' when it is not, the use of the mkinstalldirs
184     script is being phased out.  `automake --add-missing' no longer
185     installs it, and if you remove mkinstalldirs from your package,
186     automake will define $(mkinstalldirs) as an alias for $(mkdir_p).
188     Gettext 0.12.1 still requires mkinstalldirs.  Fortunately
189     gettextize and autopoint will install it when needed.  Automake
190     will continue to define the $(mkinstalldirs) and to distribute
191     mkinstalldirs when this script is in the source tree.
193   - AM_PROG_CC_STDC is now empty.  The content of this macro was
194     merged in AC_PROG_CC.  If your code uses $am_cv_prog_cc_stdc, you
195     should adjust it to use $ac_cv_prog_cc_stdc instead.  (This
196     renaming should be safe, even if you have to support several,
197     versions of Automake, because AC_PROG_CC defines this variable
198     since Autoconf 2.54.)
200   - Some users where using the undocumented ACLOCAL_M4_SOURCES
201     variable to override the aclocal.m4 dependencies computed
202     (inaccurately) by older versions of Automake.  Because Automake
203     now tracks configure's m4 dependencies accurately (see m4_include
204     above), the use of ACLOCAL_M4_SOURCES should be considered
205     obsolete and will be flagged as such when running `automake
206     -Wobsolete'.
208 * Bug fixes
210   - Defining programs conditionally using Automake conditionals no
211     longer leads to a combinatorial explosion.  The following
212     construct used to be troublesome when used with dozens of
213     conditions.
215       bin_PROGRAMS = a
216       if COND1
217         bin_PROGRAMS += a1
218       endif
219       if COND2
220         bin_PROGRAMS += a2
221       endif
222       if COND3
223         bin_PROGRAMS += a3
224       endif
225       ...
227     Likewise for _SOURCES, _LDADD, and _LIBADD variables.
229   - Due to implementation constraints, previous versions of Automake
230     proscribed multiple conditional definitions of some variables
231     like bin_PROGRAMS:
233       if COND1
234         bin_PROGRAMS = a1
235       endif
236       if COND2
237         bin_PROGRAMS = a2
238       endif
240     All _PROGRAMS, _LDADD, and _LIBADD variables were affected.
241     This restriction has been lifted, and these variables now
242     support multiple conditional definitions as do other variables.
244   - Cleanup the definitions of $(distdir) and $(top_distdir).
245     $(top_distdir) now points to the root of the distribution
246     directory created during `make dist', as it did in Automake 1.4,
247     not to the root of the build tree as it did in intervening
248     versions.  Furthermore these two variables are now only defined in
249     the top level Makefile, and passed to sub-directories when running
250     `make dist'.
252   - The --no-force option now correctly checks the Makefile.in's
253     dependencies before deciding not to update it.
255   - Do not assume that make files are called Makefile in cleaning rules.
257   - Update .info files in the source tree, not in the build tree.  This
258     is what the GNU Coding Standard recommend.  Only Automake 1.7.x
259     used to update these files in the build tree (previous versions did
260     it in the source tree too), and it caused several problems, varying
261     from mere annoyance to portability issues.
263   - COPYING, COPYING.LIB, and COPYING.LESSER are no longer overwritten
264     when --add-missing and --force-missing are used.  For backward
265     compatibility --add-missing will continue to install COPYING (in
266     `gnu' strictness) when none of these three files exist, but this
267     use is deprecated: you should better choose a license yourself and
268     install it once for all in your source tree (and in your code
269     management system).
271   - Fix ylwrap so that it does not overwrite header files that haven't
272     changed, as the inline rule already does.
274   - User-defined rules override automake-defined rules for the same
275     targets, even when rules do not have commands.  This is not new
276     (and was documented), however some of the automake-generated
277     rules have escaped this principle in former Automake versions.
278     Rules for the following targets are affected by this fix:
280        clean, clean-am, dist-all, distclean, distclean-am, dvi, dvi-am,
281        info, info-am, install-data-am, install-exec-am, install-info,
282        install-info-am, install-man, installcheck-am, maintainer-clean,
283        maintainer-clean-am, mostlyclean, mostlyclean-am, pdf, pdf-am,
284        ps, ps-am, uninstall-am, uninstall-info, uninstall-man
286     Practically it means that an attempt to supplement the dependencies
287     of some target, as in
289        clean: my-clean-rule
291     will now *silently override* the automake definition of the
292     rule for this target.  Running `automake -Woverride' will diagnose
293     all such overriding definitions.
295     It should be noted that almost all these targets support a *-local
296     variant that is meant to supplement the automake-defined rule
297     (See node `Extending' in the manual).  The above rule should
298     be rewritten as
300       clean-local: my-clean-rule
302     These *-local targets have been documented since at least
303     Automake 1.2, so you should not fear the change if you have
304     to support multiple automake versions.
306 * Miscellaneous
308   - The Automake manual is now distributed under the terms of the GNU FDL.
310   - Targets dist-gzip, dist-bzip2, dist-tarZ, dist-zip are always defined.
312   - core dumps are no longer removed by the cleaning rules.  There are
313     at least three reasons for this:
314       1. These files should not be created by any build step,
315          so their removal do not fit any of the cleaning rules.
316          Actually, they may be precious to the developer.
317       2. If such file is created during a build, then it's clearly a
318          bug Automake should not hide.  Not removing the file will
319          cause `make distcheck' to complain about its presence.
320       3. Operating systems have different naming conventions for
321          core dump files.  A core file on one system might be a
322          completely legitimate data file on another system.
324   - RUNTESTFLAGS, CTAGSFLAGS, ETAGSFLAGS, JAVACFLAGS are no longer
325     defined by Automake.  This means that any definition in the
326     environment will be used, unless overridden in the Makefile.am or
327     on the command line.  The old behavior, where these variables were
328     defined empty in each Makefile, can be obtained by AC_SUBSTing or
329     AC_ARG_VARing each variable from configure.ac.
331   - CONFIGURE_DEPENDENCIES and CONFIG_STATUS_DEPENDENCIES are now
332     documented.  (The is not a new feature, these variables have
333     been there since at least Automake 1.4.)
335 Bugs fixed in 1.7.9:
336 * Fix install-strip to work with nobase_ binaries.
337 * Fix renaming of #line directives in ylwrap.
338 * Rebuild with Autoconf 2.59.  (1.7.8 was not installable with pdksh.)
340 Bugs fixed in 1.7.8:
341 * Remove spurious blank lines in cleaning rules introduced in 1.7.7.
342 * Fix detection of Debian's install-info, broken since version 1.5.
343   (Debian bug #213524).
344 * Honor -module if it appears in AM_LDFLAGS (i.e., relax name checking)
345   This was only done for libfoo_LDFLAGS and LDFLAGS in previous versions.
347 Bugs fixed in 1.7.7:
348 * The implementation of automake's --no-force option is unreliable,
349   so this option is ignored in this version.  A real fix will appear in
350   Automake 1.8.  (Debian Bug #206299)
351 * AM_PATH_PYTHON: really check the whole list of interpreters if no
352   argument is given.  (PR/399)
353 * Do not warn about leading `_' in variable names, even with -Wportability.
354 * Support user redefinitions of TEXINFO_TEX.
355 * depcomp: support AIX Compiler version 6.
356 * Fix missing rebuilds during `make dist' with BSD make.
357   (Could produce tarballs containing out-of-date files.)
358 * Resurrect multilib support.
359 * Noteworthy manual updates:
360   - Extending aclocal: how to write m4 macros that won't trigger warnings
361     with Automake 1.8.
362   - A Shared Library: Rewrite and split into subsections.
364 Bugs fixed in 1.7.6:
365 * Fix depcomp's icc mode for ICC 7.1.
366 * Diagnose calls to AC_CONFIG_FILES and friends with not enough arguments.
367 * Fix maintainer-clean's removal of autom4te.cache in VPATH builds.
368 * Fix AM_PATH_LISPDIR to work with POSIXLY_CORRECT=1.
369 * Fix the location reported in some diagnostics related to AUTOMAKE_OPTIONS.
370 * Remove Latin-1 characters from elisp-comp.
371 * Update the manual's @dircategory to match the Free Software Directory.
373 Bugs fixed in 1.7.5:
374 * Update install-sh's license to remove an advertising clause.
375   (Debian bug #191717)
376 * Fix a bug introduced in 1.7.4, related to BUILT_SOURCE handling,
377   that caused invalid Makefile.ins to be generated.
378 * Make sure AM_MAKE_INCLUDE doesn't fail when a `doit' file exists.
379 * New FAQ entry: renamed objects.
381 Bugs fixed in 1.7.4:
382 * Tweak the TAGS rule to support Exuberant Ctags (in addition to
383   the Emacs implementation)
384 * Fix output of aclocal.m4 dependencies in subdirectories.
385 * Use `mv -f' instead of `mv' in fastdep rules.
386 * Upgrade mdate-sh to work on OS/2.
387 * Don't byte-compile elisp files when ELCFILES is set empty.
388   (this documented feature was broken by 1.7.3)
389 * Diagnose trailing backslashes on last line of Makefile.am.
390 * Diagnose whitespace following trailing backslashes.
391 * Multiple tests are now correctly supported in DEJATOOL. (PR/388)
392 * Fix rebuilt rules for AC_CONFIG_FILES([Makefile:Makefile.in:Makefile.bot])
393   Makefiles. (PR/389)
394 * `make install' will build `BUILT_SOURCES' first.
395 * Minor documentation fixes.
397 Bugs fixed in 1.7.3:
398 * Fix stamp files numbering (when using multiple AC_CONFIG_HEADERS).
399 * Query distutils for `pythondir' and `pythonexecdir', instead of
400   using an hardcoded path.  This should allow builds on 64-bit
401   distributions that usually use lib64/ instead of lib/.
402 * AM_PATH_PYTHON will also search for python2.3.
403 * elisp files are now built all at once instead of one by one. Besides
404   incurring a speed-up, this is required to support interdependent elisp files.
405 * Support for DJGPP:
406   - `make distcheck' will now work in `_inst/' and `_build' instead
407     of `=inst/' and `=build/'
408   - use `_dirstamp' when the file-system doesn't support `.dirstamp'
409   - install/uninstall `*.i[0-9][0-9]'-style info files
410   - more changes that affect only the Automake package (not its output)
411 * Fix some incompatibilities with upcoming perl-5.10.
412 * Properly quote AC_PACKAGE_TARNAME and AC_PACKAGE_VERSION when defining
413   PACKAGE and VERSION.
414 * depcomp fixes:
415   - dashmstdout and dashXmstdout modes: don't use `-o /dev/null', this
416     is troublesome with gcc and Solaris compilers. (PR/385)
417   - makedepend mode: work with Libtool. (PR/385 too)
418   - support for ICC.
419 * better support for unusual gettext setups, such as multiple po/ directories
420   (PR/381):
421   - Flag missing po/ and intl/ directories as warnings, not errors.
422   - Disable these warnings if po/ does not exist.
423 * Noteworthy manual updates:
424   - New FAQ chapter.
425   - Document how AC_CONFIG_AUX_DIR interacts with missing files.
426     (Debian Bug #39542)
427   - Document `AM_YFLAGS = -d'.  (PR/382)
429 Bugs fixed in 1.7.2:
430 * Fix installation and uninstallation of Info files built in subdirectories.
431 * Do not run `./configure --with-included-gettext' during `make distcheck'
432   if AM_GNU_GETTEXT([external]) is used.
433 * Correctly uninstall renamed man pages.
434 * Do not strip escaped newline in variables defined in one condition
435   and augmented in another condition.
436 * Fix ansi2knr rules for LIBOBJS sources.
437 * Clean all known Texinfo index files, not only those which appear to
438   be used, because we cannot know wich indexes are used in included files.
439   (PR/375, Debian Bug #168671)
440 * Honor only the first @setfilename seen in a Texinfo file.
441 * Treat "required file X not found" diagnostics as errors (exit status 1).
442 * Don't complain that a required file is not found when it is a Makefile
443   target. (PR/357)
444 * Don't use single suffix inference rules when building `.info'-less
445   Info files, for the sake of Solaris make.
446 * The `check' target now depends on `$(BUILT_SOURCES)'. (PR/359)
447 * Recognize multiple inference rules such as `.a.b .c.d:'. (PR/371)
448 * Warn about multiple inference rules when -Wportability is used. (PR/372)
449 * Fix building of deansified files from subdirectories. (PR/370)
450 * Add missing `fi' in the .c->.obj rules.
451 * Improve install-sh to work even when names contain spaces or certain
452   (but not all) shell metachars.
453 * Fix the following spurious failures in the test suite:
454   depcomp2.test, gnits2.test, gnits3.test, python3.test, texinfo13.test
455 * Noteworthy manual updates:
456   - Augment the section about BUILT_SOURCES.
457   - Mention that AM_PROG_CC_STDC is a relic that is better avoided today.
459 Bugs fixed in 1.7.1:
460 * Honor `ansi2knr' for files built in subdirectories, or using per-targets
461   flags.
462 * Aclocal should now recognize macro names containing parentheses, e.g.
463   AC_DEFUN([AC_LANG_PREPROC(Fortran 90)], [...]).
464 * Erase *.sum and *.log files created by DejaGnu, during `make distclean'.
465   (Debian Bug#153697)
466 * Install Python files even if they were built.  (PR/369)
467 * Have stamp-vti dependent upon configure instead of configure.ac, as the
468   version might not be defined in the latter. (PR/358)
469 * Reorder arguments passed to a couple of commands, so things works
470   when POSIXLY_CORRECT=1.
471 * Fix a regex that can cause Perl to segfault on large input.
472   (Debian Bug#162583)
473 * Fix distribution of packages that have some sources defined conditionally,
474   as in the `Conditional compilation using Automake conditionals' example
475   of the manual.
476 * Fix spurious test suite failures on IRIX.
477 * Don't report a required variable as undefined if it has been
478   defined conditionally for the "right" conditions.
479 * Fix cleaning of the /tmp subdirectory used by `make distcheck', in case
480   `make distcheck' fails.
481 * Fix distribution of included Makefile fragment, so we don't create
482   spurious directories in the distribution. (PR/366)
483 * Don't complain that a target lacks `.$(EXEEXT)' when it has it.
485 New in 1.7:
486 * Autoconf 2.54 is required.
487 * `aclocal' and `automake' will no longer warn about obsolete
488   configure macros.  This is done by `autoconf -Wobsolete'.
489 * AM_CONFIG_HEADER, AM_SYS_POSIX_TERMIOS and
490   AM_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL are obsolete (although still
491   supported).  You should use AC_CONFIG_HEADERS, AC_SYS_POSIX_TERMIOS,
492   and AC_HEADER_TIOCGWINSZ instead.  `autoupdate' can upgrade
493   `configure.ac' for you.
494 * Support for per-program and per-library `_CPPFLAGS'.
495 * New `ctags' target (builds CTAGS files).
496 * Support for -Wmumble and -Wno-mumble, where mumble is a warning category
497   (see `automake --help' or the manual for a list of them).
498 * Honor the WARNINGS environment variable.
499 * Omit the call to depcomp when using gcc3: call the compiler directly.
500 * A new option, std-options, tests that programs support --help and --version
501   when `make installcheck' is run.  This is enabled by --gnits.
502 * Texinfo rules now support the `ps' and `pdf' targets.
503 * Info files are now created in the build directory, not the source directory.
504 * info_TEXINFOS supports files in subdirectories (this requires Texinfo 4.1
505   or greater).
506 * `make distcheck' will enforce DESTDIR support by attempting
507   a DESTDIR install.
508 * `+=' can be used in conditionals, even if the augmented variable
509   was defined for another condition.
510 * Makefile fragments (inserted with `include') are always distributed.
511 * Use Autoconf's --trace interface to inspect configure.ac and get
512   a more accurate view of it.
513 * Add support for extending aclocal's default macro search path
514   using a `dirlist' file within the aclocal directory.
515 * automake --output-dir is deprecated.
516 * The part of the distcheck target that checks whether uninstall actually
517   removes all installed files has been moved in a separate target,
518   distuninstallcheck, so it can be overridden easily.
519 * Many bug fixes.
521 New in 1.6.3:
522 * Support for AM_INIT_GETTEXT([external])
523 * Bug fixes, including:
524   - Fix Automake's own `make install' so it works even if `ln' doesn't.
525   - nobase_ programs and scripts honor --program-transform correctly.
526   - Erase configure.lineno during `make distclean'.
527   - Erase YACC and LEX outputs during `make maintainer-clean'.
529 New in 1.6.2:
530 * Many bug fixes, including:
531   - Requiring the current version works.
532   - Fix "$@" portability issues (for Zsh).
533   - Fix output of dummy dependency files in presence of post-processed
534     Makefile.in's.
535   - Don't compute dependencies in background to avoid races with libtool.
536   - Fix handling of _OBJECTS variables for targets sharing source variables.
537   - Check dependency mode for Java when AM_PROG_GCJ is used.
539 New in 1.6.1:
540 * automake --output-dir is deprecated
541 * Many bug fixes, including:
542   - Don't choke on AM_LDFLAGS definitions.
543   - Clean libtool objects from subdirectories.
544   - Allow configure variables with reserved suffix and unknown prefix
545     (e.g. AC_SUBST(mumble_LDFLAGS) when 'mumble' is not a target).
546   - Fix the definition of AUTOMAKE and ACLOCAL in configure.
548 New in 1.6:
549 * Autoconf 2.52 is required.
550 * automake no longer run libtoolize.
551   This is the job of autoreconf (from GNU Autoconf).
552 * `dist' generates all the archive flavors, as did `dist-all'.
553 * `dist-gzip' generates the Gzip tar file only.
554 * Combining Automake Makefile conditionals no longer lead to a combinatorial
555   explosion.  Makefile.in's keep a reasonable size.
556 * AM_FUNC_ERROR_AT_LINE, AM_FUNC_STRTOD, AM_FUNC_OBSTACK, AM_PTRDIFF_T
557   are no longer shipped, since Autoconf 2.52 provides them (both as AM_
558   and AC_).
559 * `#line' of Lex and Yacc files are properly set.
560 * EXTRA_DIST can contain generated directories.
561 * Support for dot-less extensions in suffix rules.
562 * The part of the distcheck target that checks whether distclean actually
563   cleans all built files has been moved in a separate target, distcleancheck,
564   so it can be overridden easily.
565 * `make distcheck' will pass additional options defined in
566   $(DISTCHECK_CONFIGURE_FLAGS) to configure.
567 * Fixed CDPATH portability problems, in particular for MacOS X.
568 * Fixed handling of nobase_ targets.
569 * Fixed support of implicit rules leading to .lo objects.
570 * Fixed late inclusion of --add-missing files (e.g. depcomp) in DIST_COMMON
571 * Added uninstall-hook target
572 * `AC_INIT AM_INIT_AUTOMAKE(tarname,version)' is an obsolete construct.
573   You can now use `AC_INIT(pkgname,version) AM_INIT_AUTOMAKE' instead.
574   (Note that "pkgname" is not "tarname", see the manual for details.)
575   It is also possible to pass a list of global Automake options as
576   first argument to this new form of AM_INIT_AUTOMAKE.
577 * Compiler-based assembler is now called `CCAS'; people expected `AS'
578   to be a real assembler.
579 * AM_INIT_AUTOMAKE will set STRIP itself when it needs it.  Adding
580   AC_CHECK_TOOL([STRIP], [strip]) manually is no longer required.
581 * aclocal and automake are also installed with the version number
582   appended, and some of the install directory names have changed.
583   This lets you have multiple versions installed simultaneously.
584 * Support for parsers and lexers in subdirectories.
586 New in 1.5:
587 * Support for `configure.ac'.
588 * Support for `else COND', `endif COND' and negated conditions `!COND'.
589 * `make dist-all' is much faster.
590 * Allows '@' AC_SUBSTs in macro names.
591 * Faster AM_INIT_AUTOMAKE (requires update of `missing' script)
592 * User-side dependency tracking.  Developers no longer need GNU make
593 * Python support
594 * Uses DIST_SUBDIRS in some situations when SUBDIRS is conditional
595 * Most files are correctly handled if they appear in subdirs
596   For instance, a _DATA file can appear in a subdir
597 * GNU tar is no longer required for `make dist'
598 * Added support for `dist_' and `nodist_' prefixes
599 * Added support for `nobase_' prefix
600 * Compiled Java support
601 * Support for per-executable and per-library compilation flags
602 * Many bug fixes
604 New in 1.4:
605 * Added support for the Fortran 77 programming language.
606 * Re-indexed the Automake Texinfo manual.
607 * Added `AM_FOOFLAGS' variable for each compiler invocation;
608   e.g. AM_CFLAGS can be used in Makefile.am to set C compiler flags
609 * Support for latest autoconf, including support for objext
610 * Can now put `.' in SUBDIRS to control build order
611 * `include' command and `+=' support for macro assignment
612 * Dependency tracking no long susceptible to deleted header file problem
613 * Maintainer mode now a conditional.  @MAINT@ is now an anachronism.
614 * Bug fixes
616 New in 1.3:
617 * Bug fixes
618 * Better Cygwin32 support
619 * Support for suffix rules with _SOURCES variables
620 * New options `readme-alpha' and `check-news'; Gnits mode sets these
621 * @LEXLIB@ no longer required when lex source seen
622   Lex support in `missing', and new lex macro.  Update your missing script.
623 * Built-in support for assembly
624 * aclocal gives error if `AM_' macro not found
625 * Passed YFLAGS, not YACCFLAGS, to yacc
626 * AM_PROG_CC_STDC does not have to come before AC_PROG_CPP
627 * Dependencies computed as a side effect of compilation
628 * Preliminary support for Java
629 * DESTDIR support at "make install" time
630 * Improved ansi2knr support; you must use the latest ansi2knr.c (included)
632 New in 1.2:
633 * Bug fixes
634 * Better DejaGnu support
635 * Added no-installinfo option
636 * Added Emacs Lisp support
637 * Added --no-force option
638 * Included `aclocal' program
639 * Automake will now generate rules to regenerate aclocal.m4, if appropriate
640 * Now uses `AM_' macro names everywhere
641 * ansi2knr option can have directory prefix (eg `../lib/ansi2knr')
642   ansi2knr now works correctly on K&R sources
643 * Better C++, yacc, lex support
644 * Will compute _DEPENDENCIES variables automatically if not supplied
645 * Will interpolate $(...) and ${...} when examining contents of a variable
646 * .deps files now in build directory, not source directory; dependency
647   handling generally rewritten
648 * DATA, MANS and BUILT_SOURCES no longer included in distribution
649 * can now put config.h into a subdir
650 * Added dist-all target
651 * Support for install-info program (see texinfo 3.9)
652 * Support for "yacc -d"
653 * configure substitutions are automatically discovered and included
654   in generated Makefile.in
655 * Special --cygnus mode
656 * OMIT_DEPENDENCIES can now hold list of dependencies to be omitted
657   when making distribution.  Some dependencies are auto-ignored.
658 * Changed how libraries are specified in _LIBRARIES variable
659 * Full libtool support, from Gord Matzigkeit
660 * No longer have to explicitly touch stamp-h when using AC_CONFIG_HEADER;
661   AM_CONFIG_HEADER handles it automatically
662 * Texinfo output files no longer need .info extension
663 * Added `missing' support
664 * Cygwin32 support
665 * Conditionals in Makefile.am, from Ian Taylor
667 New in 1.0:
668 * Bug fixes
669 * distcheck target runs install and installcheck targets
670 * Added preliminary support for DejaGnu.
672 New in 0.33:
673 * More bug fixes
674 * More checking
675 * More libtool fixes from Gord Matzigkeit; libtool support is still
676   preliminary however
677 * Added support for jm_MAINTAINER_MODE
678 * dist-zip support
679 * New "distcheck" target
681 New in 0.32:
682 * Many bug fixes
683 * mkinstalldirs and mdate-sh now appear in directory specified by
684   AC_CONFIG_AUX_DIR.
685 * Removed DIST_SUBDIRS, DIST_OTHER
686 * AC_ARG_PROGRAM only required when an actual program exists
687 * dist-hook target now run before distribution packaged up; idea from
688   Dieter Baron.  Other hooks exist, too.
689 * Preliminary (unfinished) support for libtool
690 * Added short option names.
691 * Better "dist" support when gluing together multiple packages
693 New in 0.31:
694 * Bug fixes
695 * Documentation updates (many from François Pinard)
696 * strictness `normal' now renamed to `foreign'
697 * Renamed --install-missing to --add-missing
698 * Now handles AC_CONFIG_AUX_DIR
699 * Now handles TESTS macro
700 * DIST_OTHER renamed to EXTRA_DIST
701 * DIST_SUBDIRS is deprecated
702 * @ALLOCA@ and @LIBOBJS@ now work in _LDADD variables
703 * Better error messages in many cases
704 * Program names are canonicalized
705 * Added "check" prefix; from Gord Matzigkeit
707 New in 0.30:
708 * Bug fixes
709 * configure.in scanner knows about AC_PATH_XTRA, AC_OUTPUT ":" syntax
710 * Beginnings of a test suite
711 * Automatically adds -I options for $(srcdir), ".", and path to config.h
712 * Doesn't print anything when running
713 * Beginnings of MAINT_CHARSET support
714 * Can specify version in AUTOMAKE_OPTIONS
715 * Most errors recognizable by Emacs' M-x next-error
716 * Added --verbose option
717 * All "primary" variables now obsolete; use EXTRA_PRIMARY to supply
718   configure-generated names
719 * Required macros now distributed in aclocal.m4
720 * New documentation
721 * --strictness=gnu is default
723 New in 0.29:
724 * Many bug fixes
725 * More sophisticated configure.in scanning; now understands ALLOCA and
726   LIBOBJS directly, handles AC_CONFIG_HEADER more precisely, etc.
727 * TEXINFOS and MANS now obsolete; use info_TEXINFOS and man_MANS instead.
728 * CONFIG_HEADER variable now obsolete
729 * Can handle multiple Texinfo sources
730 * Allow hierarchies deeper than 2.  From Gord Matzigkeit.
731 * HEADERS variable no longer needed; now can put .h files directly into
732   foo_SOURCES variable.
733 * Automake automatically rebuilds files listed in AC_OUTPUT.  The
734   corresponding ".in" files are included in the distribution.
736 New in 0.28:
737 * Added --gnu and --gnits options
738 * More standards checking
739 * Bug fixes
740 * Cleaned up 'dist' targets
741 * Added AUTOMAKE_OPTIONS variable and several options
742 * Now scans configure.in to get some information (preliminary)
744 New in 0.27:
745 * Works with Perl 4 again
747 New in 0.26:
748 * Added --install-missing option.
749 * Pretty-prints generated macros and rules
750 * Comments in Makefile.am are placed more intelligently in Makefile.in
751 * Generates .PHONY target
752 * Rule or macro in Makefile.am now overrides contents of Automake file
753 * Substantial cleanups from François Pinard
755 New in 0.25:
756 * Bug fixes.
757 * Works with Perl 4 again.
759 New in 0.24:
760 * New uniform naming scheme.
761 * --strictness option
762 * Works with Perl 5
763 * '.c' files corresponding to '.y' or '.l' files are automatically
764   distributed.
765 * Many bug fixes and cleanups
767 New in 0.23:
768 * Allow objects to be conditionally included in libraries via lib_LIBADD.
770 New in 0.22:
771 * Bug fixes in 'clean' code.
772 * Now generates 'installdirs' target.
773 * man page installation reworked.
774 * 'make dist' no longer re-creates all Makefile.in's.
776 New in 0.21:
777 * Reimplemented in Perl
778 * Added --amdir option (for debugging)
779 * Texinfo support cleaned up.
780 * Automatic de-ANSI-fication cleaned up.
781 * Cleaned up 'clean' targets.
783 New in 0.20:
784 * Automatic dependency tracking
785 * More documentation
786 * New variables DATA and PACKAGEDATA
787 * SCRIPTS installed using $(INSTALL_SCRIPT)
788 * No longer uses double-colon rules
789 * Bug fixes
790 * Changes in advance of internationalization
792 -----
794 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
795 Free Software Foundation, Inc.
797 This file is part of GNU Automake.
799 GNU Automake is free software; you can redistribute it and/or modify
800 it under the terms of the GNU General Public License as published by
801 the Free Software Foundation; either version 2, or (at your option)
802 any later version.
804 GNU Automake is distributed in the hope that it will be useful,
805 but WITHOUT ANY WARRANTY; without even the implied warranty of
806 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
807 GNU General Public License for more details.
809 You should have received a copy of the GNU General Public License
810 along with GNU Automake; see the file COPYING.  If not, write to
811 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
812 Boston, MA 02111-1307, USA.