View | Details | Raw Unified | Return to bug 197504 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	nghttp2
4
PORTNAME=	nghttp2
5
PORTVERSION=	0.7.0
5
PORTVERSION=	0.7.3
6
CATEGORIES=	www net
6
CATEGORIES=	www net
7
MASTER_SITES=	https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/v${PORTVERSION}/ \
7
MASTER_SITES=	https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/v${PORTVERSION}/ \
8
		LOCAL/sunpoet
8
		LOCAL/sunpoet
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (nghttp2-0.7.0.tar.xz) = 41765d7ed8a4790b674ac27ae5106006799de402c0f0427a71c40875e2971542
1
SHA256 (nghttp2-0.7.3.tar.xz) = 73b7ec1fa2ca11b537fe6b40e48e30a1db30b93d810d5e3905ce620c67df634f
2
SIZE (nghttp2-0.7.0.tar.xz) = 821656
2
SIZE (nghttp2-0.7.3.tar.xz) = 834244
(-)files/patch-shrpx.cc (+12 lines)
Line 0 Link Here
1
--- src/shrpx.cc	2015-01-25 09:01:44.000000000 -0500
2
+++ src/shrpx.cc	2015-02-09 17:51:30.000000000 -0500
3
@@ -1862,6 +1862,7 @@
4
 
5
   if (get_config()->rlimit_nofile) {
6
-    struct rlimit lim = {get_config()->rlimit_nofile,
7
-                         get_config()->rlimit_nofile};
8
+    struct rlimit lim;
9
+
10
+    lim.rlim_cur = lim.rlim_max = get_config()->rlimit_nofile;
11
     if (setrlimit(RLIMIT_NOFILE, &lim) != 0) {
12
       auto error = errno;
(-)pkg-plist (-1 / +1 lines)
Lines 10-16 Link Here
10
lib/libnghttp2.a
10
lib/libnghttp2.a
11
lib/libnghttp2.so
11
lib/libnghttp2.so
12
lib/libnghttp2.so.5
12
lib/libnghttp2.so.5
13
lib/libnghttp2.so.5.3.0
13
lib/libnghttp2.so.5.4.0
14
%%ASIO%%lib/libnghttp2_asio.a
14
%%ASIO%%lib/libnghttp2_asio.a
15
%%ASIO%%lib/libnghttp2_asio.so
15
%%ASIO%%lib/libnghttp2_asio.so
16
%%ASIO%%lib/libnghttp2_asio.so.0
16
%%ASIO%%lib/libnghttp2_asio.so.0

Return to bug 197504