From 3c1668b8f9035ece8af9887adf7c3bdfa71aa8e7 Mon Sep 17 00:00:00 2001 From: Colin Booth Date: Thu, 4 Mar 2021 18:47:28 -0800 Subject: [PATCH] bind: remove obsolete configuration options Removed options: --enable-atomic - removed 9.13.3 (commit 5024) --enable-fetchlimit - removed pre-bind9 --enable-ipv6 - made default 9.14 --enable-openssl-hash - removed 9.14, default was already yes --enable-seccomp - removed 9.13.0 (commit 4898) --enable-sit - removed 9.11, replaced with DNS COOKIE option in configs (commit 4152) --enable-threads - on-threaded support removed 9.13.3 (commit 5011) --with-ecdsa - comes from openssl availability (removed 9.14) --with-eddsa - comes from openssl availability (removed 9.14) --with-geoip - marked as obsolete in 9.16 --with-randomdev - removed 9.13.0 (commit 4936) --without-gost - GOST support removed 9.13.1 (commit 4961) There don't seem to be any new options added that seem like must-haves, so unless someone speaks up I'm not going to be adding anything right now. --- srcpkgs/bind/template | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/srcpkgs/bind/template b/srcpkgs/bind/template index f7eb103ce98ccc..25f32df7139c93 100644 --- a/srcpkgs/bind/template +++ b/srcpkgs/bind/template @@ -5,14 +5,10 @@ revision=1 _fullver="${version}${_patchver:+-${_patchver}}" wrksrc="${pkgname}-${_fullver}" build_style=gnu-configure -configure_args="--disable-static --enable-threads --enable-largefile - --with-libtool --enable-atomic --sysconfdir=/etc/named --enable-epoll - --enable-ipv6 --with-randomdev=/dev/random --with-ecdsa=yes --with-eddsa=no - --with-libtool --with-openssl=${XBPS_CROSS_BASE}/usr --with-gssapi=/usr/bin - --without-gost --enable-openssl-hash --with-readline --with-tuning=default - --without-python --enable-fetchlimit --enable-sit - --with-libidn2 --disable-backtrace - $(vopt_if geoip "--with-geoip=${XBPS_CROSS_BASE}/usr" "--without-geoip")" +configure_args="--disable-static --enable-largefile --with-libtool + --sysconfdir=/etc/named --enable-epoll --with-openssl=${XBPS_CROSS_BASE}/usr + --with-gssapi=/usr/bin --with-readline --with-tuning=default --without-python + --with-libidn2 --disable-backtrace" hostmakedepends="automake libtool perl pkg-config" makedepends="libressl-devel libxml2-devel libcap-devel readline-devel mit-krb5-devel libatomic-devel libidn2-devel libuv-devel $(vopt_if geoip geoip-devel)"