Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Sep 2016 16:41:59 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r422448 - head/net-p2p/zetacoin
Message-ID:  <201609191641.u8JGfxT6046418@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Mon Sep 19 16:41:59 2016
New Revision: 422448
URL: https://svnweb.freebsd.org/changeset/ports/422448

Log:
  net-p2p/zetacoin: IGNORE when SSL_DEFAULT matches libressl
  
  Zetacoin explicitly fails to configure when libressl is detected.  It can
  only be built with OpenSSL right now (similar to litecoin).
  
  Approved by:	SSL blanket

Modified:
  head/net-p2p/zetacoin/Makefile

Modified: head/net-p2p/zetacoin/Makefile
==============================================================================
--- head/net-p2p/zetacoin/Makefile	Mon Sep 19 16:21:18 2016	(r422447)
+++ head/net-p2p/zetacoin/Makefile	Mon Sep 19 16:41:59 2016	(r422448)
@@ -91,6 +91,13 @@ USERS=		${PORTNAME}
 GROUPS=		${PORTNAME}
 .endif
 
+.include <bsd.port.pre.mk>
+
+.if ${SSL_DEFAULT:Mlibressl*}
+# The configure script will output this message, so save the user the trouble
+IGNORE=	Detected LibreSSL: This is NOT supported, and may break consensus compatibility!
+.endif
+
 post-patch:
 	${MKDIR} ${WRKSRC}/src/build-aux
 
@@ -113,4 +120,4 @@ do-install-X11-off:
 	${INSTALL_PROGRAM} -s ${WRKSRC}/src/${DAEMON} ${STAGEDIR}${PREFIX}/bin/${DAEMON}
 	${INSTALL_DATA} ${FILESDIR}/${PORTNAME}.conf.sample ${STAGEDIR}${PREFIX}/etc/${PORTNAME}.conf.sample
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609191641.u8JGfxT6046418>