summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2006-03-16 21:31:14 +0000
committerFlorian Fainelli <florian@openwrt.org>2006-03-16 21:31:14 +0000
commit06b9c9c43efc9d4a8c4fb14f4ae01e992127cf4f (patch)
treeae7cfccc529578866e79f114f39b2d730b075d07
parent8d3724cf574ebb412e486c8a70265213b11f7d47 (diff)
downloadmtk-20170518-06b9c9c43efc9d4a8c4fb14f4ae01e992127cf4f.zip
mtk-20170518-06b9c9c43efc9d4a8c4fb14f4ae01e992127cf4f.tar.gz
mtk-20170518-06b9c9c43efc9d4a8c4fb14f4ae01e992127cf4f.tar.bz2
Updated to latest upstream version, remove uneeded patch as it is now in dnsmasq source code, closes #378
SVN-Revision: 3386
-rw-r--r--openwrt/package/dnsmasq/Makefile4
-rw-r--r--openwrt/package/dnsmasq/patches/102-domain_wildcard_fix.patch12
2 files changed, 2 insertions, 14 deletions
diff --git a/openwrt/package/dnsmasq/Makefile b/openwrt/package/dnsmasq/Makefile
index eeaad10..393f0f0 100644
--- a/openwrt/package/dnsmasq/Makefile
+++ b/openwrt/package/dnsmasq/Makefile
@@ -3,9 +3,9 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=dnsmasq
-PKG_VERSION:=2.26
+PKG_VERSION:=2.27
PKG_RELEASE:=1
-PKG_MD5SUM:=ae04abb5db4a8cc43c24f432f0c44d5c
+PKG_MD5SUM:=489198ec87101087043adc98bbe062dc
PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
diff --git a/openwrt/package/dnsmasq/patches/102-domain_wildcard_fix.patch b/openwrt/package/dnsmasq/patches/102-domain_wildcard_fix.patch
deleted file mode 100644
index 041cd67..0000000
--- a/openwrt/package/dnsmasq/patches/102-domain_wildcard_fix.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -urN dnsmasq.old/src/forward.c dnsmasq.dev/src/forward.c
---- dnsmasq.old/src/forward.c 2006-01-16 20:34:04.000000000 +0100
-+++ dnsmasq.dev/src/forward.c 2006-02-05 04:41:37.148190000 +0100
-@@ -164,7 +164,7 @@
- if (namelen >= domainlen &&
- hostname_isequal(matchstart, serv->domain) &&
- domainlen >= matchlen &&
-- (namelen == domainlen || *(serv->domain) == '.' || *(matchstart-1) == '.' ))
-+ (namelen == domainlen || *(serv->domain) == '.' || *(matchstart-1) == '.' || domainlen == 0))
- {
- unsigned short sflag = serv->addr.sa.sa_family == AF_INET ? F_IPV4 : F_IPV6;
- *type = SERV_HAS_DOMAIN;