All of lore.kernel.org
 help / color / mirror / Atom feed
From: Adam Duskett <aduskett@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 2/5] package/nginx: add stream_set_module support
Date: Mon, 28 Jun 2021 09:16:07 -0700	[thread overview]
Message-ID: <20210628161610.3197763-3-aduskett@gmail.com> (raw)
In-Reply-To: <20210628161610.3197763-1-aduskett@gmail.com>

This is a new module in 1.20

Signed-off-by: Adam Duskett <aduskett@gmail.com>
---
 package/nginx/Config.in | 6 ++++++
 package/nginx/nginx.mk  | 4 ++++
 2 files changed, 10 insertions(+)

diff --git a/package/nginx/Config.in b/package/nginx/Config.in
index 6ae790a949..1200b2bf4c 100644
--- a/package/nginx/Config.in
+++ b/package/nginx/Config.in
@@ -339,6 +339,12 @@ config BR2_PACKAGE_NGINX_STREAM_REALIP_MODULE
 	help
 	  Enable ngx_stream_realip_module
 
+config BR2_PACKAGE_NGINX_STREAM_SET_MODULE
+	bool "ngx_stream_set_module"
+	default y
+	help
+	  Enable ngx_stream_set_module
+
 config BR2_PACKAGE_NGINX_STREAM_SSL_MODULE
 	bool "ngx_stream_ssl_module"
 	select BR2_PACKAGE_OPENSSL
diff --git a/package/nginx/nginx.mk b/package/nginx/nginx.mk
index c68811e276..616ada9000 100644
--- a/package/nginx/nginx.mk
+++ b/package/nginx/nginx.mk
@@ -235,6 +235,10 @@ ifeq ($(BR2_PACKAGE_NGINX_STREAM_REALIP_MODULE),y)
 NGINX_CONF_OPTS += --with-stream_realip_module
 endif
 
+ifeq ($(BR2_PACKAGE_NGINX_STREAM_SET_MODULE),)
+NGINX_CONF_OPTS += --without-stream_set_module
+endif
+
 ifeq ($(BR2_PACKAGE_NGINX_STREAM_SSL_MODULE),y)
 NGINX_DEPENDENCIES += openssl
 NGINX_CONF_OPTS += --with-stream_ssl_module
-- 
2.31.1

  parent reply	other threads:[~2021-06-28 16:16 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-28 16:16 [Buildroot] [PATCH 0/5] nginx updates Adam Duskett
2021-06-28 16:16 ` [Buildroot] [PATCH 1/5] package/nginx: bump version to 1.20.1 Adam Duskett
2021-06-28 17:16   ` Baruch Siach
2021-06-28 16:16 ` Adam Duskett [this message]
2021-06-28 16:16 ` [Buildroot] [PATCH 3/5] package/nginx-naxsi: bump version to 1.3 Adam Duskett
2021-06-29 20:17   ` Yann E. MORIN
2021-06-28 16:16 ` [Buildroot] [PATCH 4/5] package/nginx-dav-ext: bump version to 3.0.0 Adam Duskett
2021-06-28 16:16 ` [Buildroot] [PATCH 5/5] package/nginx-modsecurity: bump to version 1.0.2 Adam Duskett
2021-06-28 18:02 ` [Buildroot] [PATCH 0/5] nginx updates Robert Hancock
2021-06-30 21:16   ` Yann E. MORIN
2021-07-02 15:25     ` Adam Duskett
2021-06-29 20:20 ` Yann E. MORIN

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210628161610.3197763-3-aduskett@gmail.com \
    --to=aduskett@gmail.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.