diff options
author | Rosen Penev <rosenp@gmail.com> | 2019-04-05 14:41:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-05 14:41:27 -0700 |
commit | 0cd5fecfe457c67cd4d4a2f39021b07a7cb05c7f (patch) | |
tree | 005eab245733c4e4ce7140b6a64b4602b8bb30cd | |
parent | 3f53cdf2b5d195a2dca4d0ff9f6f4d5baf61b7b1 (diff) | |
parent | 4b541141ca44eff99c9f8be0cc3b24773277308c (diff) |
Merge pull request #8602 from Ansuel/nginxup
nginx: update to version 1.15.10
-rw-r--r-- | net/nginx/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/net/nginx/Makefile b/net/nginx/Makefile index 4a5272059..17794f87f 100644 --- a/net/nginx/Makefile +++ b/net/nginx/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=nginx -PKG_VERSION:=1.15.8 +PKG_VERSION:=1.15.10 PKG_RELEASE:=1 PKG_SOURCE:=nginx-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://nginx.org/download/ -PKG_HASH:=a8bdafbca87eb99813ae4fcac1ad0875bf725ce19eb265d28268c309b2b40787 +PKG_HASH:=b865743abd52bce4745d0f7e7fedde3cafbaaab617b022c105e3e4e456537c3c PKG_MAINTAINER:=Thomas Heil <heil@terminal-consulting.de> \ Ansuel Smith <ansuelsmth@gmail.com> @@ -71,6 +71,7 @@ PKG_CONFIG_DEPENDS := \ CONFIG_NGINX_STREAM_SSL_PREREAD_MODULE \ CONFIG_NGINX_RTMP_MODULE \ CONFIG_NGINX_TS_MODULE \ + CONFIG_OPENSSL_ENGINE \ include $(INCLUDE_DIR)/package.mk @@ -80,7 +81,7 @@ define Package/nginx/default SUBMENU:=Web Servers/Proxies TITLE:=Nginx web server URL:=http://nginx.org/ - DEPENDS:=+NGINX_PCRE:libpcre +(NGINX_SSL||NGINX_HTTP_CACHE||NGINX_HTTP_AUTH_BASIC):libopenssl \ + DEPENDS:=+NGINX_PCRE:libpcre +NGINX_SSL:libopenssl \ +NGINX_HTTP_GZIP:zlib +NGINX_LUA:liblua +libpthread +NGINX_DAV:libexpat endef @@ -104,7 +105,7 @@ define Package/nginx-ssl endef Package/nginx-ssl/description = $(Package/nginx/description) \ - This varian is compiled with SSL support enabled. To enable additional module \ + This variant is compiled with SSL support enabled. To enable additional module \ select them in the nginx default configuration menu. define Package/nginx-all-module @@ -116,7 +117,7 @@ define Package/nginx-all-module endef Package/nginx-all-module/description = $(Package/nginx/description) \ - This varian is compiled with ALL module selected. + This variant is compiled with ALL module selected. define Package/nginx/config source "$(SOURCE)/Config.in" |