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