From owner-svn-ports-head@freebsd.org Mon Sep 19 16:42:00 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3977BE1BBE; Mon, 19 Sep 2016 16:42:00 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 967D41FCA; Mon, 19 Sep 2016 16:42:00 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8JGfxSr046419; Mon, 19 Sep 2016 16:41:59 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8JGfxT6046418; Mon, 19 Sep 2016 16:41:59 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609191641.u8JGfxT6046418@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 19 Sep 2016 16:41:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422448 - head/net-p2p/zetacoin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Sep 2016 16:42:00 -0000 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 + +.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 +.include