Files
bpfire/config/rootfiles/common
Adolf Belka 5bf383da9e automake: Update to version 1.17
- Update from version 1.16.5 to 1.17
- Update of rootfile
- Changelog
    1.17
	* New features added
	  - AM_PATH_PYTHON will, after checking "python", prefer any Python 3
	    version (latest versions checked first) over any Python 2
	    version. If a specific version of Python 2 is still needed, the
	    $PYTHON variable should be set beforehand.
	  - AM_PATH_PYTHON will also search for Python versions 3.20 through 3.10.
	    It previously searched for 3.9 through 3.0. (bug#53530)
	  - RANLIB may be overridden on a per-target basis.
	  - AM_TEXI2FLAGS may be defined to pass extra flags to TEXI2DVI & TEXI2PDF.
	  - New option "posix" to emit the special target .POSIX for make.
	    (bug#55025, bug#67891)
	  - Systems with non-POSIX "rm -f" behavior are now supported, and the
	    prior intent to drop support for them has been reversed.
	    The ACCEPT_INFERIOR_RM_PROGRAM setting no longer exists.
	    (bug#10828)
	  - Variables using escaped \# will trigger portability warnings, but be
	    retained when appended.  GNU Make & BSD Makes are known to support it.
	    (bug#7610)
	  - GNU Make's default pattern rules are disabled, for speed and debugging.
	    (.SUFFIXES was already cleared.) (bug#64743)
	  - For Texinfo documents, if a .texi.in file exists, but no .texi, the
	    .texi.in will be read. Texinfo source files need not be present at
	    all, and if present, need not contain @setfilename. Then the file name
	    as given in the Makefile.am will be used.  If @setfilename is present,
	    it should be the basename of the Texinfo file, extended with .info.
	    (bug#54063)
	  - aclocal has a new option --aclocal-path to override $ACLOCAL_PATH.
	    (https://lists.gnu.org/archive/html/automake-patches/2022-01/msg00029.html)
	  - The missing script also supports autoreconf, autogen, and perl.
	    (https://lists.gnu.org/archive/html/automake-patches/2015-08/msg00000.html)
	  - test-suite.log now contains basic system information, and the
	    console message about bug reporting on failure has a bit more detail.
	    (bug#68746, bug#71421)
	  - When using the (default) "parallel" test driver, you can now omit the
	    output of skipped tests from test-suite.log by defining the
	    variable IGNORE_SKIPPED_LOGS to a non-empty value. (bug#71422)
	* Bugs fixed
	  - Generated file timestamp checks handle filesystems with subsecond
	    timestamp granularity dynamically, greatly speeding up the sleep
	    done by AC_OUTPUT when generating config.status (all packages) and
	    Automake's make check.
	    However, this subsecond-mtime support requires an autom4te from
	    Autoconf 2.72 or later (or random test failures and other timing
	    problems may ensue), as well as a Perl, sleep program, make program,
	    and filesystem that all support subsecond resolution; otherwise, we
	    fall back to a two-second granularity, not even testing the (common)
	    1s case since that would induce a 2s delay for all configure scripts
	    in all packages on all systems that don't support subsecond mtimes.
	    When everything is supported, a line "Features: subsecond-mtime" is
	    now printed by automake --version and autom4te --version.
	    To override this check and delay, e.g. to use 1 second:
	      am_cv_filesystem_timestamp_resolution=1
	      export am_cv_filesystem_timestamp_resolution
	    (commit 720a11531,
	      https://lists.gnu.org/archive/html/automake-commit/2022-02/msg00009.html
	    then bug#60808, bug#64756, bug#67670, bug#68808, bug#71652,
	    history reviewed in
	      https://lists.gnu.org/archive/html/automake/2024-06/msg00054.html
	    and more info in surrounding threads.)
	  - The default value of $ARFLAGS is now "cr" instead of "cru", to better
	    support deterministic builds. (bug#20082)
	  - Automake's make dist now uses -9 instead of --best with gzip,
	    because Alpine gzip does not support --best. Also, GZIP_ENV is used
	    only for compression, not decompression, because of the same system.
	    (bug#68151)
	  - Dependency files are now empty, instead of "# dummy", for speed.
	    (https://lists.gnu.org/archive/html/automake/2022-05/msg00006.html)
	  - Compiling Python modules with Python 3.5+ uses multiple optimization
	    levels. (bug#38043)
	  - If the Python installation "scheme" is set to posix_local (Debian),
	    it is reset to either deb_system (if the prefix = /usr), or
	    posix_prefix (otherwise). (bug#54412, bug#64837)
	  - As a result of the Python scheme change, the installation directory
	    for Python files again defaults to "site-packages" under the usual
	    installation prefix, even on systems (generally Debian-based) that
	    would normally use the "dist-packages" subdirectory under
	    /usr/local.
	  - When compiling Emacs Lisp files, emacs is run with --no-site-file to
	    disable user config files that might hang or access the terminal;
	    and -Q is not used, since its support and behavior varies. (bug#58102)
	  - Emacs Lisp compilations respect silent make output.
	  - Automake no longer incorrectly warns that the POSIX make variables
	    $(*D) and the like are non-POSIX. Unfortunately, the make
	    implementations which do not correctly implement all the POSIX
	    variables are not detected, but this seems to have little impact
	    in practice. (bug#9587)
	  - Pass libtool tags OBJC and OBJCXX for the respective languages.
	    (bug#67539)
	  - distcleancheck ignores "silly rename" files (.nfs* .smb* .__afs*)
	    that can show up on network file systems.
	    (https://lists.gnu.org/archive/html/automake/2022-09/msg00002.html)
	  - Pass any options given to AM_PROG_LEX on to AC_PROG_LEX.
	    (bug#65600, bug#65730)
	  - aclocal: recognize ; as path separator on OS/2 and Windows. (bug#71534)
	  - Hash iterations with external effects now consistently sort keys.
	    (bug#25629, bug#46744)
	  - tests: avoid some declaration conflicts for lex et al. on SunOS.
	    (bug#34151 and others)
	  - tests: declare yyparse before use and use (void) parameter lists
	    instead of (), to placate C23. (bug#71425)
	  - Typos in code and other doc fixes. (bug#68003, bug#68004, et al.)
	* Obsolescence:
	  - py-compile no longer supports Python 0.x or 1.x versions.  Python 2.0,
	    released in 2000, is currently the minimum required version.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2024-08-26 08:12:40 +00:00
..
2024-08-23 09:58:25 +00:00
2024-08-23 09:58:25 +00:00
2024-01-31 10:27:12 +00:00
2023-04-18 21:16:24 +00:00
2023-01-23 15:21:08 +00:00
2023-04-25 12:35:52 +00:00
2023-04-18 21:17:23 +00:00
2015-12-13 22:28:15 +00:00
2024-04-08 10:14:55 +02:00
2021-02-12 11:54:42 +00:00
2024-08-19 10:01:01 +00:00
2024-08-26 08:12:40 +00:00
2017-06-07 09:55:27 +01:00
2020-05-09 12:03:23 +00:00
2024-07-02 09:18:29 +00:00
2021-11-24 09:09:47 +00:00
2017-09-22 18:56:04 +01:00
2013-08-28 11:18:37 +02:00
2021-03-29 12:53:09 +00:00
2023-01-26 23:19:05 +00:00
2018-07-14 13:43:49 +01:00
2021-05-06 09:54:21 +00:00
2023-03-05 14:15:52 +00:00
2024-07-22 15:21:21 +00:00
2024-06-14 07:47:54 +02:00
2024-08-14 09:07:56 +00:00
2024-08-06 09:13:42 +00:00
2022-02-11 09:17:36 +00:00
2018-06-25 10:54:36 +01:00
2022-02-23 15:46:45 +00:00
2017-04-17 12:36:49 +01:00
2021-10-22 09:59:20 +00:00
2024-03-26 07:33:40 +00:00
2021-09-05 17:48:28 +00:00
2021-03-29 12:54:50 +00:00
2024-03-12 10:15:49 +00:00
2023-03-05 15:00:03 +00:00
2021-05-20 09:47:41 +00:00
2024-08-14 09:08:29 +00:00
2024-03-14 18:37:58 +00:00
2021-02-03 22:23:13 +00:00
2020-11-05 23:29:18 +00:00
2021-12-09 21:04:50 +01:00
2022-02-11 09:17:46 +00:00
2015-05-03 21:51:04 +02:00
2017-06-07 09:55:16 +01:00
2013-04-12 12:43:27 +02:00
2023-09-12 16:12:53 +00:00
2021-12-09 21:08:10 +01:00
2023-07-26 16:09:00 +00:00
2023-11-21 19:09:32 +00:00
2021-10-22 16:02:22 +00:00
2024-03-12 10:15:49 +00:00
2022-01-14 13:46:00 +00:00
2024-07-22 15:21:21 +00:00
2024-03-12 10:15:49 +00:00
2023-08-08 16:02:35 +00:00
2024-08-23 09:57:36 +00:00
2013-07-03 21:38:17 +02:00
2012-08-20 11:39:23 +02:00
2023-07-31 09:23:03 +00:00
2020-04-30 14:52:53 +00:00
2023-11-21 19:12:54 +00:00
2018-02-11 20:56:12 +00:00
2018-07-12 10:03:34 +01:00
2024-03-12 10:15:49 +00:00
2024-03-26 07:36:02 +00:00
2024-03-14 14:07:58 +00:00
2023-01-05 10:47:40 +00:00
2023-01-18 23:23:06 +00:00
2023-01-05 10:47:09 +00:00
2021-11-24 09:05:10 +00:00
2023-11-21 19:01:29 +00:00
2013-10-15 16:46:15 +02:00
2023-08-29 09:51:28 +00:00
2024-06-26 15:20:48 +02:00
2023-01-09 18:36:05 +00:00
2024-04-28 21:04:28 +00:00
2024-03-12 10:15:49 +00:00
2023-08-29 09:54:23 +00:00
2023-12-30 07:33:44 +00:00
2012-08-24 16:22:24 +02:00
2022-04-30 08:56:30 +00:00
2024-08-09 10:38:14 +00:00
2024-08-09 14:22:12 +00:00
2021-04-26 17:08:53 +00:00
2022-12-26 08:30:22 +00:00
2021-04-26 17:10:13 +00:00
2024-03-12 10:15:49 +00:00
2024-08-09 10:41:05 +00:00
2022-12-17 17:20:45 +00:00
2019-12-29 19:09:27 +00:00
2024-01-23 14:00:08 +00:00
2022-05-16 07:11:45 +00:00
2024-08-09 10:40:29 +00:00
2023-08-10 06:34:27 +00:00
2016-09-24 13:07:13 +01:00
2022-12-27 16:34:44 +00:00
2024-08-09 14:21:42 +00:00
2015-06-23 13:37:57 +02:00
2023-09-12 16:14:53 +00:00
2022-09-01 21:16:50 +00:00
2023-05-03 07:28:37 +00:00
2024-01-31 10:28:33 +00:00
2024-08-13 09:04:04 +00:00
2014-08-20 21:45:12 +02:00
2024-08-13 09:09:07 +00:00
2024-01-11 11:59:09 +00:00
2022-11-28 13:09:53 +01:00
2024-08-13 09:04:34 +00:00
2023-01-26 23:11:22 +00:00
2023-03-05 15:13:24 +00:00
2024-08-13 09:09:38 +00:00
2021-02-22 11:28:11 +00:00
2024-08-13 09:10:36 +00:00
2024-08-06 09:12:58 +00:00
2024-01-25 10:23:03 +00:00
2024-08-06 09:11:59 +00:00
2023-11-22 15:26:28 +00:00
2017-04-28 13:04:19 +01:00
2023-03-05 14:53:06 +00:00
2023-11-21 19:27:56 +00:00
2023-05-03 07:48:03 +00:00
2024-08-14 09:10:21 +00:00
2021-02-05 11:24:35 +00:00
2021-02-09 12:00:04 +00:00
2021-12-03 22:51:39 +01:00
2024-07-22 15:21:21 +00:00
2020-01-04 18:23:52 +00:00
2022-11-18 14:37:25 +00:00
2024-03-14 14:08:54 +00:00
2021-01-27 21:06:57 +00:00
2013-10-24 15:20:48 +02:00
2023-08-24 13:42:04 +00:00
2012-08-07 20:21:06 +02:00
2024-07-22 15:21:21 +00:00
2021-02-08 13:51:04 +00:00
2023-06-15 09:36:10 +00:00
2024-03-12 10:15:49 +00:00
2020-12-27 10:29:55 +00:00
2018-06-30 19:51:38 +01:00
2022-03-10 10:40:37 +00:00
2024-06-27 15:48:35 +02:00
2022-06-17 10:20:18 +00:00
2024-03-12 10:15:49 +00:00
2022-04-29 18:59:39 +00:00
2024-08-06 09:10:28 +00:00
2024-06-14 14:16:41 +02:00
2024-08-23 09:58:07 +00:00
2024-06-26 15:22:23 +02:00
2024-03-12 10:15:49 +00:00
2023-04-24 18:54:21 +00:00
2014-07-23 22:57:47 +02:00
2024-03-12 10:15:49 +00:00
2021-08-16 06:52:19 +00:00
2024-07-22 15:21:21 +00:00
2024-03-12 10:15:49 +00:00
2022-09-01 21:16:51 +00:00
2022-09-01 21:16:51 +00:00
2022-09-01 21:16:51 +00:00
2022-09-01 21:16:51 +00:00
2022-09-01 21:16:51 +00:00
2022-09-01 21:16:50 +00:00
2024-03-30 12:09:14 +00:00
2022-09-01 21:16:50 +00:00
2022-09-01 21:16:50 +00:00
2024-03-12 10:15:49 +00:00
2024-08-14 09:06:09 +00:00
2021-04-10 13:39:32 +00:00
2023-08-08 16:07:28 +00:00
2023-09-12 16:18:08 +00:00
2024-03-30 12:14:37 +00:00
2022-12-26 08:56:24 +00:00
2023-01-19 21:38:18 +00:00
2022-02-21 21:13:50 +00:00
2023-10-30 09:53:48 +00:00
2024-03-12 10:15:49 +00:00
2022-06-17 10:20:18 +00:00
2023-03-05 14:15:52 +00:00
2017-05-19 17:44:13 +01:00
2020-08-16 10:29:42 +00:00
2024-08-03 09:42:07 +00:00
2022-02-02 19:43:26 +00:00
2022-02-09 13:48:03 +00:00
2022-02-02 19:43:24 +00:00
2022-02-02 19:43:27 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:24 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:24 +00:00
2022-02-02 19:43:27 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:27 +00:00
2022-02-02 19:43:27 +00:00
2022-02-02 19:43:27 +00:00
2022-02-02 19:43:27 +00:00
2022-02-02 19:43:25 +00:00
2022-02-09 13:48:34 +00:00
2022-02-02 19:43:27 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:27 +00:00
2022-02-02 19:43:27 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:25 +00:00
2022-02-09 13:52:30 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:27 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:26 +00:00
2022-02-02 19:43:27 +00:00
2022-02-02 19:43:24 +00:00
2022-02-02 19:43:25 +00:00
2022-02-02 19:43:27 +00:00
2022-02-02 19:43:25 +00:00
2024-06-26 15:23:45 +02:00
2012-08-12 16:39:18 -04:00
2018-07-12 10:03:34 +01:00
2024-07-22 15:21:21 +00:00
2023-04-18 21:15:28 +00:00
2020-03-29 06:34:18 +00:00
2021-03-10 13:59:29 +00:00
2021-10-13 12:13:04 +00:00
2024-03-12 10:15:49 +00:00
2021-01-06 15:21:42 +00:00
2023-11-21 19:23:18 +00:00
2024-02-10 11:56:23 +00:00
2022-11-23 12:25:36 +00:00
2021-09-05 08:42:10 +00:00
2017-01-29 19:30:13 +00:00
2022-11-29 13:42:35 +01:00
2023-10-09 08:17:23 +00:00
2024-03-12 10:15:49 +00:00
2024-03-14 14:11:22 +00:00
2023-11-22 21:41:02 +00:00
2023-03-04 14:07:22 +00:00
2023-10-30 09:53:48 +00:00
2024-08-16 09:58:42 +00:00
2017-04-06 10:06:08 +01:00
2023-11-21 19:23:58 +00:00
2024-06-27 08:02:51 +02:00
2020-04-30 14:56:49 +00:00
2013-12-26 14:03:31 +01:00
2016-07-16 10:53:53 +01:00
2021-04-26 17:04:00 +00:00
2024-07-02 09:15:58 +00:00
2020-10-15 15:33:44 +00:00
2024-01-31 10:29:47 +00:00
2024-07-02 09:16:27 +00:00