pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/nginx
Module Name: pkgsrc
Committed By: triaxx
Date: Mon Oct 1 20:55:36 UTC 2018
Modified Files:
pkgsrc/www/nginx: Makefile.common options.mk
Log Message:
nginx: fix two inconsistent paths and remove a deprecated option
* Fix scgi temp path
* Fix uwsgi temp path (if option is activated)
* Remove ipv6 option (./configure: warning: the "--with-ipv6"
option is deprecated)
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/www/nginx/Makefile.common
cvs rdiff -u -r1.46 -r1.47 pkgsrc/www/nginx/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/www/nginx/Makefile.common
diff -u pkgsrc/www/nginx/Makefile.common:1.13 pkgsrc/www/nginx/Makefile.common:1.14
--- pkgsrc/www/nginx/Makefile.common:1.13 Fri Jan 26 14:47:47 2018
+++ pkgsrc/www/nginx/Makefile.common Mon Oct 1 20:55:36 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.13 2018/01/26 14:47:47 fhajny Exp $
+# $NetBSD: Makefile.common,v 1.14 2018/10/01 20:55:36 triaxx Exp $
# used by www/nginx/Makefile
# used by www/nginx-devel/Makefile
@@ -48,6 +48,7 @@ CONFIGURE_ARGS+= --http-log-path=${NGINX
CONFIGURE_ARGS+= --http-client-body-temp-path=${NGINX_DATADIR}/client_body_temp
CONFIGURE_ARGS+= --http-proxy-temp-path=${NGINX_DATADIR}/proxy_temp
CONFIGURE_ARGS+= --http-fastcgi-temp-path=${NGINX_DATADIR}/fstcgi_temp
+CONFIGURE_ARGS+= --http-scgi-temp-path=${NGINX_DATADIR}/scgi_temp
PKG_SYSCONFSUBDIR= nginx
Index: pkgsrc/www/nginx/options.mk
diff -u pkgsrc/www/nginx/options.mk:1.46 pkgsrc/www/nginx/options.mk:1.47
--- pkgsrc/www/nginx/options.mk:1.46 Fri Aug 24 18:27:07 2018
+++ pkgsrc/www/nginx/options.mk Mon Oct 1 20:55:36 2018
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.46 2018/08/24 18:27:07 adam Exp $
+# $NetBSD: options.mk,v 1.47 2018/10/01 20:55:36 triaxx Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.nginx
PKG_SUPPORTED_OPTIONS= dav flv gtools inet6 luajit mail-proxy memcache naxsi \
@@ -78,10 +78,6 @@ CONFIGURE_ARGS+= --without-http_memcache
CONFIGURE_ARGS+= --with-http_realip_module
.endif
-.if !empty(PKG_OPTIONS:Minet6)
-CONFIGURE_ARGS+= --with-ipv6
-.endif
-
# NDK must be added once and before 3rd party modules needing it
.for _ngx_mod in luajit set-misc array-var form-input encrypted-session
. if !defined(NEED_NDK) && !empty(PKG_OPTIONS:M${_ngx_mod}:O)
@@ -180,6 +176,7 @@ DISTFILES+= ${HEADMORE_DISTFILE}
.if !empty(PKG_OPTIONS:Muwsgi)
EGFILES+= uwsgi_params
PLIST.uwsgi= yes
+CONFIGURE_ARGS+= --http-uwsgi-temp-path=${NGINX_DATADIR}/uwsgi_temp
.else
CONFIGURE_ARGS+= --without-http_uwsgi_module
.endif
Home |
Main Index |
Thread Index |
Old Index