www/varnish4: Update to 4.1.2

Changelog:	https://github.com/varnishcache/varnish-cache/blob/4.1/doc/changes.rst

MFH:		2016Q1
This commit is contained in:
Mark Felder 2016-03-07 15:36:56 +00:00
parent 3b3e9a373a
commit 70ea6aadf6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=410523
3 changed files with 4 additions and 18 deletions

View file

@ -1,8 +1,8 @@
# $FreeBSD$
PORTNAME= varnish
PORTVERSION= 4.1.1
PORTREVISION= 1
PORTVERSION= 4.1.2
PORTREVISION= 0
CATEGORIES= www
MASTER_SITES= http://repo.varnish-cache.org/source/
PKGNAMESUFFIX= 4

View file

@ -1,2 +1,2 @@
SHA256 (varnish-4.1.1.tar.gz) = 1230ac1b87248b5a3f3fdfddc66cf080c7c4d80a97fcb44efa6286e5ccf8354f
SIZE (varnish-4.1.1.tar.gz) = 2009042
SHA256 (varnish-4.1.2.tar.gz) = 9728da944d28eb5be90e7ab6799c2c4c831ef4df5e5154537eb7f2e5d5e348c4
SIZE (varnish-4.1.2.tar.gz) = 2030846

View file

@ -1,14 +0,0 @@
--- bin/varnishstat/varnishstat_curses.c.orig 2016-01-28 10:30:41 UTC
+++ bin/varnishstat/varnishstat_curses.c
@@ -540,8 +540,9 @@ static void
print_duration(WINDOW *w, time_t t)
{
- wprintw(w, "%4lu+%02lu:%02lu:%02lu",
- t / 86400, (t % 86400) / 3600, (t % 3600) / 60, t % 60);
+ wprintw(w, "%4jd+%02jd:%02jd:%02jd",
+ (intmax_t)t / 86400, (intmax_t)(t % 86400) / 3600,
+ (intmax_t)(t % 3600) / 60, (intmax_t)t % 60);
}
static void