aboutsummaryrefslogtreecommitdiff
path: root/net/bind
diff options
context:
space:
mode:
authorNoah Meyerhans <frodo@morgul.net>2021-02-18 13:57:33 -0800
committerNoah Meyerhans <frodo@morgul.net>2021-02-18 14:43:14 -0800
commitf33ab760192c02f226dac67236f97a57209d5153 (patch)
tree8c22fa84af823e7332fe61bc5fdda6286103b6ac /net/bind
parentbc08b47fd9dedd4f38ea29479e37ba5671760581 (diff)
bind: bump to 9.17.10
Add build dependency on libnghttp2 for DNS-over-HTTPS support Signed-off-by: Noah Meyerhans <frodo@morgul.net>
Diffstat (limited to 'net/bind')
-rw-r--r--net/bind/Makefile16
1 files changed, 12 insertions, 4 deletions
diff --git a/net/bind/Makefile b/net/bind/Makefile
index d92cf40f8..c9282861b 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