diff options
| author | Nicolas Thill | 2011-11-15 03:14:20 +0000 |
|---|---|---|
| committer | Nicolas Thill | 2011-11-15 03:14:20 +0000 |
| commit | 6289d725d29db443dade74423ca086d97313f361 (patch) | |
| tree | bfea632cf81d0772230895636b54016e608ac365 | |
| parent | f4c3d572a896e9da66cd0cdd16be46e6d6d53ff0 (diff) | |
| download | packages-6289d725d29db443dade74423ca086d97313f361.tar.gz | |
packages/unbound: use newly added libldns instead of the embedded one (closes: #10308)
SVN-Revision: 29147
| -rw-r--r-- | net/unbound/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/unbound/Makefile b/net/unbound/Makefile index 5f9948e76..da95f2271 100644 --- a/net/unbound/Makefile +++ b/net/unbound/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2010 OpenWrt.org +# Copyright (C) 2010-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=unbound PKG_VERSION:=1.4.5 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.unbound.net/downloads @@ -27,10 +27,11 @@ define Package/unbound SUBMENU:=IP Addresses and Names TITLE:=A validating, recursive, and caching DNS resolver URL:=http://www.unbound.net/ - DEPENDS:=+libopenssl + DEPENDS:=+libldns +libopenssl endef CONFIGURE_ARGS += \ + --with-ldns="$(STAGING_DIR)/usr" \ --with-ssl="$(STAGING_DIR)/usr" \ --without-pthreads \ |