]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
dnsdist: Resolve configure unrecognised option(s)
authorAdolf Belka <adolf.belka@ipfire.org>
Wed, 29 Apr 2026 17:50:21 +0000 (19:50 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 29 Apr 2026 19:47:53 +0000 (19:47 +0000)
- 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>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
lfs/dnsdist

index 5832cd6b3666b61372d0d557058fbab9faa601b9..ac4075afceb717a2bc994dd3c0a8b9044f7ae715 100644 (file)
@@ -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 \