public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s)
@ 2026-04-29 17:50 Adolf Belka
  2026-04-29 17:50 ` [PATCH 02/12] flac: " Adolf Belka
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Adolf Belka @ 2026-04-29 17:50 UTC (permalink / raw)
  To: development; +Cc: Adolf Belka

- 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



^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2026-04-29 19:47 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-04-29 17:50 [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) Adolf Belka
2026-04-29 17:50 ` [PATCH 02/12] flac: " Adolf Belka
2026-04-29 17:50 ` [PATCH 03/12] frr: " Adolf Belka
2026-04-29 17:50 ` [PATCH 04/12] gnutls: " Adolf Belka
2026-04-29 17:50 ` [PATCH 05/12] core202: Ship gnutls Adolf Belka
2026-04-29 17:50 ` [PATCH 06/12] linux-atm: Resolve configure unrecognised option(s) Adolf Belka
2026-04-29 17:50 ` [PATCH 07/12] core202: Ship linux-atm Adolf Belka
2026-04-29 17:50 ` [PATCH 08/12] openssh: Resolve configure unrecognised option(s) Adolf Belka
2026-04-29 17:50 ` [PATCH 09/12] openvmtools: " Adolf Belka
2026-04-29 17:50 ` [PATCH 10/12] screen: " Adolf Belka
2026-04-29 17:50 ` [PATCH 11/12] core202: Ship screen Adolf Belka
2026-04-29 17:50 ` [PATCH 12/12] suricata: Resolve configure unrecognised option(s) Adolf Belka
2026-04-29 19:47 ` [PATCH 01/12] dnsdist: " Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox