From: Martin Bark Date: Tue, 3 May 2016 09:36:56 +0000 (+0100) Subject: package/nginx: add thread pool support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2748bc6b6544347c75837205c8537d2321d4393f;p=buildroot.git package/nginx: add thread pool support Signed-off-by: Martin Bark Signed-off-by: Thomas Petazzoni --- diff --git a/package/nginx/Config.in b/package/nginx/Config.in index f925cc75bc..ca3e3eb4b0 100644 --- a/package/nginx/Config.in +++ b/package/nginx/Config.in @@ -18,6 +18,13 @@ config BR2_PACKAGE_NGINX_FILE_AIO depends on !BR2_aarch64 depends on !BR2_arc +config BR2_PACKAGE_NGINX_THREADS + bool "thread pool support" + depends on BR2_TOOLCHAIN_HAS_THREADS + +comment "thread pool support needs a toolchain w/ threads" + depends on !BR2_TOOLCHAIN_HAS_THREADS + config BR2_PACKAGE_NGINX_HTTP bool "http server" default y diff --git a/package/nginx/nginx.mk b/package/nginx/nginx.mk index 7f3b075a73..91772b351b 100644 --- a/package/nginx/nginx.mk +++ b/package/nginx/nginx.mk @@ -64,7 +64,8 @@ NGINX_CONF_OPTS += \ --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi NGINX_CONF_OPTS += \ - $(if $(BR2_PACKAGE_NGINX_FILE_AIO),--with-file-aio) + $(if $(BR2_PACKAGE_NGINX_FILE_AIO),--with-file-aio) \ + $(if $(BR2_PACKAGE_NGINX_THREADS),--with-threads) ifeq ($(BR2_PACKAGE_PCRE),y) NGINX_DEPENDENCIES += pcre