From f33ab760192c02f226dac67236f97a57209d5153 Mon Sep 17 00:00:00 2001 From: Noah Meyerhans Date: Thu, 18 Feb 2021 13:57:33 -0800 Subject: [PATCH] bind: bump to 9.17.10 Add build dependency on libnghttp2 for DNS-over-HTTPS support Signed-off-by: Noah Meyerhans --- net/bind/Makefile | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/net/bind/Makefile b/net/bind/Makefile index d92cf40f8b..c9282861b4 100644 --- a/net/bind/Makefile +++ b/net/bind/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=bind -PKG_VERSION:=9.17.9 +PKG_VERSION:=9.17.10 PKG_RELEASE:=1 USERID:=bind=57:bind=57 @@ -22,7 +22,7 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:= \ https://www.mirrorservice.org/sites/ftp.isc.org/isc/bind9/$(PKG_VERSION) \ https://ftp.isc.org/isc/bind9/$(PKG_VERSION) -PKG_HASH:=075de055d1c3d8fede6a93cc890203670948e0f13310a21d4980cb5e378f7306 +PKG_HASH:=26a90d28ad694029e480fadcdf60b6219e8128a02d3dd594f6c1a83d002890fd PKG_FIXUP:=autoreconf PKG_REMOVE_FILES:=aclocal.m4 libtool.m4 @@ -31,6 +31,8 @@ PKG_INSTALL:=1 PKG_USE_MIPS16:=0 PKG_BUILD_PARALLEL:=1 +PKG_BUILD_DEPENDS:=nghttp2 + PKG_CONFIG_DEPENDS := \ CONFIG_BIND_LIBJSON \ CONFIG_BIND_LIBXML2 @@ -51,8 +53,14 @@ endef define Package/bind-libs SECTION:=libs CATEGORY:=Libraries - DEPENDS:=+libopenssl +zlib +libpthread +libatomic +libuv \ - +BIND_LIBXML2:libxml2 +BIND_LIBJSON:libjson-c + DEPENDS:=+libopenssl \ + +zlib \ + +libpthread \ + +libatomic \ + +libuv \ + +libnghttp2 \ + +BIND_LIBXML2:libxml2 \ + +BIND_LIBJSON:libjson-c TITLE:=bind shared libraries URL:=https://www.isc.org/software/bind endef