9f9f964825
* WARNING: Future backward-incompatibilities! - Starting from the next major Automake version (1.13), the rules to build pdf, ps and dvi output from Texinfo input will use the '--tidy' option by default. Since such an option was introduced in Texinfo 4.9, this means that Makefiles generated by future Automake versions will require at least that version of Texinfo. - Starting from the next major Automake version (1.13), the parallel testsuite harness (previously only enabled by the 'parallel-tests' option) will become the default one; the older serial testsuite harness will still be available through the use of the 'serial-tests' option. - The following long-obsolete m4 macros will be removed in the next major Automake version (1.13): AM_PROG_CC_STDC: superseded by AC_PROG_CC since October 2002 fp_PROG_CC_STDC: broken alias for AM_PROG_CC_STDC fp_WITH_DMALLOC: old alias for AM_WITH_DMALLOC AM_CONFIG_HEADER: superseded by AC_CONFIG_HEADERS since July 2002 ud_PATH_LISPDIR: old alias for AM_PATH_LISPDIR jm_MAINTAINER_MODE: old alias for AM_MAINTAINER_MODE ud_GNU_GETTEXT: old alias for AM_GNU_GETTEXT gm_PROG_LIBTOOL: old alias for AC_PROG_LIBTOOL fp_C_PROTOTYPES: old alias for AM_C_PROTOTYPES (which was part of the now-removed automatic de-ANSI-fication support of Automake) - All the "old alias" macros in 'm4/obsolete.m4' will be removed in the next major Automake version (1.13). - Support for the "Cygnus-style" trees (enabled by the 'cygnus' option) will be deprecated in the next minor version of Automake (1.12.1) and removed in the next major version (1.13). - Support for the two- and three-arguments invocation forms of the AM_INIT_AUTOMAKE macro will be deprecated in the next minor version of Automake (1.12.1) and removed in the next major version (1.13). - The long-obsolete (since 1.10) automake-provided $(mkdir_p) make variable, @mkdir_p@ substitution and AM_PROG_MKDIR m4 macro will all be deprecated in the next minor version of Automake (1.12.1) and removed in the next major version (1.13). - The '--acdir' option of aclocal is deprecated, and will probably be removed in the next major Automake release (1.13). You should use the options '--automake-acdir' and '--system-acdir' instead (which have been introduced in Automake 1.11.2). - The exact order in which the directories in the aclocal macro search path are looked up is probably going to be changed in the next Automake release (1.13). * Obsolete features removed: - The never documented nor truly used script 'acinstall' has been removed. - Support for automatic de-ANSI-fication has been removed. - The support for the "obscure" multilib feature has been removed from Automake core (but remains available in the 'contrib/' directory of the Automake distribution). - Support for ".log -> .html" conversion and the check-html and recheck-html targets has been removed from Automake core (but remains available in the 'contrib/' directory of the Automake distribution). - The deprecated 'lzma' compression format for distribution archives has been removed, in favor of 'xz' and 'lzip'. - The obsolete AM_WITH_REGEX macro has been removed. - The long-deprecated options '--output-dir', '--Werror' and '--Wno-error' have been removed. - The chapter on the history of Automake has been moved out of the reference manual, into a new dedicated Texinfo file. * New targets: - New 'cscope' target to build a cscope database for the source tree. * Changes to Automake-generated testsuite harnesses: - The new automake option 'serial-tests' has been introduced. It can be used to explicitly instruct automake to use the older serial testsuite harness. This is still the default at the moment, but it might change in future versions. - The 'recheck' target (provided by the parallel testsuite harness) now depends on the 'all' target. This allows for a better user-experience in test-driven development. See automake bug#11252. - Test scripts that exit with status 99 to signal an "hard error" (e.g., and unexpected or internal error, or a failure to set up the test case scenario) have their outcome reported as an 'ERROR' now. Previous versions of automake reported such an outcome as a 'FAIL' (the only difference with normal failures being that hard errors were counted as failures even when the test originating them was listed in XFAIL_TESTS). - The testsuite summary displayed by the parallel-test harness has a completely new format, that always list the numbers of passed, failed, xfailed, xpassed, skipped and errored tests, even when these numbers are zero (but using smart coloring when the color-tests option is in effect). - The default testsuite driver offered by the 'parallel-tests' option is now implemented (partly at least) with the help of automake-provided auxiliary scripts (e.g., 'test-driver'), instead of relying entirely on code in the generated Makefile.in. This has two noteworthy implications. The first one is that projects using the 'parallel-tests' option should now either run automake with the '--add-missing' option, or manually copy the 'test-driver' script into their tree. The second, and more important, implication is that now, when the 'parallel-tests' option is in use, TESTS_ENVIRONMENT can not be used anymore to define a test runner, and the command specified in LOG_COMPILER (and <ext>_LOG_COMPILER) must be a *real* executable program or script. For example, this is still a valid usage (albeit a little contorted): TESTS_ENVIRONMENT = \ if test -n '$(STRICT_TESTS)'; then \ maybe_errexit='-e'; \ else \ maybe_errexit=''; \ fi; LOG_COMPILER = $(SHELL) $$maybe_errexit while this is not anymore: TESTS_ENVIRONMENT = \ $(SHELL) `test -n '$(STRICT_TESTS_CHECKING)' && echo ' -e'` neither is this: TESTS_ENVIRONMENT = \ run_with_perl_or_shell () \ { \ if grep -q '^#!.*perl' $$1; then $(PERL) $$1; \ else \ $(SHELL) $$1; \ fi; \ } LOG_COMPILER = run_with_perl_or_shell - The package authors can now use customary testsuite drivers within the framework provided by the 'parallel-tests' testsuite harness. Consistently with the existing syntax, this can be done by defining special makefile variables 'LOG_DRIVER' and '<ext>_LOG_DRIVER'. - A new developer-reserved variable 'AM_TESTS_FD_REDIRECT' can be used to redirect/define file descriptors used by the test scripts. - The parallel-tests harness generates now, in addition the '.log' files holding the output produced by the test scripts, a new set of '.trs' files, holding "metadata" derived by the execution of the test scripts; among such metadata are the outcomes of the test cases run by a script. - Initial and still experimental support for the TAP test protocol is now provided. * Changes to Yacc and Lex support: - C source and header files derived from non-distributed Yacc and/or Lex sources are now removed by a simple "make clean" (while they were previously removed only by "make maintainer-clean"). - Slightly backward-incompatible change, relevant only for use of Yacc with C++: the extensions of the header files produced by the Yacc rules are now modelled after the extension of the corresponding sources. For example, yacc files named "foo.y++" and "bar.yy" will produce header files named "foo.h++" and "bar.hh" respectively, where they would have previously produced header files named simply "foo.h" and "bar.h". This change offers better compatibility with 'bison -o'. * Miscellaneous changes: - The AM_PROG_VALAC macro now causes configure to exit with status 77, rather than 1, if the vala compiler found is too old. - The build system of Automake itself now avoids the use of make recursion as much as possible. - Automake now prefers to quote 'like this' or "like this", rather than `like this', in diagnostic message and generated Makefiles, to accommodate the new GNU Coding Standards recommendations. - Automake has a new option '--print-libdir' that prints the path of the directory containing the Automake-provided scripts and data files. - The 'dist' and 'dist-all' targets now can run compressors in parallel. - The rules to create pdf, dvi and ps output from Texinfo files now works better with modern 'texi2dvi' script, by explicitly passing it the '--clean' option to ensure stray auxiliary files are not left to clutter the build directory. - Automake can now generate silenced rules for texinfo outputs. - Some auxiliary files that are automatically distributed by Automake (e.g., 'install-sh', or the 'depcomp' script for packages compiling C sources) might now be listed in the DIST_COMMON variable in many Makefile.in files, rather than in the top-level one. - Messages of types warning or error from 'automake' and 'aclocal' are now prefixed with the respective type, and presence of -Werror is noted. - Automake's early configure-time sanity check now tries to avoid sleeping for a second, which slowed down cached configure runs noticeably. In that case, it will check back at the end of the configure script to ensure that at least one second has passed, to avoid time stamp issues with makefile rules rerunning autotools programs. - The warnings in the category 'extra-portability' are now enabled by '-Wall'. In previous versions, one has to use '-Wextra-portability' to enable them. Bugs fixed in 1.12: - Various minor bugfixes for recent or long-standing bugs. * Bugs introduced by 1.11: - The AM_COND_IF macro also works if the shell expression for the conditional is no longer valid for the condition. - The automake-provided parallel testsuite harness does not fail anymore with BSD make used in parallel mode when there are test scripts in a subdirectory, like in: TESTS = sub/foo.test sub/bar.test * Long-standing bugs: - Automake's own build system finally have a real "installcheck" target. - Vala-related cleanup rules are now more complete, and work better in a VPATH setup. - Files listed with the AC_REQUIRE_AUX_FILE macro in configure.ac are now automatically distributed also if the directory of the auxiliary files coincides with the top-level directory. - Automake now detects the presence of the '-d' flag in the various '*YFLAGS' variables even when their definitions involve indirections through other variables, such as in: foo_opts = -d AM_YFLAGS = $(foo_opts) - Automake now complains if a '*YFLAGS' variable has any conditional content, not only a conditional definition. - Explicit enabling and/or disabling of Automake warning categories through the '-W...' options now always takes precedence over the implicit warning level implied by Automake strictness (foreign, gnu or gnits), regardless of the order in which such strictness and warning flags appear. For example, a setting like: AUTOMAKE_OPTIONS = -Wall --foreign will cause the warnings in category 'portability' to be enabled, even if those warnings are by default disabled in 'foreign' strictness.
126 lines
5.5 KiB
Text
126 lines
5.5 KiB
Text
@comment $NetBSD: PLIST,v 1.17 2012/04/26 20:41:17 wiz Exp $
|
|
bin/aclocal
|
|
bin/aclocal-${PKG_DIR_VERSION}
|
|
bin/automake
|
|
bin/automake-${PKG_DIR_VERSION}
|
|
info/automake-history.info
|
|
info/automake.info
|
|
man/man1/aclocal-${PKG_DIR_VERSION}.1
|
|
man/man1/aclocal.1
|
|
man/man1/automake-${PKG_DIR_VERSION}.1
|
|
man/man1/automake.1
|
|
share/aclocal-${PKG_DIR_VERSION}/amversion.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/ar-lib.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/as.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/auxdir.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/ccstdc.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/cond-if.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/cond.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/depend.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/depout.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/dmalloc.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/gcj.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/header.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/init.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/install-sh.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/lead-dot.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/lex.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/lispdir.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/maintainer.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/make.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/minuso.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/missing.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/mkdirp.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/obsol-gt.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/obsol-lt.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/obsolete.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/options.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/protos.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/python.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/runlog.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/sanity.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/silent.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/strip.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/substnot.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/tar.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/upc.m4
|
|
share/aclocal-${PKG_DIR_VERSION}/vala.m4
|
|
share/aclocal/README
|
|
share/automake-${PKG_DIR_VERSION}/Automake/ChannelDefs.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/Channels.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/Condition.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/Config.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/Configure_ac.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/DisjConditions.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/FileUtils.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/General.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/Getopt.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/Item.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/ItemDef.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/Location.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/Options.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/Rule.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/RuleDef.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/VarDef.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/Variable.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/Version.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/Wrap.pm
|
|
share/automake-${PKG_DIR_VERSION}/Automake/XFile.pm
|
|
share/automake-${PKG_DIR_VERSION}/COPYING
|
|
share/automake-${PKG_DIR_VERSION}/INSTALL
|
|
share/automake-${PKG_DIR_VERSION}/am/check.am
|
|
share/automake-${PKG_DIR_VERSION}/am/check2.am
|
|
share/automake-${PKG_DIR_VERSION}/am/clean-hdr.am
|
|
share/automake-${PKG_DIR_VERSION}/am/clean.am
|
|
share/automake-${PKG_DIR_VERSION}/am/compile.am
|
|
share/automake-${PKG_DIR_VERSION}/am/configure.am
|
|
share/automake-${PKG_DIR_VERSION}/am/data.am
|
|
share/automake-${PKG_DIR_VERSION}/am/dejagnu.am
|
|
share/automake-${PKG_DIR_VERSION}/am/depend.am
|
|
share/automake-${PKG_DIR_VERSION}/am/depend2.am
|
|
share/automake-${PKG_DIR_VERSION}/am/distdir.am
|
|
share/automake-${PKG_DIR_VERSION}/am/footer.am
|
|
share/automake-${PKG_DIR_VERSION}/am/header-vars.am
|
|
share/automake-${PKG_DIR_VERSION}/am/header.am
|
|
share/automake-${PKG_DIR_VERSION}/am/inst-vars.am
|
|
share/automake-${PKG_DIR_VERSION}/am/install.am
|
|
share/automake-${PKG_DIR_VERSION}/am/java.am
|
|
share/automake-${PKG_DIR_VERSION}/am/lang-compile.am
|
|
share/automake-${PKG_DIR_VERSION}/am/lex.am
|
|
share/automake-${PKG_DIR_VERSION}/am/library.am
|
|
share/automake-${PKG_DIR_VERSION}/am/libs.am
|
|
share/automake-${PKG_DIR_VERSION}/am/libtool.am
|
|
share/automake-${PKG_DIR_VERSION}/am/lisp.am
|
|
share/automake-${PKG_DIR_VERSION}/am/ltlib.am
|
|
share/automake-${PKG_DIR_VERSION}/am/ltlibrary.am
|
|
share/automake-${PKG_DIR_VERSION}/am/mans-vars.am
|
|
share/automake-${PKG_DIR_VERSION}/am/mans.am
|
|
share/automake-${PKG_DIR_VERSION}/am/program.am
|
|
share/automake-${PKG_DIR_VERSION}/am/progs.am
|
|
share/automake-${PKG_DIR_VERSION}/am/python.am
|
|
share/automake-${PKG_DIR_VERSION}/am/remake-hdr.am
|
|
share/automake-${PKG_DIR_VERSION}/am/scripts.am
|
|
share/automake-${PKG_DIR_VERSION}/am/subdirs.am
|
|
share/automake-${PKG_DIR_VERSION}/am/tags.am
|
|
share/automake-${PKG_DIR_VERSION}/am/texi-vers.am
|
|
share/automake-${PKG_DIR_VERSION}/am/texibuild.am
|
|
share/automake-${PKG_DIR_VERSION}/am/texinfos.am
|
|
share/automake-${PKG_DIR_VERSION}/am/vala.am
|
|
share/automake-${PKG_DIR_VERSION}/am/yacc.am
|
|
share/automake-${PKG_DIR_VERSION}/ar-lib
|
|
share/automake-${PKG_DIR_VERSION}/compile
|
|
share/automake-${PKG_DIR_VERSION}/config.guess
|
|
share/automake-${PKG_DIR_VERSION}/config.sub
|
|
share/automake-${PKG_DIR_VERSION}/depcomp
|
|
share/automake-${PKG_DIR_VERSION}/elisp-comp
|
|
share/automake-${PKG_DIR_VERSION}/install-sh
|
|
share/automake-${PKG_DIR_VERSION}/mdate-sh
|
|
share/automake-${PKG_DIR_VERSION}/missing
|
|
share/automake-${PKG_DIR_VERSION}/mkinstalldirs
|
|
share/automake-${PKG_DIR_VERSION}/py-compile
|
|
share/automake-${PKG_DIR_VERSION}/tap-driver.pl
|
|
share/automake-${PKG_DIR_VERSION}/tap-driver.sh
|
|
share/automake-${PKG_DIR_VERSION}/test-driver
|
|
share/automake-${PKG_DIR_VERSION}/texinfo.tex
|
|
share/automake-${PKG_DIR_VERSION}/ylwrap
|
|
share/doc/automake/amhello-1.0.tar.gz
|