summaryrefslogtreecommitdiff
path: root/package/pdnsd
diff options
context:
space:
mode:
authorPhil Sutter <phil.sutter@viprinet.com>2015-02-24 12:47:09 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-02-28 10:14:34 +0100
commit0a4c30ca2728936c16a73e9a4ef7d12243ef4d55 (patch)
treeea76ae8162d0034c2ad1791ca1f68592370a9670 /package/pdnsd
parent9bdd110cc79545f3448a96f4768d2ff16a12ffea (diff)
package/pdnsd: update to version 1.2.9a
Originally, there was a problem compiling the old one (better: one of it's custom patches) with IPv6 support enabled. But while at it, updating it shouldn't hurt.
Diffstat (limited to 'package/pdnsd')
-rw-r--r--package/pdnsd/Makefile10
-rw-r--r--package/pdnsd/patches/patch-src_Makefile_in11
-rw-r--r--package/pdnsd/patches/patch-src_dns_query_c12
3 files changed, 5 insertions, 28 deletions
diff --git a/package/pdnsd/Makefile b/package/pdnsd/Makefile
index bd3ebebe8..e71dd4307 100644
--- a/package/pdnsd/Makefile
+++ b/package/pdnsd/Makefile
@@ -4,14 +4,14 @@
include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= pdnsd
-PKG_VERSION:= 1.2.7
-PKG_RELEASE:= 3
-PKG_HASH:= 2777d7317509df7c75c90bcfd7f9ceaec9ea2db164bf00eb797fa54e0b476a00
+PKG_VERSION:= 1.2.9a
+PKG_RELEASE:= 1
+PKG_HASH:= bb5835d0caa8c4b31679d6fd6a1a090b71bdf70950db3b1d0cea9cf9cb7e2a7b
PKG_DESCR:= proxy dns server
PKG_SECTION:= net/dns
PKG_DEPENDS:= libpthread
-PKG_URL:= http://www.phys.uu.nl/~rombouts/pdnsd.html
-PKG_SITES:= http://www.phys.uu.nl/~rombouts/pdnsd/releases/
+PKG_URL:= http://members.home.nl/p.a.rombouts/pdnsd/index.html
+PKG_SITES:= http://members.home.nl/p.a.rombouts/pdnsd/releases/
PKG_FLAVOURS_PDNSD:= WITH_IPV6
PKGFD_WITH_IPV6:= enable IPv6 support
diff --git a/package/pdnsd/patches/patch-src_Makefile_in b/package/pdnsd/patches/patch-src_Makefile_in
deleted file mode 100644
index 6ab8de4e1..000000000
--- a/package/pdnsd/patches/patch-src_Makefile_in
+++ /dev/null
@@ -1,11 +0,0 @@
---- pdnsd-1.2.7.orig/src/Makefile.in 2008-09-04 18:20:37.000000000 +0200
-+++ pdnsd-1.2.7/src/Makefile.in 2010-05-29 17:45:45.937500000 +0200
-@@ -171,7 +171,7 @@ pdnsd_SOURCES = conf-parser.c conff.c co
- rr_types.h servers.h status.h thread.h cache.h hash.h pdnsd_assert.h \
- freebsd_netinet_ip_icmp.h
-
--SUBDIRS = pdnsd-ctl rc test
-+SUBDIRS = pdnsd-ctl rc
- all: all-recursive
-
- .SUFFIXES:
diff --git a/package/pdnsd/patches/patch-src_dns_query_c b/package/pdnsd/patches/patch-src_dns_query_c
deleted file mode 100644
index f16c3d497..000000000
--- a/package/pdnsd/patches/patch-src_dns_query_c
+++ /dev/null
@@ -1,12 +0,0 @@
-use the temporary port, not always the global one over and over again
---- pdnsd-1.2.7.orig/src/dns_query.c 2008-09-01 15:56:51.000000000 +0200
-+++ pdnsd-1.2.7/src/dns_query.c 2010-03-19 21:44:38.837858828 +0100
-@@ -650,7 +650,7 @@ static int bind_socket(int s)
- ELSE_IPV6 {
- memset(&sin.sin6,0,sizeof(struct sockaddr_in6));
- sin.sin6.sin6_family=AF_INET6;
-- sin.sin6.sin6_port=htons(global.port);
-+ sin.sin6.sin6_port=htons(prt);
- sin.sin6.sin6_flowinfo=IPV6_FLOWINFO;
- SET_SOCKA_LEN6(sin.sin6);
- sinl=sizeof(struct sockaddr_in6);