Date: Mon, 12 Sep 2016 17:26:26 +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: r421941 - head/net-p2p/litecoin Message-ID: <201609121726.u8CHQQaP021588@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Mon Sep 12 17:26:26 2016 New Revision: 421941 URL: https://svnweb.freebsd.org/changeset/ports/421941 Log: net-p2p/litecoin: Set SSL flags Note for SSL_DEFAULT=libressl: configure: error: Detected LibreSSL: This is not supported, and may break consensus compatibility It might be worth detecting that via SSL_DEFAULT and setting the port to IGNORE. Or perhaps a newer version of litecoin will support LibreSSL officially. Approved by: SSL blanket Modified: head/net-p2p/litecoin/Makefile Modified: head/net-p2p/litecoin/Makefile ============================================================================== --- head/net-p2p/litecoin/Makefile Mon Sep 12 17:13:14 2016 (r421940) +++ head/net-p2p/litecoin/Makefile Mon Sep 12 17:26:26 2016 (r421941) @@ -85,6 +85,10 @@ CONFIGURE_ENV= CRYPTO_CFLAGS="-I${OPENSS CONFIGURE_ENV+= OBJC="${CC}" OBJCFLAGS="${CFLAGS}" OBJCXX="${CXX}" OBJCXXFLAGS="${CXXFLAGS}" +CPPFLAGS+= -I${OPENSSLINC} +CFLAGS+= -I${OPENSSLINC} +LDFLAGS+= -L${OPENSSLLIB} + PLIST_FILES?= bin/litecoin-qt share/applications/litecoin-qt.desktop \ share/pixmaps/litecoin128.png
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609121726.u8CHQQaP021588>