aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-servers/nginx/files/nginx-1.11.3-fix-build-without-stream_ssl_module.patch')
-rw-r--r--www-servers/nginx/files/nginx-1.11.3-fix-build-without-stream_ssl_module.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/www-servers/nginx/files/nginx-1.11.3-fix-build-without-stream_ssl_module.patch b/www-servers/nginx/files/nginx-1.11.3-fix-build-without-stream_ssl_module.patch
new file mode 100644
index 0000000..6163730
--- /dev/null
+++ b/www-servers/nginx/files/nginx-1.11.3-fix-build-without-stream_ssl_module.patch
@@ -0,0 +1,30 @@
+
+# HG changeset patch
+# User Vladimir Homutov <vl@nginx.com>
+# Date 1469550852 -10800
+# Node ID d43ee392e825186545d81e683b88cc58ef8479bc
+# Parent 0b4249f975eba48c17b69c5e225fd12b470c0184
+Stream: fixed build without stream_ssl_module (ticket #1032).
+
+diff -r 0b4249f975eb -r d43ee392e825 src/stream/ngx_stream_proxy_module.c
+--- a/src/stream/ngx_stream_proxy_module.c Tue Jul 26 19:07:18 2016 +0300
++++ b/src/stream/ngx_stream_proxy_module.c Tue Jul 26 19:34:12 2016 +0300
+@@ -538,7 +538,7 @@
+ return;
+ }
+
+-#if (NGX_HTTP_SSL)
++#if (NGX_STREAM_SSL)
+ u->ssl_name = uscf->host;
+ #endif
+
+@@ -1157,7 +1157,7 @@
+ u = s->upstream;
+ ur = u->resolved;
+
+- ngx_log_debug0(NGX_LOG_DEBUG_HTTP, s->connection->log, 0,
++ ngx_log_debug0(NGX_LOG_DEBUG_STREAM, s->connection->log, 0,
+ "stream upstream resolve");
+
+ if (ctx->state) {
+