From patchwork Wed Apr 29 17:50:21 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9751 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pww2mgPz3wkr for ; Wed, 29 Apr 2026 17:50:56 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4g5Pww0Tqjz7Jc for ; Wed, 29 Apr 2026 17:50:56 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Pwj0sMwz34Rn for ; Wed, 29 Apr 2026 17:50:45 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pwf4gJWz2xKR for ; Wed, 29 Apr 2026 17:50:42 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5Pwd6nspz44C; Wed, 29 Apr 2026 17:50:41 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777485042; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=VVIJn1EpTusSWDHe8if8rMI+1fMtlQvusNCgx3l07eY=; b=e22pw/C5fUbFF2DHQhPtracA6u2C7ue4h1JBJ8DFxy1T2oegQiWGSqaMZR40D9HHKPBuUg qFjX1FwbUOLKksAg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777485042; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=VVIJn1EpTusSWDHe8if8rMI+1fMtlQvusNCgx3l07eY=; b=XdehMe7YckmLkMeCQ4fdAkaImccHRAX9ZpiV0T32WUAWyT4IkG6EY+iARkbe02NgHUncD5 YkPFfW1AL1s8HRwR2KQiG/a2quoEQX+A/p4nQBpGmiBQhw67yovpwYY8xb+87gfN46tVWr 8+S9A2PsW5T0K7Ks8F7A7QHhUin/kzzPuGR1YnupT5oLwM0tLDqx6ZT2dJQHwdUz5Aoz8r PAwIHZlcr9E3uI27hGz8rMWh5Jq9igxdTcIg2Fn6HEHhXCX+itHgmh4mEeW8/6E1+5iE+o VynRv7+M53xsn7uky48x3rtyYcLxF/hKoGvb9DZC4yvuyqbWP9kJoRJNhIVOUg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) Date: Wed, 29 Apr 2026 19:50:21 +0200 Message-ID: <20260429175032.2811103-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - I was searching in the _build.ipfire.log file to resolve something else and I noticed that there were several packages with the same message. configure: WARNING: unrecognized options: - I investigated the options for each package and identified if the option was no longer valid or if it had been replaced with another option which had not been identified when it occurred. - This patch set resolves all the unrecognised configure options except for one that needs further investigation (tcl) and this has been confirmed ny a search in the -build.ipfire.log created after the build with all the changes in this patch set. - For dnsdist two options had their names changed in version 1.4.0 in around 2019. - --enable-openssl has become --with-libssl - --disable-gnutls has become --without-gnutls Signed-off-by: Adolf Belka --- lfs/dnsdist | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/dnsdist b/lfs/dnsdist index 5832cd6b3..ac4075afc 100644 --- a/lfs/dnsdist +++ b/lfs/dnsdist @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = dnsdist -PAK_VER = 33 +PAK_VER = 34 DEPS = @@ -86,8 +86,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && ./configure \ --prefix=/usr \ --sysconfdir=/etc \ - --enable-openssl \ - --disable-gnutls \ + --with-libssl \ + --without-gnutls \ --enable-dns-over-tls \ --with-lua \ --without-net-snmp \ From patchwork Wed Apr 29 17:50:22 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9752 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pww4YqNz3wpF for ; Wed, 29 Apr 2026 17:50:56 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4g5Pww3pdyz7JJ for ; Wed, 29 Apr 2026 17:50:56 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Pwj2r6qz34Tt for ; Wed, 29 Apr 2026 17:50:45 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pwf6HN1z30Md for ; Wed, 29 Apr 2026 17:50:42 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5Pwf40Rjz76B; Wed, 29 Apr 2026 17:50:42 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777485042; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=b6B1INZxunU0u5X8sdFbvtnqkItSA9KbsIho5vCLs/w=; b=RPAPuXRQQQECnmlXJkhsup30VSEVk31ElmiX3x2Lky+AMaFKkd2G5M6e+WeUHz44ZkDpDb +w5Y6BP0L/ATsFBg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777485042; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=b6B1INZxunU0u5X8sdFbvtnqkItSA9KbsIho5vCLs/w=; b=fpyI5KMcrzyUZJVVou8TWEHpTiOrx2DxZWNYeY8C1jup1KLD4gY66g2Jfmu5IRMERmQRck LgNZxu2ttE5fABU6Tb2LIOnpWljpvJjl7wtB1Y0ymKgyu5EjJfjClxwrrc9H4LmnwpfN9n Ss2KJbcohdVRSmowOhYDsPOkTXdy1FcFo6G1aswpdEbTngJwT3UH3SBVHtlXlm55y1TIyH 7Kk0GKFKroJtR/sCTqityNHON3RWsxnalpMMk1loOfifnWNlub58FwhO9Q3TDySVrq5NVb PHEe0Rs6aRaurn6HclB3a0db3dxnWvmkvFMeIQ20ajHvHzBEHM8nPisU2qZ7TQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 02/12] flac: Resolve configure unrecognised option(s) Date: Wed, 29 Apr 2026 19:50:22 +0200 Message-ID: <20260429175032.2811103-2-adolf.belka@ipfire.org> In-Reply-To: <20260429175032.2811103-1-adolf.belka@ipfire.org> References: <20260429175032.2811103-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - configure: WARNING: unrecognized options: --disable-xmms-plugin - the xmms plugin was removed from flac in version 1.4.2 in 2022 so the option is no longer needed and has been removed Signed-off-by: Adolf Belka --- lfs/flac | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lfs/flac b/lfs/flac index 9075e9f92..67fb64ea0 100644 --- a/lfs/flac +++ b/lfs/flac @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2025 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # 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 # @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = flac -PAK_VER = 5 +PAK_VER = 6 DEPS = libogg @@ -84,7 +84,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && \ ./configure \ --prefix=/usr \ - --disable-xmms-plugin \ --disable-thorough-tests cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install From patchwork Wed Apr 29 17:50:23 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9753 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pww4zrgz3x6k for ; Wed, 29 Apr 2026 17:50:56 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4g5Pww3qJNz7JN for ; Wed, 29 Apr 2026 17:50:56 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Pwj318Rz34VN for ; Wed, 29 Apr 2026 17:50:45 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pwf6k5fz30Mt for ; Wed, 29 Apr 2026 17:50:42 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5Pwf5PKSz44C; Wed, 29 Apr 2026 17:50:42 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777485042; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=fyDRd+2h2CrEIBFNGjsdSqIeaRvfl+De0pWEBKLL4tg=; b=Oz0fFwYtqgy0IHwqP8l9AMwJb8N2emGw0DHSYqIaMf8PLOrVpLod10AlBPgE9FDpzTlZbh UjlJHejoqIbP2pCQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777485042; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=fyDRd+2h2CrEIBFNGjsdSqIeaRvfl+De0pWEBKLL4tg=; b=rC+tIntMrU/6HEzUW2L7K/1d0YAbGDoZ+lkSNp9v6+rjxJ6ASMSUVDwKsDuGppBwRi00Pc qf3CohTBjvdmUAzP4Ivzuth0eijlsFLcvkklxmXq2GMjGcRC39uqM0sa9UzB/f1ZCHzatd 4eS5b7TgeC5WpgfZl3srDOnmyDJCU5O5tZ0rm7E1Lx7UJ3jCKVNsPRx088dftAql/EeAlF EhZiY6Uuu9EsHftRt7b+vAsza82mzSd7qN5+bjtTdCAWDFOhRWi/t3+bAPR7ezsbdpBB5G RzNe423WyrDIOmIolZctiS0I59hhaPahEs/7sR8i89zqXDzqdT43Bl+RVKdkZQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 03/12] frr: Resolve configure unrecognised option(s) Date: Wed, 29 Apr 2026 19:50:23 +0200 Message-ID: <20260429175032.2811103-3-adolf.belka@ipfire.org> In-Reply-To: <20260429175032.2811103-1-adolf.belka@ipfire.org> References: <20260429175032.2811103-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - configure: WARNING: unrecognized options: --disable-irdp - The irdp code was removed from frr in version 10.5.0 so the disable option is no longer required Signed-off-by: Adolf Belka --- lfs/frr | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lfs/frr b/lfs/frr index fedcb14a1..4757a8544 100644 --- a/lfs/frr +++ b/lfs/frr @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = frr -PAK_VER = 16 +PAK_VER = 17 DEPS = @@ -97,7 +97,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --disable-babeld \ --disable-bfdd \ --disable-eigrpd \ - --disable-irdp \ --disable-isisd \ --disable-ldpd \ --disable-nhrpd \ From patchwork Wed Apr 29 17:50:24 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9754 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pww6z7xz3x94 for ; Wed, 29 Apr 2026 17:50:56 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4g5Pww6DZ5z7J3 for ; Wed, 29 Apr 2026 17:50:56 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Pwj4DJZz34XC for ; Wed, 29 Apr 2026 17:50:45 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pwg0q2Dz331X for ; Wed, 29 Apr 2026 17:50:43 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5Pwf6Z62z7D7; Wed, 29 Apr 2026 17:50:42 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777485043; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=JmsGU3gRV02BqczZc9jaXr9siK2+tmFKi6Ey7J9ZZQs=; b=EQ/+tquACklTEn13yK8GEySwd7xbpYafgauSTJNeNZ53Uaesb1efPyFXtQ6Daf5jPw59jv kl4H73z7VIqTRxBA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777485043; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=JmsGU3gRV02BqczZc9jaXr9siK2+tmFKi6Ey7J9ZZQs=; b=HiECNhG93fDi4N985oWQCIEBV+ZJMaf7+ajoTYakzkGi4WQJXF+vG9BPsnxN69VsD5zdZV vg70HgT1e3EpKzkAAcMHYzMtjdN6wg+5/w+WoWk6hTLa04rKjMf3pIFcq7UmaH2rhhIzgH /DHYg8DXHQnQq0aflCjkkZopxZ+KsLUTbQJESWPzwqw6PJTUWUqeTn4H4NSczcd/aeSMWU e6O8xqHdzSnULPMEEUkl7z72b0GPkyF4j+0mZyp3C+U/euEjQnX5GI02WLE1cyi/mS0yvo 8kbY/NfjHnG+L9FofZGCuTX2XjLUQQCKNoDohC/OzAgshFfVvAns/7SBVITYaw== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 04/12] gnutls: Resolve configure unrecognised option(s) Date: Wed, 29 Apr 2026 19:50:24 +0200 Message-ID: <20260429175032.2811103-4-adolf.belka@ipfire.org> In-Reply-To: <20260429175032.2811103-1-adolf.belka@ipfire.org> References: <20260429175032.2811103-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - configure: WARNING: unrecognized options: --disable-guile - The guile bindings were removed and made into a separate package in version 3.8.0 in 2023 Signed-off-by: Adolf Belka --- lfs/gnutls | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lfs/gnutls b/lfs/gnutls index 15d0362dd..c869100ba 100644 --- a/lfs/gnutls +++ b/lfs/gnutls @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2025 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # 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 # @@ -74,8 +74,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) ./configure \ --prefix=/usr \ --without-p11-kit \ - --disable-openssl-compatibility \ - --disable-guile + --disable-openssl-compatibility cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install @rm -rf $(DIR_APP) From patchwork Wed Apr 29 17:50:25 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9755 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4g5Px10Z7kz3wkr for ; Wed, 29 Apr 2026 17:51:01 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4g5Px050HRz7Hf for ; Wed, 29 Apr 2026 17:51:00 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Pwq0r3sz377v for ; Wed, 29 Apr 2026 17:50:51 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pwm4NjBz30HY for ; Wed, 29 Apr 2026 17:50:48 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5Pwg0d9Hz7G8; Wed, 29 Apr 2026 17:50:43 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777485043; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ZJ4VTl6lmHyBNNazA5q2jCGzTug75Vehea+Ix97bQ0E=; b=QJSLk8Fs2ZygB0HNqya5LnqFSOkPrcnfgtLyZvnTCzQyiNgSrutthgtFlAUszESxtFhrOF YoH9QaHrZdh25JDw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777485043; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ZJ4VTl6lmHyBNNazA5q2jCGzTug75Vehea+Ix97bQ0E=; b=APchT/RuUREO/91xcCTwU5vgIbCTYxvazfPdUN9n4+d8i5JOtVwNFzcgLGLsmyBiZ149sY 4DgeZZrsSU6ERFn0DLqgHS9lfU8TTpCpVGAJc1rCb3uKrJw7/7m3zVwZ1dk7Wk5FgW3EvO pbW/xdn5iAykLbVXchQ7mUoT+BNNHI7LdGLwlgfCSdy/7O17mVa1yS0LCaCrV7R7yynEMa pHsLWiUP9tFFPVtKOl55tWjJMYyLS5vP9mKOTo4FUTkJYRAyuuRjA/NlWrfY3TuF5pZcHh KuY/y+77a72nxp5ZKsg3bwChn0UUnEoFv/UchaxMNebf02AsaRUFsCA+d/sUuQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 05/12] core202: Ship gnutls Date: Wed, 29 Apr 2026 19:50:25 +0200 Message-ID: <20260429175032.2811103-5-adolf.belka@ipfire.org> In-Reply-To: <20260429175032.2811103-1-adolf.belka@ipfire.org> References: <20260429175032.2811103-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Signed-off-by: Adolf Belka --- config/rootfiles/core/202/filelists/gnutls | 1 + 1 file changed, 1 insertion(+) create mode 120000 config/rootfiles/core/202/filelists/gnutls diff --git a/config/rootfiles/core/202/filelists/gnutls b/config/rootfiles/core/202/filelists/gnutls new file mode 120000 index 000000000..8dbe60bc3 --- /dev/null +++ b/config/rootfiles/core/202/filelists/gnutls @@ -0,0 +1 @@ +../../../common/gnutls \ No newline at end of file From patchwork Wed Apr 29 17:50:26 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9756 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4g5Px10w2cz3wpF for ; Wed, 29 Apr 2026 17:51:01 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4g5Px057frz7Hn for ; Wed, 29 Apr 2026 17:51:00 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Pwq2wxHz378D for ; Wed, 29 Apr 2026 17:50:51 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pwm6lQdz32xs for ; Wed, 29 Apr 2026 17:50:48 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5Pwm4KfTz78p; Wed, 29 Apr 2026 17:50:48 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777485048; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/ZuQv+XZPdgImgeqGiOxY1Mx049p47CIPmD25hwP1d8=; b=acjH1+3hPiLn3VXg0fhC5OGMjo8h0hg28kbUVFm92g+D68EQ8nXymLmtLJVgZhMmf5y6tE 3h+dbH1C4qtB67Cg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777485048; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/ZuQv+XZPdgImgeqGiOxY1Mx049p47CIPmD25hwP1d8=; b=fy6KB3Wg1hVTrMY/K4l9E9G1X7iyGvrFlXvdJTUb6foRyyN8gpLwF/+yDoeN3uVu3xLxrb 0poc3ITeeQ4NayMxyIieb0HnRr3V8qj+CbfO35Fo7fYJeBRPihsDP2PpBWjxNLlzOCpmEb HrSOrJsQ2kmfsJEiBGX/cCVDAzWzjWIzvkaa0K8ieEJkXp38bf26oBuMgm/JbwwKghPUt7 k3QEhZ8GUPRY/TAw3OBylkVQUjUhJPcqOgYgaWJzgCIUo4mH0ceWJX9mJOk8+avKbq2ocF 7jJu2wwwh9xFlW4GRvaWJvL8E0L1AJHztHy4/NHzMPowFSkQLOqGdMAoNhmFdQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 06/12] linux-atm: Resolve configure unrecognised option(s) Date: Wed, 29 Apr 2026 19:50:26 +0200 Message-ID: <20260429175032.2811103-6-adolf.belka@ipfire.org> In-Reply-To: <20260429175032.2811103-1-adolf.belka@ipfire.org> References: <20260429175032.2811103-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - configure: WARNING: unrecognized options: --disable-nls - Checked the tarballs all the way back to 2.4.0 (2001) and nls has never been a configure option that can be selected. - Based on that the option has been removed. Signed-off-by: Adolf Belka --- lfs/linux-atm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lfs/linux-atm b/lfs/linux-atm index 10f84d46f..545c3ba91 100644 --- a/lfs/linux-atm +++ b/lfs/linux-atm @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2021 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # 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 # @@ -79,7 +79,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-atm-use_socklen_t.patch cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-atm-remove-define-hacks.patch cd $(DIR_APP) && autoreconf -vfi - cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc --disable-nls + cd $(DIR_APP) && ./configure \ + --prefix=/usr \ + --sysconfdir=/etc cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE) cd $(DIR_APP) && make install @rm -rf $(DIR_APP) From patchwork Wed Apr 29 17:50:27 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9757 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4g5Px41tfCz3wkr for ; Wed, 29 Apr 2026 17:51:04 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4g5Px40Ghcz7GX for ; Wed, 29 Apr 2026 17:51:04 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Px0025Qz2ykc for ; Wed, 29 Apr 2026 17:51:00 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pwx1bhLz32xs for ; Wed, 29 Apr 2026 17:50:57 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5Pwm6L8vz7Gs; Wed, 29 Apr 2026 17:50:48 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777485049; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Gkep5ocJsIz67dabDBKqDb7h54uKzii6AWx/WImx8A4=; b=UNXRwvqWqQy3inHFfwq/b+CDvKvYbEXeuWVYFYMkCkys7orPQyzeQwDhFb1JVlDrBZdihE hHhkWeFcYLZLddCQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777485049; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Gkep5ocJsIz67dabDBKqDb7h54uKzii6AWx/WImx8A4=; b=GaohV64ak5ktuw51HpqLLrhFMyseFSYz7INIVNRsBETPxmKcoDJ8JyuxndbETDqxal3SY8 i4YSE45QdFJDaiKM2jfstC/sdkZvTVHOCApRE5QNGxCmj+5r17RXqlD8U6UnvM+UTz8ELp 44m1U/sNaD/LHZ68SV3vRTaLO4AeeR0Vtj07mZiOW4pX7B3ewW2SBHVFBfNBKiXhYvAUSE e5fcTM5Y4WOUfZbaGYLSxMPmIeXewwRgODAwaMuEwtg+8u3u4sZ/7UOnXiOKyXFBZbdGQZ IZbJ1latkNlOV220s6HoUzwdhFcS6s+ndG9/AyzBZMTZbTtyiT1MMsgW1xt+kQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 07/12] core202: Ship linux-atm Date: Wed, 29 Apr 2026 19:50:27 +0200 Message-ID: <20260429175032.2811103-7-adolf.belka@ipfire.org> In-Reply-To: <20260429175032.2811103-1-adolf.belka@ipfire.org> References: <20260429175032.2811103-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Signed-off-by: Adolf Belka --- config/rootfiles/core/202/filelists/linux-atm | 1 + 1 file changed, 1 insertion(+) create mode 120000 config/rootfiles/core/202/filelists/linux-atm diff --git a/config/rootfiles/core/202/filelists/linux-atm b/config/rootfiles/core/202/filelists/linux-atm new file mode 120000 index 000000000..8adccafbd --- /dev/null +++ b/config/rootfiles/core/202/filelists/linux-atm @@ -0,0 +1 @@ +../../../common/linux-atm \ No newline at end of file From patchwork Wed Apr 29 17:50:28 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9758 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4g5Px45r9rz3wpF for ; Wed, 29 Apr 2026 17:51:04 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4g5Px43tgyz7J0 for ; Wed, 29 Apr 2026 17:51:04 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Px03bhjz36Vb for ; Wed, 29 Apr 2026 17:51:00 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pwx6Zljz33gC for ; Wed, 29 Apr 2026 17:50:57 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5Pwx1PKdz7Gy; Wed, 29 Apr 2026 17:50:57 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777485057; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=spD8WEZf7IRpSQqUrLXLA2Zrlz/anclFMI+bXsCNW/8=; b=gzeAsNrMcjtwVXTjYicXIPnXZ9cWdYPKQiqanQYaK/uHQLyCKGW+V66I2HxyyZWeYUeg5Q geqNUOoik7zUw4Dw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777485057; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=spD8WEZf7IRpSQqUrLXLA2Zrlz/anclFMI+bXsCNW/8=; b=eQk8J7nWEsfIxb2vX+Ym1Vmpr7FMg2x2ObAWqdKuMC7gJ+852gGsXULi6r4EAUOzL0QAzL rTAR2sl04CA1bYEvRok2Grnb1DhYa4z5ioxWDb0bHn0zNflHCcX/pOS5PB1o4K9ALoNs5A sAQN8fWvpVoQF4Na1zttj1qL1QuG7DojI/yyO5hdbzlR83DujkueJZyyCFO/+IHRIfvY4H IITR4sZyJr8xdHN508urhg3dcOPptoct6kdQgHiucHkXDWGqMFLmL8fR4Orxl8T2zaDIPh TCPItgvkCtNmd/C8CY8CLuO0xCl95hsyppLvLYLVt0SEdpnv36lxikc7H7vlNg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 08/12] openssh: Resolve configure unrecognised option(s) Date: Wed, 29 Apr 2026 19:50:28 +0200 Message-ID: <20260429175032.2811103-8-adolf.belka@ipfire.org> In-Reply-To: <20260429175032.2811103-1-adolf.belka@ipfire.org> References: <20260429175032.2811103-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - configure: WARNING: unrecognized options: --with-md5-passwords - use of md5 for passwords was removed in version 8.9 in 2022 - Option has been removed Signed-off-by: Adolf Belka --- lfs/openssh | 1 - 1 file changed, 1 deletion(-) diff --git a/lfs/openssh b/lfs/openssh index e22105ce4..fdffce8d4 100644 --- a/lfs/openssh +++ b/lfs/openssh @@ -76,7 +76,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --prefix=/usr \ --sysconfdir=/etc/ssh \ --libexecdir=/usr/lib/openssh \ - --with-md5-passwords \ --with-privsep-path=/var/empty \ --with-superuser-path=/sbin:/usr/sbin:/bin:/usr/bin cd $(DIR_APP) && make $(MAKETUNING) From patchwork Wed Apr 29 17:50:29 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9759 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4g5Px50gLkz3x6k for ; Wed, 29 Apr 2026 17:51:05 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4g5Px46FWBz7JS for ; Wed, 29 Apr 2026 17:51:04 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Px05jVXz36WP for ; Wed, 29 Apr 2026 17:51:00 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pwy1NMhz349h for ; Wed, 29 Apr 2026 17:50:58 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5Pwx61knz7HW; Wed, 29 Apr 2026 17:50:57 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777485058; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=UMP5KvFlxrLpkyCiEBI4xUR/YnUpXLbJNxwSDYklFto=; b=VAWwpOzTX0FVn3uwdO8gMsNgvCIzMAR1a/Wc5B0/hhsKr2KrmLgqt4hkHONCwbAwvkcNkT cpv8TS2owvGVwnAg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777485058; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=UMP5KvFlxrLpkyCiEBI4xUR/YnUpXLbJNxwSDYklFto=; b=mCRcBrPK8bt3OXFus8Cj/lvYXDP8U45GuApvj9bxRlci7TWyz3vAoIhGTq5S9ywCtfK/J5 ZI/RnRjC1VrqbIKLdYs8K3AGvKz7SXWyUnC2NO43vWCkvAz0sTFMdHOQgDzSw/t0WKeK0t SBUjqj5dPc5+IQyn+gXBNbo/Xk3hhVshJ0+eLr4GdfRo2vwnQCFzV6Lmkk+VGxam59gW3q dfr5TwsiWS4AsxqHOj7v28TGCmfW9NE9SqsWx3qTMZxGhTgTVI5K/WbwLVJLrh+Orbc9f3 UeFNlkdd7Dw4EajrMKbwtHTj2DGQElTLd72vJv1TQ6BkBLVs2dCcLyx/zety+g== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 09/12] openvmtools: Resolve configure unrecognised option(s) Date: Wed, 29 Apr 2026 19:50:29 +0200 Message-ID: <20260429175032.2811103-9-adolf.belka@ipfire.org> In-Reply-To: <20260429175032.2811103-1-adolf.belka@ipfire.org> References: <20260429175032.2811103-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - configure: WARNING: unrecognized options: --without-xerces - Building with xerces support was removed in version 12.4.0 in 2023 - Option has been removed Signed-off-by: Adolf Belka --- lfs/openvmtools | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lfs/openvmtools b/lfs/openvmtools index 6134cb4d4..3335b5910 100644 --- a/lfs/openvmtools +++ b/lfs/openvmtools @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2025 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # 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 # @@ -35,7 +35,7 @@ DIR_APP = $(DIR_SRC)/$(THISAPP)/open-vm-tools TARGET = $(DIR_INFO)/$(THISAPP) SUP_ARCH = x86_64 PROG = openvmtools -PAK_VER = 15 +PAK_VER = 16 DEPS = @@ -102,8 +102,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --without-x \ --with-linuxdir=/usr/src/linux \ --without-kernel-modules \ - --disable-deploypkg \ - --without-xerces + --disable-deploypkg cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install From patchwork Wed Apr 29 17:50:30 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9760 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4g5Px535nqz3wkr for ; Wed, 29 Apr 2026 17:51:05 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4g5Px51TLnz7JY for ; Wed, 29 Apr 2026 17:51:05 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Px11FD5z33vV for ; Wed, 29 Apr 2026 17:51:01 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pwy3nztz34Gc for ; Wed, 29 Apr 2026 17:50:58 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5Pwy1443z7Hf; Wed, 29 Apr 2026 17:50:58 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777485058; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=y8rLcDq2ZM+R27o0STT7jZkgpLLgkL1z6ysiFkB7JWI=; b=AFV7ItJOXElNTu8ej33WK0p5maW7O+ksqEzPYtOiHZe8fL2FRsMo/uGSSNtGHwSmDWs0Qi ACwj7NsMWIZFryAA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777485058; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=y8rLcDq2ZM+R27o0STT7jZkgpLLgkL1z6ysiFkB7JWI=; b=rjpnUCN91hNbPbpSb2efMAW05WM4poYsUQ2/KMm7bFCFeUb1UsRmrYBbsvvsB5HaBU70ou 7f5RgPEormFBPVCn5vln6Kax9lNpePbgfh2U6En7KiOmdIPGiR+bUJWASU9MVX4JBEkuRc zPxYMZAcPV0Zf9lcqubzy2OhzdEWWKBw1E2T9+Fb6uCQEA1cEDo7UpYplWKS2Dc7Y5iweH xoCbiyBeGuHWXQCr7ZF6KxdDP2dqutF5dD4SC5moWwmp6vQYKUWmM9R0+Ey8OmH6i+5TXe jgHQmf/g4cVgjZXjlL7+o2ECNn4xsz0kLw5NSqPMVwV5emW2deM1MID/h3+uSQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 10/12] screen: Resolve configure unrecognised option(s) Date: Wed, 29 Apr 2026 19:50:30 +0200 Message-ID: <20260429175032.2811103-10-adolf.belka@ipfire.org> In-Reply-To: <20260429175032.2811103-1-adolf.belka@ipfire.org> References: <20260429175032.2811103-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - configure: WARNING: unrecognized options: --with-socket-dir, --with-sys-screenrc - In version 5.0.0 these were changed - --with-socket-dir has been changed to --enable-socket-dir - --with-sys-screenrc has been changed to --with-system_screenrc - The default location for screenrc was what we had defined anyway so that was still specified in the version from 5.0.0 onwards. - The global socket definition due to the unrecognised option becane a No value, so no socket location was defined at all. This now corrects that. This has been confirmed by looking at the configure status and confirming the directory now specified for the socket in the build log. Signed-off-by: Adolf Belka --- lfs/screen | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/screen b/lfs/screen index 5c7201985..2fa597104 100644 --- a/lfs/screen +++ b/lfs/screen @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2025 IPFire Team # +# Copyright (C) 2007-2026 IPFire Team # # # # 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 # @@ -73,8 +73,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) cd $(DIR_APP) && ./autogen.sh cd $(DIR_APP) && ./configure \ --prefix=/usr \ - --with-socket-dir=/var/run/screen \ - --with-sys-screenrc=/etc/screenrc + --enable-socket-dir=/var/run/screen \ + --with-system_screenrc=/etc/screenrc cd $(DIR_APP) && sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,doc}/* cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install From patchwork Wed Apr 29 17:50:31 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9761 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4g5Px55jwxz3x94 for ; Wed, 29 Apr 2026 17:51:05 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4g5Px54Kd9z44C for ; Wed, 29 Apr 2026 17:51:05 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Px14G2bz36XL for ; Wed, 29 Apr 2026 17:51:01 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pwy6c3qz34RQ for ; Wed, 29 Apr 2026 17:50:58 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5Pwy3bBpz7GW; Wed, 29 Apr 2026 17:50:58 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777485058; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=uWXAfE9stjq8tVWPd2KvPmz98QoMpdo9Maos2ag8ruk=; b=veP0dQ3qATo8PnbCu9pKAxLuGkuW0K6DnXak91nGV3UX4cmmoGMEHV52JezOnC/P7gvpvO CLWMgqclbI4cSyBg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777485058; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=uWXAfE9stjq8tVWPd2KvPmz98QoMpdo9Maos2ag8ruk=; b=bLOb8ujT0tWGuCNFNbnngvrxVtbIh+akjOP/X9pBVyRnrvUBwKETnkgQg/LKVZiX/kBrPD Y6WmXFRuguJAKkT9x/7c/1Uq3HUMZ1Gf3Ifdr5SAFo4vzOZPnWen03kAg0bOSJ7VukrbuE HY2JX7dpClibqD2nzqlia1QGYQ0rS9DdUA7sy0OhfiYNgpZ28winC+vjAxPgUOlnHG991J u3APPMPaspSfhpYcDcKVk7cuGSsbxho0aQdHLrbeqzYo4OM/+J4cx3cGG4Emy44KRr02jm UNHFLPFEGLdkVe8/E2XVtYYg1ZyYFHyFfR6VgAwt448043cNSdPeBuvN2fsQtQ== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 11/12] core202: Ship screen Date: Wed, 29 Apr 2026 19:50:31 +0200 Message-ID: <20260429175032.2811103-11-adolf.belka@ipfire.org> In-Reply-To: <20260429175032.2811103-1-adolf.belka@ipfire.org> References: <20260429175032.2811103-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Signed-off-by: Adolf Belka --- config/rootfiles/core/202/filelists/screen | 1 + 1 file changed, 1 insertion(+) create mode 120000 config/rootfiles/core/202/filelists/screen diff --git a/config/rootfiles/core/202/filelists/screen b/config/rootfiles/core/202/filelists/screen new file mode 120000 index 000000000..81008f46e --- /dev/null +++ b/config/rootfiles/core/202/filelists/screen @@ -0,0 +1 @@ +../../../common/screen \ No newline at end of file From patchwork Wed Apr 29 17:50:32 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 9762 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4g5Px81zM8z3wkr for ; Wed, 29 Apr 2026 17:51:08 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [IPv6:2001:678:b28::201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail02.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4g5Px809nxz7NP for ; Wed, 29 Apr 2026 17:51:08 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Px53w3Nz32g0 for ; Wed, 29 Apr 2026 17:51:05 +0000 (UTC) X-Original-To: development@lists.ipfire.org Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4g5Pwz0xQRz34Rr for ; Wed, 29 Apr 2026 17:50:59 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5Pwy5ssMz7JY; Wed, 29 Apr 2026 17:50:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777485058; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=4fpflUlQ8uUQ5Y55JY/9YEyBvSvlgSasT9XpwcPkB88=; b=CuzGn7wt7LR1c7ol3HUgbRGWhBG4UcmFQaBQk122wLwIu9MOh3xhANaBkodcjUZR4hbRWe WICAw6Xm1xLc/V4sdihkIfppVGP8tJ7MMrIwt9kYaaXjkt7wISyYO0t/xtzgQprxNILQ7b JeJw/2AiM3/BQpbaBfkxDt44tTQh8VjBnQ8IL0idVgaHQmq0ZwFFX34zUS4+EcMBtO1nqY JfegSXVfG/ug/wkk7ArXI4AMq/tc+x9NWWlckxlYj+g72i7m4FZDUVDu+tFDwgUoPO5UNO cEE4J/cf/YNDsbgfr7KfOWN9y7cUMvJHi97kxKjX7F1RiVLgpxnlAeRTx6g1AQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777485058; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=4fpflUlQ8uUQ5Y55JY/9YEyBvSvlgSasT9XpwcPkB88=; b=Lc6hI1AvdyaVb0i6sd7FbprbLpnt7ciD/fDj1u+psi7N/RPa+I83qFtK2trXYuZ7Aj0Xci 7p2JMAwJht/RruAg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 12/12] suricata: Resolve configure unrecognised option(s) Date: Wed, 29 Apr 2026 19:50:32 +0200 Message-ID: <20260429175032.2811103-12-adolf.belka@ipfire.org> In-Reply-To: <20260429175032.2811103-1-adolf.belka@ipfire.org> References: <20260429175032.2811103-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 - configure: WARNING: unrecognized options: --enable-rust - This option was in place when rust was still being used experimentally. From version 5.0.0 rust became standard for the build and so the option was removed. from configure - Option removed Signed-off-by: Adolf Belka --- lfs/suricata | 1 - 1 file changed, 1 deletion(-) diff --git a/lfs/suricata b/lfs/suricata index 419257017..6ef15b468 100644 --- a/lfs/suricata +++ b/lfs/suricata @@ -84,7 +84,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --with-libjansson-libraries=/usr/lib \ --with-libjansson-includes=/usr/include \ --disable-suricata-update \ - --enable-rust \ --enable-unix-socket # Drop the Cargo.lock file before building.