From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4g5Px20mnQz347s for ; Wed, 29 Apr 2026 17:51:02 +0000 (UTC) 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 Content-Transfer-Encoding: 8bit - 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 -- 2.54.0