Commit b11cbd9b authored by Samuel Martin's avatar Samuel Martin Committed by Peter Korsgaard
Browse files

package/nginx: remove rtsig module support

rtsig module uses the deprecated sysctl syscall, which is not
implemented on some recent architecture (such as arc).

Also, rtsig module is almost considered as deprecated by some nginx
developers [1].

So, just remove this option.

Fixes:
  http://autobuild.buildroot.org/results/730/730105fc0a89b381b3b29192d07f28ef1f13cbb3/

[1] http://mailman.nginx.org/pipermail/nginx-devel/2014-November/006295.html



Signed-off-by: default avatarSamuel Martin <s.martin49@gmail.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent ed961f11
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -309,11 +309,6 @@ endif #BR2_PACKAGE_NGINX_MAIL

comment "misc. modules"

config BR2_PACKAGE_NGINX_RTSIG_MODULE
	bool "ngx_rtsig_module"
	help
	  Enable ngx_rtsig_module

config BR2_PACKAGE_NGINX_SELECT_MODULE
	bool "ngx_select_module"
	help
+0 −1
Original line number Diff line number Diff line
@@ -88,7 +88,6 @@ endif

# misc. modules
NGINX_CONF_OPTS += \
	$(if $(BR2_PACKAGE_NGINX_RTSIG_MODULE),--with-rtsig_module) \
	$(if $(BR2_PACKAGE_NGINX_SELECT_MODULE),--with-select_module,--without-select_module) \
	$(if $(BR2_PACKAGE_NGINX_POLL_MODULE),--with-poll_module,--without-poll_module)