Date: Mon, 9 Jan 2017 10:03:48 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430935 - head/www/tengine Message-ID: <201701091003.v09A3m13007454@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Mon Jan 9 10:03:47 2017 New Revision: 430935 URL: https://svnweb.freebsd.org/changeset/ports/430935 Log: - Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOL - Always check NGINX_OPENSSL after it is defined Approved by: portmgr blanket Modified: head/www/tengine/Makefile Modified: head/www/tengine/Makefile ============================================================================== --- head/www/tengine/Makefile Mon Jan 9 10:02:39 2017 (r430934) +++ head/www/tengine/Makefile Mon Jan 9 10:03:47 2017 (r430935) @@ -730,20 +730,15 @@ CONFIGURE_ARGS+=--without-http_rewrite_m --without-pcre .endif -.if defined(NGINX_OPENSSL) -USE_OPENSSL= yes -.if ${PORT_OPTIONS:MSPDY} -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000028 -WITH_OPENSSL_PORT= yes -.endif -.endif -.endif - .if defined(WITH_HTTP_SSL) NGINX_OPENSSL= yes CONFIGURE_ARGS+=--with-http_ssl_module .endif +.if defined(NGINX_OPENSSL) +USES+= ssl +.endif + .if ${PORT_OPTIONS:MHTTP_SSL} WITH_HTTP_SSL= yes .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701091003.v09A3m13007454>