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