diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2010-03-19 01:53:23 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2010-03-19 01:53:23 +0800 |
commit | 6f861e24865186a411f19d2e66b4b8edcf9dc034 (patch) | |
tree | ff6d8764c619408eabb953221d905b17ac174965 /net | |
parent | 33b4acce072ce808ff4a2cc1553bebb4c57880bd (diff) | |
download | freebsd-ports-gnome-6f861e24865186a411f19d2e66b4b8edcf9dc034.tar.gz freebsd-ports-gnome-6f861e24865186a411f19d2e66b4b8edcf9dc034.tar.zst freebsd-ports-gnome-6f861e24865186a411f19d2e66b4b8edcf9dc034.zip |
- Update to 1.4.2
PR: 144856
Submitted by: Ross West <freebsd@linepoint.com> (maintainer)
Diffstat (limited to 'net')
-rw-r--r-- | net/haproxy/Makefile | 2 | ||||
-rw-r--r-- | net/haproxy/distinfo | 6 | ||||
-rw-r--r-- | net/haproxy/files/patch-src-dumpstats.c | 20 |
3 files changed, 24 insertions, 4 deletions
diff --git a/net/haproxy/Makefile b/net/haproxy/Makefile index 45d480187b79..8027db720228 100644 --- a/net/haproxy/Makefile +++ b/net/haproxy/Makefile @@ -6,7 +6,7 @@ # PORTNAME= haproxy -PORTVERSION= 1.4.1 +PORTVERSION= 1.4.2 CATEGORIES= net www MASTER_SITES= http://haproxy.1wt.eu/download/1.4/src/ diff --git a/net/haproxy/distinfo b/net/haproxy/distinfo index aa84ef756e40..07674db21a1e 100644 --- a/net/haproxy/distinfo +++ b/net/haproxy/distinfo @@ -1,3 +1,3 @@ -MD5 (haproxy-1.4.1.tar.gz) = 7f27c2dec3d67fce1b113be5fe878c33 -SHA256 (haproxy-1.4.1.tar.gz) = 7f13346d9790c07e64133d3c6eccf72817c627da29aaba67814b6defea6cf1b3 -SIZE (haproxy-1.4.1.tar.gz) = 757025 +MD5 (haproxy-1.4.2.tar.gz) = 825c2c77257f0a2099e193bc690ffd60 +SHA256 (haproxy-1.4.2.tar.gz) = 2a5c820f6088ddbe013427331363fe0ef07631096682da89cc8c4b0fff25b9b8 +SIZE (haproxy-1.4.2.tar.gz) = 759871 diff --git a/net/haproxy/files/patch-src-dumpstats.c b/net/haproxy/files/patch-src-dumpstats.c new file mode 100644 index 000000000000..6782ca153cdb --- /dev/null +++ b/net/haproxy/files/patch-src-dumpstats.c @@ -0,0 +1,20 @@ +--- src/dumpstats.c.orig 2010-03-18 01:41:57.000000000 +0300 ++++ src/dumpstats.c 2010-03-18 20:25:27.000000000 +0300 +@@ -2458,7 +2458,7 @@ + + chunk_printf(&msg, + " wex=%s\n" +- " data=%p r=%d w=%d lr=%d total=%lld\n", ++ " data=%p r=%ld w=%ld lr=%ld total=%lld\n", + sess->req->wex ? + human_time(TICKS_TO_MS(sess->req->wex - now_ms), + TICKS_TO_MS(1000)) : "<NEVER>", +@@ -2488,7 +2488,7 @@ + + chunk_printf(&msg, + " wex=%s\n" +- " data=%p r=%d w=%d lr=%d total=%lld\n", ++ " data=%p r=%ld w=%ld lr=%ld total=%lld\n", + sess->rep->wex ? + human_time(TICKS_TO_MS(sess->rep->wex - now_ms), + TICKS_TO_MS(1000)) : "<NEVER>", |