diff options
author | sem <sem@FreeBSD.org> | 2009-01-14 16:49:04 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2009-01-14 16:49:04 +0800 |
commit | 97f2411bb60f7a386188c90e23741fa54979e5a3 (patch) | |
tree | 5a96c7d54e3a46b36c168979b51923e5b5912ff7 /dns | |
parent | 9d60b3fb5c5e1f2727c56ce3f2717771ab44ca12 (diff) | |
download | freebsd-ports-gnome-97f2411bb60f7a386188c90e23741fa54979e5a3.tar.gz freebsd-ports-gnome-97f2411bb60f7a386188c90e23741fa54979e5a3.tar.zst freebsd-ports-gnome-97f2411bb60f7a386188c90e23741fa54979e5a3.zip |
- Update to 1.2.0
Bugs fix release. Includes important security fix.
Diffstat (limited to 'dns')
-rw-r--r-- | dns/unbound/Makefile | 3 | ||||
-rw-r--r-- | dns/unbound/distinfo | 6 | ||||
-rw-r--r-- | dns/unbound/files/patch-daemon-unbound.c | 24 |
3 files changed, 4 insertions, 29 deletions
diff --git a/dns/unbound/Makefile b/dns/unbound/Makefile index e033b82e39d6..7ddddaaaaa3c 100644 --- a/dns/unbound/Makefile +++ b/dns/unbound/Makefile @@ -6,8 +6,7 @@ # PORTNAME= unbound -PORTVERSION= 1.1.1 -PORTREVISION= 1 +PORTVERSION= 1.2.0 CATEGORIES= dns MASTER_SITES= http://unbound.net/downloads/ diff --git a/dns/unbound/distinfo b/dns/unbound/distinfo index 72ebc827eb59..9b46ef07cdcd 100644 --- a/dns/unbound/distinfo +++ b/dns/unbound/distinfo @@ -1,3 +1,3 @@ -MD5 (unbound-1.1.1.tar.gz) = 43586f18b4d917887c92a35ff460c923 -SHA256 (unbound-1.1.1.tar.gz) = ab6c701f44aeef11a1a8370495749b9b630004597af38dc04094ad5687e73981 -SIZE (unbound-1.1.1.tar.gz) = 3754958 +MD5 (unbound-1.2.0.tar.gz) = 2517f811ec4939c0ea602c99a6fdea23 +SHA256 (unbound-1.2.0.tar.gz) = 88e480bdfb23855656a70cb879b231414d2322fb6c0b7dd594628c7482358784 +SIZE (unbound-1.2.0.tar.gz) = 3789663 diff --git a/dns/unbound/files/patch-daemon-unbound.c b/dns/unbound/files/patch-daemon-unbound.c deleted file mode 100644 index 65744c811fbb..000000000000 --- a/dns/unbound/files/patch-daemon-unbound.c +++ /dev/null @@ -1,24 +0,0 @@ ---- daemon/unbound.c.orig 2008-11-20 12:48:36.000000000 +0300 -+++ daemon/unbound.c 2008-12-18 17:36:58.000000000 +0300 -@@ -345,8 +345,6 @@ - * a fork error could not be printed since daemonize closed stderr.*/ - if(cfg->use_syslog) { - log_init(cfg->logfile, cfg->use_syslog, cfg->chrootdir); -- /* but syslog is not really opened by glibc until first msg */ -- log_info("open syslog, startup in progress"); - } - /* if using a logfile, we cannot open it because the logfile would - * be created with the wrong permissions, we cannot chown it because -@@ -516,7 +514,11 @@ - if(!done_setup) { - perform_setup(daemon, cfg, debug_mode, &cfgfile); - done_setup = 1; -- } else log_init(cfg->logfile, cfg->use_syslog, cfg->chrootdir); -+ } else { -+ /* reopen log after HUP to facilitate log rotation */ -+ if(!cfg->use_syslog) -+ log_init(cfg->logfile, 0, cfg->chrootdir); -+ } - /* work */ - daemon_fork(daemon); - |