- 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 <[email protected]>
---
 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


Reply via email to