aboutsummaryrefslogtreecommitdiffstats
path: root/www/nginx/files
diff options
context:
space:
mode:
authorosa <osa@FreeBSD.org>2012-07-03 11:48:32 +0800
committerosa <osa@FreeBSD.org>2012-07-03 11:48:32 +0800
commit056fba376ba28900b311192ce1097e4fad10f12c (patch)
treea05368cfa171823ebb417e60e9f7ac6a77d9cb25 /www/nginx/files
parentd4d7d9325dd20a4757d5a544b0f60d65fe0b9ea9 (diff)
downloadfreebsd-ports-gnome-056fba376ba28900b311192ce1097e4fad10f12c.tar.gz
freebsd-ports-gnome-056fba376ba28900b311192ce1097e4fad10f12c.tar.zst
freebsd-ports-gnome-056fba376ba28900b311192ce1097e4fad10f12c.zip
Update third-party modules:
o) cache_purge from 1.5 to 1.6; o) slowfs_cache from 1.8 to 1.9; o) upload_progress from 0.8.3 to 0.9.0. [*] Remove needless extra patch. PR: 169602 [*]
Diffstat (limited to 'www/nginx/files')
-rw-r--r--www/nginx/files/extra-patch-ngx_http_uploadprogress_module.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/www/nginx/files/extra-patch-ngx_http_uploadprogress_module.c b/www/nginx/files/extra-patch-ngx_http_uploadprogress_module.c
deleted file mode 100644
index 765d25d0cd91..000000000000
--- a/www/nginx/files/extra-patch-ngx_http_uploadprogress_module.c
+++ /dev/null
@@ -1,22 +0,0 @@
---- ../masterzen-nginx-upload-progress-module-c7c663f/ngx_http_uploadprogress_module.c.orig 2012-02-15 19:50:03.000000000 +0400
-+++ ../masterzen-nginx-upload-progress-module-c7c663f/ngx_http_uploadprogress_module.c 2012-02-15 19:53:58.000000000 +0400
-@@ -1446,18 +1446,12 @@
-
-
- lzcf->timeout = ngx_parse_time(&value[2], 1);
-- if (lzcf->timeout == NGX_ERROR) {
-+ if (lzcf->timeout == (time_t) NGX_ERROR) {
- ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
- "track_uploads \"%V\" timeout value invalid", &value[1]);
- return NGX_CONF_ERROR;
- }
-
-- if (lzcf->timeout == NGX_PARSE_LARGE_TIME) {
-- ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
-- "track_uploads \"%V\" timeout value must be less than 68 years", &value[1]);
-- return NGX_CONF_ERROR;
-- }
--
- clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module);
- lzcf->handler = clcf->handler;
- if ( lzcf->handler == NULL )