svn commit: r441422 - in head/www: nginx nginx-devel

Sergey A. Osokin osa at FreeBSD.org
Sun May 21 19:05:03 UTC 2017


Author: osa
Date: Sun May 21 19:05:01 2017
New Revision: 441422
URL: https://svnweb.freebsd.org/changeset/ports/441422

Log:
  A customer has reported about an issue when unable to load a dynamic
  module because of wrong order of those modules in the default confi-
  guration file, so remove the auto generation of the load modules list.
  
  Bump PORTREVISION.

Modified:
  head/www/nginx-devel/Makefile
  head/www/nginx/Makefile

Modified: head/www/nginx-devel/Makefile
==============================================================================
--- head/www/nginx-devel/Makefile	Sun May 21 18:53:30 2017	(r441421)
+++ head/www/nginx-devel/Makefile	Sun May 21 19:05:01 2017	(r441422)
@@ -3,7 +3,7 @@
 
 PORTNAME=	nginx
 PORTVERSION=	1.13.0
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	www
 MASTER_SITES=	http://nginx.org/download/
 MASTER_SITES+=	LOCAL/osa
@@ -1345,11 +1345,6 @@ post-install:
 .if !empty(PORT_OPTIONS:MDSO)
 	(cd ${STAGEDIR}${PREFIX} && ${FIND} ${MODULESDIR:S|${PREFIX}/||} \
 		! -type d >>${TMPPLIST})
-# Update nginx.conf-dist with a list of staged dynamic modules
-	(cd ${STAGEDIR} && \
-		${FIND} ${MODULESDIR:S|^/||} -type f -name '*.so' \
-			-exec ${ECHO_CMD} "load_module /{};" \; \
-			>>${STAGEDIR}${ETCDIR}/nginx.conf-dist)
 .endif
 	${CAT} ${WRKSRC}/conf/nginx.conf \
 		>>${STAGEDIR}${ETCDIR}/nginx.conf-dist

Modified: head/www/nginx/Makefile
==============================================================================
--- head/www/nginx/Makefile	Sun May 21 18:53:30 2017	(r441421)
+++ head/www/nginx/Makefile	Sun May 21 19:05:01 2017	(r441422)
@@ -3,7 +3,7 @@
 
 PORTNAME=	nginx
 PORTVERSION=	1.12.0
-PORTREVISION=	2
+PORTREVISION=	3
 PORTEPOCH=	2
 CATEGORIES=	www
 MASTER_SITES=	http://nginx.org/download/
@@ -1347,11 +1347,6 @@ post-install:
 .if !empty(PORT_OPTIONS:MDSO)
 	(cd ${STAGEDIR}${PREFIX} && ${FIND} ${MODULESDIR:S|${PREFIX}/||} \
 		! -type d >>${TMPPLIST})
-# Update nginx.conf-dist with a list of staged dynamic modules
-	(cd ${STAGEDIR} && \
-		${FIND} ${MODULESDIR:S|^/||} -type f -name '*.so' \
-			-exec ${ECHO_CMD} "load_module /{};" \; \
-			>>${STAGEDIR}${ETCDIR}/nginx.conf-dist)
 .endif
 	${CAT} ${WRKSRC}/conf/nginx.conf \
 		>>${STAGEDIR}${ETCDIR}/nginx.conf-dist


More information about the svn-ports-all mailing list