[01/12] dnsdist: Resolve configure unrecognised option(s)

Message ID 20260429175032.2811103-1-adolf.belka@ipfire.org
State Staged
Commit 6c34d36ae621d2caacaf77939f6a9bbf706eb591
Headers
Series [01/12] dnsdist: Resolve configure unrecognised option(s) |

Commit Message

Adolf Belka 29 Apr 2026, 5:50 p.m. UTC
- 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 <adolf.belka@ipfire.org>
---
 lfs/dnsdist | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
  

Comments

Michael Tremer 29 Apr 2026, 7:47 p.m. UTC | #1
Hello,

This is a very nice cleanup job. Merged!

-Michael

> On 29 Apr 2026, at 18:50, Adolf Belka <adolf.belka@ipfire.org> wrote:
> 
> - 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 <adolf.belka@ipfire.org>
> ---
> 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
> 
>
  

Patch

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 \