svn commit: r439540 - in head: Mk/Uses www/mod_spdy

Mathieu Arnold mat at FreeBSD.org
Thu Apr 27 12:14:31 UTC 2017


Author: mat
Date: Thu Apr 27 12:14:29 2017
New Revision: 439540
URL: https://svnweb.freebsd.org/changeset/ports/439540

Log:
  Enhance the BROKEN_SSL messages.
  
  Sponsored by:	Absolight

Modified:
  head/Mk/Uses/ssl.mk
  head/www/mod_spdy/Makefile   (contents, props changed)

Modified: head/Mk/Uses/ssl.mk
==============================================================================
--- head/Mk/Uses/ssl.mk	Thu Apr 27 11:39:10 2017	(r439539)
+++ head/Mk/Uses/ssl.mk	Thu Apr 27 12:14:29 2017	(r439540)
@@ -79,9 +79,9 @@ OPENSSL_PORT=		security/${SSL_DEFAULT}
 
 .  if defined(BROKEN_SSL) && ${BROKEN_SSL:M${SSL_DEFAULT}}
 .    if defined(BROKEN_SSL_REASON_${SSL_DEFAULT})
-BROKEN=	${BROKEN_SSL_REASON_${SSL_DEFAULT}}
+BROKEN=	does not build with DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT}: ${BROKEN_SSL_REASON_${SSL_DEFAULT}}
 .    elif defined(BROKEN_SSL_REASON)
-BROKEN=	${BROKEN_SSL_REASON}
+BROKEN=	does not build with DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT}: ${BROKEN_SSL_REASON}
 .    else
 BROKEN=	does not build with DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT}
 .    endif
@@ -89,9 +89,9 @@ BROKEN=	does not build with DEFAULT_VERS
 
 .  if defined(IGNORE_SSL) && ${IGNORE_SSL:M${SSL_DEFAULT}}
 .    if defined(IGNORE_SSL_REASON_${SSL_DEFAULT})
-IGNORE=	${IGNORE_SSL_REASON_${SSL_DEFAULT}}
+IGNORE=	not compatible DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT}: ${IGNORE_SSL_REASON_${SSL_DEFAULT}}
 .    elif defined(IGNORE_SSL_REASON)
-IGNORE=	${IGNORE_SSL_REASON}
+IGNORE=	not compatible DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT}: ${IGNORE_SSL_REASON}
 .    else
 IGNORE=	not compatible DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT}
 .    endif

Modified: head/www/mod_spdy/Makefile
==============================================================================
--- head/www/mod_spdy/Makefile	Thu Apr 27 11:39:10 2017	(r439539)
+++ head/www/mod_spdy/Makefile	Thu Apr 27 12:14:29 2017	(r439540)
@@ -83,7 +83,7 @@ CONFIGURE_ENV+=	CFLAGS="${CFLAGS}" \
 MAKE_ENV+=	BUILDTYPE=${BUILDTYPE}
 
 BROKEN_SSL=		libressl libressl-devel
-BROKEN_SSL_REASON=	incompatible with LibreSSL, please use www/apache24 with mod_http2
+BROKEN_SSL_REASON=	please use www/apache24 with mod_http2
 
 .include <bsd.port.pre.mk>
 


More information about the svn-ports-head mailing list