public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Cc: Adolf Belka <adolf.belka@ipfire.org>
Subject: [PATCH] autoconf: Update to version 2.73
Date: Sun,  5 Apr 2026 14:03:19 +0200	[thread overview]
Message-ID: <20260405120354.137211-2-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20260405120354.137211-1-adolf.belka@ipfire.org>

- Update from version 2.72 to 2.73
- Update of rootfile
- Changelog
    2.73
	New features
	  autoreconf has a new option to exclude certain steps
	   autoreconf --exclude <tool>[,<tool>[,…]] tells autoreconf not to
	   run any of the listed tools, even if it appears to be necessary.
	   This is useful, for example, in situations where autoreconf’s
	   heuristics for when to run each tool are incorrect.  (All such
	   situations are considered bugs; please report them.)  It may also
	   be useful in “bootstrap” scripts that can use autoreconf for most
	   of the work but need to take manual control over execution of some
	   of the tools.
	   In older versions of Autoconf, it is possible to get the same effect
	   by setting TOOL=true in the environment for each tool that should not
	   be run.
	   Patch originally developed by the OpenEmbedded project.
	Notable bug fixes
	  AC_PROG_GO and AC_PROG_A68 now honor GOFLAGS and A68FLAGS set by the user
	  AC_C_FLEXIBLE_ARRAY_MEMBER and AC_PROG_LEX handle Solaris 10 better
	  autoheader takes more care not to overwrite hand-written config.h.in
	   Before overwriting an existing config.h.in, autoheader now checks
	   for the marker comment on the first line that indicates it was
	   generated by autoheader.  It can be forced to overwrite a
	   config.h.in that doesn’t have that marker by using the new option
	   --replace-handwritten.
	  AC_OUTPUT issues an error if called with more than three arguments
	   All prior versions of GNU autoconf ignore extra arguments to AC_OUTPUT.
	   However, some software’s configure scripts expect a modified version
	   of autoconf in which a fourth argument does something useful.
	   The error is intended to stop redistributors of those programs
	   from regenerating the configure script with a version of autoconf
	   that does not have those modifications, as this is likely to produce
	   a broken configure script.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 config/rootfiles/common/autoconf | 3 ++-
 lfs/autoconf                     | 8 ++++----
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/config/rootfiles/common/autoconf b/config/rootfiles/common/autoconf
index a351b29c6..bdd106b1a 100644
--- a/config/rootfiles/common/autoconf
+++ b/config/rootfiles/common/autoconf
@@ -19,6 +19,7 @@
 #usr/share/autoconf/Autom4te/XFile.pm
 #usr/share/autoconf/INSTALL
 #usr/share/autoconf/autoconf
+#usr/share/autoconf/autoconf/a68.m4
 #usr/share/autoconf/autoconf/autoconf.m4
 #usr/share/autoconf/autoconf/autoconf.m4f
 #usr/share/autoconf/autoconf/autoheader.m4
@@ -40,6 +41,7 @@
 #usr/share/autoconf/autoconf/status.m4
 #usr/share/autoconf/autoconf/trailer.m4
 #usr/share/autoconf/autoconf/types.m4
+#usr/share/autoconf/autoconf_version.m4
 #usr/share/autoconf/autom4te.cfg
 #usr/share/autoconf/autoscan
 #usr/share/autoconf/autoscan/autoscan.list
@@ -58,7 +60,6 @@
 #usr/share/autoconf/m4sugar/m4sh.m4f
 #usr/share/autoconf/m4sugar/m4sugar.m4
 #usr/share/autoconf/m4sugar/m4sugar.m4f
-#usr/share/autoconf/version.m4
 #usr/share/info/autoconf.info
 #usr/share/info/standards.info
 #usr/share/man/man1/autoconf.1
diff --git a/lfs/autoconf b/lfs/autoconf
index 43033d6db..2c8542bbc 100644
--- a/lfs/autoconf
+++ b/lfs/autoconf
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 2.72
+VER        = 2.73
 
 THISAPP    = autoconf-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -39,7 +39,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 01caeced9e53d8bd39fb0cf4929322f0d463971b0a96368aa55892026897a9e98c2ca84a77db1b3c6c4483aea54b96da16a7bc00b7ac15e23c6b0471438012db
+$(DL_FILE)_BLAKE2 = b5f0b9d3baf883148de8f1d7ae102b8742c0bf57b9ae44286f0da1fef82d7ea8dd1117f04cc85f52254e282f886780165b9773953b3d8ed89130b8419cd288f7
 
 install : $(TARGET)
 
@@ -71,7 +71,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar Jxf $(DIR_DL)/$(DL_FILE)
 	$(UPDATE_AUTOMAKE)
 	cd $(DIR_APP) && ./configure \
-		--prefix=/usr
+				--prefix=/usr
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)
-- 
2.53.0



  reply	other threads:[~2026-04-05 12:04 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-05 12:03 [PATCH] abseil-cpp: Update to version 20260107.1 Adolf Belka
2026-04-05 12:03 ` Adolf Belka [this message]
2026-04-05 12:03 ` [PATCH] btrfs-progs: Update to version 6.19.1 Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship abseil-cpp Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship autoconf Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship btrfs-progs Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship curl Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship e2fsprogs Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship freetype Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship groff Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship harfbuzz Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship iana-etc Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship intel-microcode Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship libarchive Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship libcap-ng Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship libedit Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship libinih Adolf Belka
2026-04-05 12:03 ` [PATCH] core202: Ship libmpc Adolf Belka
2026-04-05 12:03 ` [PATCH] curl: Update to version 8.19.0 Adolf Belka
2026-04-05 12:03 ` [PATCH] e2fsprogs: Update to version 1.47.4 Adolf Belka
2026-04-05 12:03 ` [PATCH] ffmpeg: Update to version 8.1 Adolf Belka
2026-04-05 12:03 ` [PATCH] freetype: Update to version 2.14.3 Adolf Belka
2026-04-05 12:03 ` [PATCH] frr: Update to version 10.6.0 Adolf Belka
2026-04-05 12:03 ` [PATCH] groff: Update to version 1.24.1 Adolf Belka
2026-04-05 12:03 ` [PATCH] harfbuzz: Update to version 14.0.0 Adolf Belka
2026-04-05 12:03 ` [PATCH] iana-etc: Update to version 20260327 Adolf Belka
2026-04-05 12:03 ` [PATCH] intel-microcode: Update to version 20260227 Adolf Belka
2026-04-05 12:03 ` [PATCH] keepalived: Update to version 2.3.4 Adolf Belka
2026-04-05 12:03 ` [PATCH] libarchive: Update to version 3.8.6 Adolf Belka
2026-04-05 12:03 ` [PATCH] libcap-ng: Update to version 0.9.2 Adolf Belka
2026-04-05 12:03 ` [PATCH] libedit: Update to version 20251016-3.1 Adolf Belka
2026-04-05 12:03 ` [PATCH] libid3tag: Remove patch that is no longer required Adolf Belka
2026-04-05 12:03 ` [PATCH] libid3tag: Update to version 0.16.4 Adolf Belka
2026-04-05 12:03 ` [PATCH] libinih: Update to version 62 Adolf Belka
2026-04-05 12:03 ` [PATCH] libmicrohttpd: Update to version 1.0.3 Adolf Belka
2026-04-05 12:03 ` [PATCH] libmpc: Update to version 1.4.0 Adolf Belka
2026-04-05 12:03 ` [PATCH] libpciaccess: Update to version 0.19 Adolf Belka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260405120354.137211-2-adolf.belka@ipfire.org \
    --to=adolf.belka@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox