From fffe687520bdd98770bc280e37e8a1b3fadd5371 Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Thu, 30 Oct 2025 22:41:53 +0100 Subject: [PATCH] package/bind: drop unrecognized options Buildroot commit c9515c8b63bc9bc84b52b731c2c72031acd240d2 bumped bind to 9.18.28 which removed dnssec-keymgr: https://gitlab.isc.org/isc-projects/bind9/-/blob/v9.18.28/doc/notes/notes-9.18.0.rst?ref_type=tags&plain=1#L187 but forgot to remove the configure option --with-python https://gitlab.isc.org/isc-projects/bind9/-/commit/98b3b93791777218c04a67ddaef22619162249f7 https://gitlab.isc.org/isc-projects/bind9/-/commit/305ca032a0d3afd779b2b97bb36971e1072f0453 Configure option --enable-epoll was also removed upstream in 9.18.16: https://gitlab.isc.org/isc-projects/bind9/-/commit/6b6076c882a00028197b04a827f6cf8e7a5369de Configure option --enable-backtrace was also removed upstream in 9.18.0: https://gitlab.isc.org/isc-projects/bind9/-/commit/e847591867cfe542c9e52d6176e0a2bb6e2ca875 Signed-off-by: Bernd Kuhls Signed-off-by: Julien Olivain (cherry picked from commit 9c0f6d2379b67a65e78359118cb7d2025b13d85f) Signed-off-by: Thomas Perale --- package/bind/bind.mk | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/package/bind/bind.mk b/package/bind/bind.mk index 11730b6e7e..d137245ef9 100644 --- a/package/bind/bind.mk +++ b/package/bind/bind.mk @@ -30,9 +30,7 @@ BIND_AUTORECONF = YES BIND_CONF_OPTS = \ --without-cmocka \ --without-lmdb \ - --enable-epoll \ --disable-doh \ - --disable-backtrace \ --disable-static \ --with-openssl=$(STAGING_DIR)/usr @@ -95,14 +93,6 @@ else BIND_CONF_OPTS += --with-libxml2=no endif -# Used by dnssec-keymgr -ifeq ($(BR2_PACKAGE_PYTHON_PLY),y) -BIND_DEPENDENCIES += host-python-ply -BIND_CONF_OPTS += --with-python=$(HOST_DIR)/bin/python -else -BIND_CONF_OPTS += --with-python=no -endif - ifeq ($(BR2_PACKAGE_READLINE),y) BIND_DEPENDENCIES += readline else