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 4g5Pwj6dZpz363w for ; Wed, 29 Apr 2026 17:50:45 +0000 (UTC) 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 Content-Transfer-Encoding: 8bit - 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 \ -- 2.54.0