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 4g5SWS63CCz308h for ; Wed, 29 Apr 2026 19:47:32 +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 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 4g5SWP3kRlz2xMP for ; Wed, 29 Apr 2026 19:47:29 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4g5SWL54F2z5gm; Wed, 29 Apr 2026 19:47:26 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1777492046; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Y0sv6EUJ4adbRdAySf7nM/ysN0jM0OzDluOT9Wf+jAQ=; b=7eETsduBvVNWVlJE1+/2CzLe1egTTKAN6xucNEpuv1O5BseEsux2wJ5DeL7D1mkS7tPr5O RLad0LLJqD1m2ZDQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1777492046; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Y0sv6EUJ4adbRdAySf7nM/ysN0jM0OzDluOT9Wf+jAQ=; b=TF7HHv3W2lpUaAJcYsxu0wDi2R4DCnCrDtoegu+hEx5trPTCaBBgMYjX+LA4BBsJx9SfHs rhoUZdogXiwhcmkIl+J/rBnSed9u/MqDgciyvxFuzPNsPsR+cYvspAYb7uBDrd/sg8WCNa t6zXDFf51jPlamYRYn2x7PSHNNfaLC7xcCBhmvTd1rZMu8E0aAHDIyAP3zC7NpCq+S52GG B5jo+u9QQe863v7oDdhF/T1jEyyrJGxLdhYQjcjPDQLe5iFxtbnZDP1UaUTUcwYhyS5V3T zwTmkDonApcm5ePG74tXh+mkfxf2ad98ADqfO+JIaUM9wfo7y1m3/189xRX35A== Content-Type: text/plain; charset=us-ascii Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: Mime-Version: 1.0 Subject: Re: [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) From: Michael Tremer In-Reply-To: <20260429175032.2811103-1-adolf.belka@ipfire.org> Date: Wed, 29 Apr 2026 20:47:26 +0100 Cc: development@lists.ipfire.org Content-Transfer-Encoding: quoted-printable Message-Id: References: <20260429175032.2811103-1-adolf.belka@ipfire.org> To: Adolf Belka Hello, This is a very nice cleanup job. Merged! -Michael > On 29 Apr 2026, at 18:50, Adolf Belka wrote: >=20 > - 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 >=20 > Signed-off-by: Adolf Belka > --- > lfs/dnsdist | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) >=20 > diff --git a/lfs/dnsdist b/lfs/dnsdist > index 5832cd6b3..ac4075afc 100644 > --- a/lfs/dnsdist > +++ b/lfs/dnsdist > @@ -34,7 +34,7 @@ DL_FROM =3D $(URL_IPFIRE) > DIR_APP =3D $(DIR_SRC)/$(THISAPP) > TARGET =3D $(DIR_INFO)/$(THISAPP) > PROG =3D dnsdist > -PAK_VER =3D 33 > +PAK_VER =3D 34 >=20 > DEPS =3D >=20 > @@ -86,8 +86,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) > cd $(DIR_APP) && ./configure \ > --prefix=3D/usr \ > --sysconfdir=3D/etc \ > - --enable-openssl \ > - --disable-gnutls \ > + --with-libssl \ > + --without-gnutls \ > --enable-dns-over-tls \ > --with-lua \ > --without-net-snmp \ > --=20 > 2.54.0 >=20 >=20