diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2015-02-19 00:24:00 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2015-02-19 00:24:00 +0800 |
commit | b2af49c316d03073e6db198c6daa03b06bdf004e (patch) | |
tree | 758b2d2695549d108c6f4ffad971d33466dc328a /www | |
parent | d091acf15a2d54f37c1fd8a99aa970b53053c9b9 (diff) | |
download | freebsd-ports-gnome-b2af49c316d03073e6db198c6daa03b06bdf004e.tar.gz freebsd-ports-gnome-b2af49c316d03073e6db198c6daa03b06bdf004e.tar.zst freebsd-ports-gnome-b2af49c316d03073e6db198c6daa03b06bdf004e.zip |
- Update to 0.7.3
Changes: https://github.com/tatsuhiro-t/nghttp2/releases
PR: 197504
Submitted by: mi
Diffstat (limited to 'www')
-rw-r--r-- | www/nghttp2/Makefile | 2 | ||||
-rw-r--r-- | www/nghttp2/distinfo | 4 | ||||
-rw-r--r-- | www/nghttp2/files/patch-shrpx.cc | 12 | ||||
-rw-r--r-- | www/nghttp2/pkg-plist | 2 |
4 files changed, 16 insertions, 4 deletions
diff --git a/www/nghttp2/Makefile b/www/nghttp2/Makefile index 09d7ce500255..1583898816f0 100644 --- a/www/nghttp2/Makefile +++ b/www/nghttp2/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nghttp2 -PORTVERSION= 0.7.0 +PORTVERSION= 0.7.3 CATEGORIES= www net MASTER_SITES= https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/v${PORTVERSION}/ \ LOCAL/sunpoet diff --git a/www/nghttp2/distinfo b/www/nghttp2/distinfo index cc16b237f7ff..4a4f1f2d1ce1 100644 --- a/www/nghttp2/distinfo +++ b/www/nghttp2/distinfo @@ -1,2 +1,2 @@ -SHA256 (nghttp2-0.7.0.tar.xz) = 41765d7ed8a4790b674ac27ae5106006799de402c0f0427a71c40875e2971542 -SIZE (nghttp2-0.7.0.tar.xz) = 821656 +SHA256 (nghttp2-0.7.3.tar.xz) = 73b7ec1fa2ca11b537fe6b40e48e30a1db30b93d810d5e3905ce620c67df634f +SIZE (nghttp2-0.7.3.tar.xz) = 834244 diff --git a/www/nghttp2/files/patch-shrpx.cc b/www/nghttp2/files/patch-shrpx.cc new file mode 100644 index 000000000000..f4b6bd8c298d --- /dev/null +++ b/www/nghttp2/files/patch-shrpx.cc @@ -0,0 +1,12 @@ +--- src/shrpx.cc.orig 2015-01-25 09:01:44.000000000 -0500 ++++ src/shrpx.cc 2015-02-09 17:51:30.000000000 -0500 +@@ -1862,6 +1862,7 @@ + + if (get_config()->rlimit_nofile) { +- struct rlimit lim = {get_config()->rlimit_nofile, +- get_config()->rlimit_nofile}; ++ struct rlimit lim; ++ ++ lim.rlim_cur = lim.rlim_max = get_config()->rlimit_nofile; + if (setrlimit(RLIMIT_NOFILE, &lim) != 0) { + auto error = errno; diff --git a/www/nghttp2/pkg-plist b/www/nghttp2/pkg-plist index 4789b976cb3b..86ced137e2a3 100644 --- a/www/nghttp2/pkg-plist +++ b/www/nghttp2/pkg-plist @@ -10,7 +10,7 @@ include/nghttp2/nghttp2ver.h lib/libnghttp2.a lib/libnghttp2.so lib/libnghttp2.so.5 -lib/libnghttp2.so.5.3.0 +lib/libnghttp2.so.5.4.0 %%ASIO%%lib/libnghttp2_asio.a %%ASIO%%lib/libnghttp2_asio.so %%ASIO%%lib/libnghttp2_asio.so.0 |