diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2022-10-24 20:24:30 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-10-26 21:46:07 +0200 |
commit | e909e87bf3113e65b22c1e81d55cfbd8b467497e (patch) | |
tree | 76a01484d64deb826ecbb1ed44841fb557e176bc /www-servers | |
parent | net-analyzer/net-snmp: remove unused patch (diff) | |
download | gentoo-e909e87bf3113e65b22c1e81d55cfbd8b467497e.tar.gz gentoo-e909e87bf3113e65b22c1e81d55cfbd8b467497e.tar.bz2 gentoo-e909e87bf3113e65b22c1e81d55cfbd8b467497e.zip |
www-servers/nginx: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/27937
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'www-servers')
-rw-r--r-- | www-servers/nginx/files/http_uploadprogress-issue_50-r1.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/www-servers/nginx/files/http_uploadprogress-issue_50-r1.patch b/www-servers/nginx/files/http_uploadprogress-issue_50-r1.patch deleted file mode 100644 index 42cbd779a8cb..000000000000 --- a/www-servers/nginx/files/http_uploadprogress-issue_50-r1.patch +++ /dev/null @@ -1,31 +0,0 @@ -From dd138546b16a01e9c09613d02211373baf1cac02 Mon Sep 17 00:00:00 2001 -From: Thomas Deutschmann <whissi@whissi.de> -Date: Thu, 20 Oct 2016 03:09:37 +0200 -Subject: [PATCH] config: Fix ngx_module_type - -Since commit 37182ce2f3b6 the module was not present in static builds -because due to an invalid "ngx_module_type" the module was not added to -objs/ngx_modules.c. - -This commit will fix the problem by setting the correct module type -"HTTP_FILTER" [Link 1]. - -Link 1: https://www.nginx.com/resources/wiki/extending/new_config/#key-ngx_module_type -Gentoo-Bug: https://bugs.gentoo.org/593450 -Fixes: https://github.com/masterzen/nginx-upload-progress-module/issues/50 ---- - config | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/config b/config -index 364af8c..5f4ade1 100644 ---- a/config -+++ b/config -@@ -1,6 +1,6 @@ - ngx_addon_name=ngx_http_uploadprogress_module - if test -n "$ngx_module_link"; then -- ngx_module_type=FILTER -+ ngx_module_type=HTTP_FILTER - ngx_module_name=ngx_http_uploadprogress_module - ngx_module_srcs="$ngx_addon_dir/ngx_http_uploadprogress_module.c" - |