* [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
* [PATCH 02/12] flac: Resolve configure unrecognised option(s)
2026-04-29 17:50 [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) Adolf Belka
@ 2026-04-29 17:50 ` Adolf Belka
2026-04-29 17:50 ` [PATCH 03/12] frr: " Adolf Belka
` (10 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Adolf Belka @ 2026-04-29 17:50 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- configure: WARNING: unrecognized options: --disable-xmms-plugin
- the xmms plugin was removed from flac in version 1.4.2 in 2022 so the option is no
longer needed and has been removed
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
lfs/flac | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/lfs/flac b/lfs/flac
index 9075e9f92..67fb64ea0 100644
--- a/lfs/flac
+++ b/lfs/flac
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2025 IPFire Team <info@ipfire.org> #
+# Copyright (C) 2007-2026 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = flac
-PAK_VER = 5
+PAK_VER = 6
DEPS = libogg
@@ -84,7 +84,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
cd $(DIR_APP) && \
./configure \
--prefix=/usr \
- --disable-xmms-plugin \
--disable-thorough-tests
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
--
2.54.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 03/12] frr: Resolve configure unrecognised option(s)
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 ` Adolf Belka
2026-04-29 17:50 ` [PATCH 04/12] gnutls: " Adolf Belka
` (9 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Adolf Belka @ 2026-04-29 17:50 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- configure: WARNING: unrecognized options: --disable-irdp
- The irdp code was removed from frr in version 10.5.0 so the disable option is no
longer required
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
lfs/frr | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lfs/frr b/lfs/frr
index fedcb14a1..4757a8544 100644
--- a/lfs/frr
+++ b/lfs/frr
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = frr
-PAK_VER = 16
+PAK_VER = 17
DEPS =
@@ -97,7 +97,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
--disable-babeld \
--disable-bfdd \
--disable-eigrpd \
- --disable-irdp \
--disable-isisd \
--disable-ldpd \
--disable-nhrpd \
--
2.54.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 04/12] gnutls: Resolve configure unrecognised option(s)
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 ` Adolf Belka
2026-04-29 17:50 ` [PATCH 05/12] core202: Ship gnutls Adolf Belka
` (8 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Adolf Belka @ 2026-04-29 17:50 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- configure: WARNING: unrecognized options: --disable-guile
- The guile bindings were removed and made into a separate package in version 3.8.0
in 2023
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
lfs/gnutls | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/lfs/gnutls b/lfs/gnutls
index 15d0362dd..c869100ba 100644
--- a/lfs/gnutls
+++ b/lfs/gnutls
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2025 IPFire Team <info@ipfire.org> #
+# Copyright (C) 2007-2026 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -74,8 +74,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
./configure \
--prefix=/usr \
--without-p11-kit \
- --disable-openssl-compatibility \
- --disable-guile
+ --disable-openssl-compatibility
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
--
2.54.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 05/12] core202: Ship gnutls
2026-04-29 17:50 [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) Adolf Belka
` (2 preceding siblings ...)
2026-04-29 17:50 ` [PATCH 04/12] gnutls: " Adolf Belka
@ 2026-04-29 17:50 ` Adolf Belka
2026-04-29 17:50 ` [PATCH 06/12] linux-atm: Resolve configure unrecognised option(s) Adolf Belka
` (7 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Adolf Belka @ 2026-04-29 17:50 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
config/rootfiles/core/202/filelists/gnutls | 1 +
1 file changed, 1 insertion(+)
create mode 120000 config/rootfiles/core/202/filelists/gnutls
diff --git a/config/rootfiles/core/202/filelists/gnutls b/config/rootfiles/core/202/filelists/gnutls
new file mode 120000
index 000000000..8dbe60bc3
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/gnutls
@@ -0,0 +1 @@
+../../../common/gnutls
\ No newline at end of file
--
2.54.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 06/12] linux-atm: Resolve configure unrecognised option(s)
2026-04-29 17:50 [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) Adolf Belka
` (3 preceding siblings ...)
2026-04-29 17:50 ` [PATCH 05/12] core202: Ship gnutls Adolf Belka
@ 2026-04-29 17:50 ` Adolf Belka
2026-04-29 17:50 ` [PATCH 07/12] core202: Ship linux-atm Adolf Belka
` (6 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Adolf Belka @ 2026-04-29 17:50 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- configure: WARNING: unrecognized options: --disable-nls
- Checked the tarballs all the way back to 2.4.0 (2001) and nls has never been a
configure option that can be selected.
- Based on that the option has been removed.
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
lfs/linux-atm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/lfs/linux-atm b/lfs/linux-atm
index 10f84d46f..545c3ba91 100644
--- a/lfs/linux-atm
+++ b/lfs/linux-atm
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2021 IPFire Team <info@ipfire.org> #
+# Copyright (C) 2007-2026 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -79,7 +79,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-atm-use_socklen_t.patch
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/linux-atm-remove-define-hacks.patch
cd $(DIR_APP) && autoreconf -vfi
- cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc --disable-nls
+ cd $(DIR_APP) && ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc
cd $(DIR_APP) && make $(MAKETUNING) $(EXTRA_MAKE)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
--
2.54.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 07/12] core202: Ship linux-atm
2026-04-29 17:50 [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) Adolf Belka
` (4 preceding siblings ...)
2026-04-29 17:50 ` [PATCH 06/12] linux-atm: Resolve configure unrecognised option(s) Adolf Belka
@ 2026-04-29 17:50 ` Adolf Belka
2026-04-29 17:50 ` [PATCH 08/12] openssh: Resolve configure unrecognised option(s) Adolf Belka
` (5 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Adolf Belka @ 2026-04-29 17:50 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
config/rootfiles/core/202/filelists/linux-atm | 1 +
1 file changed, 1 insertion(+)
create mode 120000 config/rootfiles/core/202/filelists/linux-atm
diff --git a/config/rootfiles/core/202/filelists/linux-atm b/config/rootfiles/core/202/filelists/linux-atm
new file mode 120000
index 000000000..8adccafbd
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/linux-atm
@@ -0,0 +1 @@
+../../../common/linux-atm
\ No newline at end of file
--
2.54.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 08/12] openssh: Resolve configure unrecognised option(s)
2026-04-29 17:50 [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) Adolf Belka
` (5 preceding siblings ...)
2026-04-29 17:50 ` [PATCH 07/12] core202: Ship linux-atm Adolf Belka
@ 2026-04-29 17:50 ` Adolf Belka
2026-04-29 17:50 ` [PATCH 09/12] openvmtools: " Adolf Belka
` (4 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Adolf Belka @ 2026-04-29 17:50 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- configure: WARNING: unrecognized options: --with-md5-passwords
- use of md5 for passwords was removed in version 8.9 in 2022
- Option has been removed
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
lfs/openssh | 1 -
1 file changed, 1 deletion(-)
diff --git a/lfs/openssh b/lfs/openssh
index e22105ce4..fdffce8d4 100644
--- a/lfs/openssh
+++ b/lfs/openssh
@@ -76,7 +76,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
--prefix=/usr \
--sysconfdir=/etc/ssh \
--libexecdir=/usr/lib/openssh \
- --with-md5-passwords \
--with-privsep-path=/var/empty \
--with-superuser-path=/sbin:/usr/sbin:/bin:/usr/bin
cd $(DIR_APP) && make $(MAKETUNING)
--
2.54.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 09/12] openvmtools: Resolve configure unrecognised option(s)
2026-04-29 17:50 [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) Adolf Belka
` (6 preceding siblings ...)
2026-04-29 17:50 ` [PATCH 08/12] openssh: Resolve configure unrecognised option(s) Adolf Belka
@ 2026-04-29 17:50 ` Adolf Belka
2026-04-29 17:50 ` [PATCH 10/12] screen: " Adolf Belka
` (3 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Adolf Belka @ 2026-04-29 17:50 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- configure: WARNING: unrecognized options: --without-xerces
- Building with xerces support was removed in version 12.4.0 in 2023
- Option has been removed
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
lfs/openvmtools | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/lfs/openvmtools b/lfs/openvmtools
index 6134cb4d4..3335b5910 100644
--- a/lfs/openvmtools
+++ b/lfs/openvmtools
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2025 IPFire Team <info@ipfire.org> #
+# Copyright (C) 2007-2026 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -35,7 +35,7 @@ DIR_APP = $(DIR_SRC)/$(THISAPP)/open-vm-tools
TARGET = $(DIR_INFO)/$(THISAPP)
SUP_ARCH = x86_64
PROG = openvmtools
-PAK_VER = 15
+PAK_VER = 16
DEPS =
@@ -102,8 +102,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
--without-x \
--with-linuxdir=/usr/src/linux \
--without-kernel-modules \
- --disable-deploypkg \
- --without-xerces
+ --disable-deploypkg
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
--
2.54.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 10/12] screen: Resolve configure unrecognised option(s)
2026-04-29 17:50 [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) Adolf Belka
` (7 preceding siblings ...)
2026-04-29 17:50 ` [PATCH 09/12] openvmtools: " Adolf Belka
@ 2026-04-29 17:50 ` Adolf Belka
2026-04-29 17:50 ` [PATCH 11/12] core202: Ship screen Adolf Belka
` (2 subsequent siblings)
11 siblings, 0 replies; 13+ messages in thread
From: Adolf Belka @ 2026-04-29 17:50 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- configure: WARNING: unrecognized options: --with-socket-dir, --with-sys-screenrc
- In version 5.0.0 these were changed
- --with-socket-dir has been changed to --enable-socket-dir
- --with-sys-screenrc has been changed to --with-system_screenrc
- The default location for screenrc was what we had defined anyway so that was still
specified in the version from 5.0.0 onwards.
- The global socket definition due to the unrecognised option becane a No value, so no
socket location was defined at all. This now corrects that. This has been confirmed by
looking at the configure status and confirming the directory now specified for the
socket in the build log.
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
lfs/screen | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/screen b/lfs/screen
index 5c7201985..2fa597104 100644
--- a/lfs/screen
+++ b/lfs/screen
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2025 IPFire Team <info@ipfire.org> #
+# Copyright (C) 2007-2026 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -73,8 +73,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
cd $(DIR_APP) && ./autogen.sh
cd $(DIR_APP) && ./configure \
--prefix=/usr \
- --with-socket-dir=/var/run/screen \
- --with-sys-screenrc=/etc/screenrc
+ --enable-socket-dir=/var/run/screen \
+ --with-system_screenrc=/etc/screenrc
cd $(DIR_APP) && sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,doc}/*
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
--
2.54.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 11/12] core202: Ship screen
2026-04-29 17:50 [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) Adolf Belka
` (8 preceding siblings ...)
2026-04-29 17:50 ` [PATCH 10/12] screen: " Adolf Belka
@ 2026-04-29 17:50 ` 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
11 siblings, 0 replies; 13+ messages in thread
From: Adolf Belka @ 2026-04-29 17:50 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
config/rootfiles/core/202/filelists/screen | 1 +
1 file changed, 1 insertion(+)
create mode 120000 config/rootfiles/core/202/filelists/screen
diff --git a/config/rootfiles/core/202/filelists/screen b/config/rootfiles/core/202/filelists/screen
new file mode 120000
index 000000000..81008f46e
--- /dev/null
+++ b/config/rootfiles/core/202/filelists/screen
@@ -0,0 +1 @@
+../../../common/screen
\ No newline at end of file
--
2.54.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 12/12] suricata: Resolve configure unrecognised option(s)
2026-04-29 17:50 [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) Adolf Belka
` (9 preceding siblings ...)
2026-04-29 17:50 ` [PATCH 11/12] core202: Ship screen Adolf Belka
@ 2026-04-29 17:50 ` Adolf Belka
2026-04-29 19:47 ` [PATCH 01/12] dnsdist: " Michael Tremer
11 siblings, 0 replies; 13+ messages in thread
From: Adolf Belka @ 2026-04-29 17:50 UTC (permalink / raw)
To: development; +Cc: Adolf Belka
- configure: WARNING: unrecognized options: --enable-rust
- This option was in place when rust was still being used experimentally. From version
5.0.0 rust became standard for the build and so the option was removed. from configure
- Option removed
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
lfs/suricata | 1 -
1 file changed, 1 deletion(-)
diff --git a/lfs/suricata b/lfs/suricata
index 419257017..6ef15b468 100644
--- a/lfs/suricata
+++ b/lfs/suricata
@@ -84,7 +84,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
--with-libjansson-libraries=/usr/lib \
--with-libjansson-includes=/usr/include \
--disable-suricata-update \
- --enable-rust \
--enable-unix-socket
# Drop the Cargo.lock file before building.
--
2.54.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s)
2026-04-29 17:50 [PATCH 01/12] dnsdist: Resolve configure unrecognised option(s) Adolf Belka
` (10 preceding siblings ...)
2026-04-29 17:50 ` [PATCH 12/12] suricata: Resolve configure unrecognised option(s) Adolf Belka
@ 2026-04-29 19:47 ` Michael Tremer
11 siblings, 0 replies; 13+ messages in thread
From: Michael Tremer @ 2026-04-29 19:47 UTC (permalink / raw)
To: Adolf Belka; +Cc: development
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
>
>
^ 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