svn commit: r421941 - head/net-p2p/litecoin

John Marino marino at FreeBSD.org
Mon Sep 12 17:26:27 UTC 2016


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
 


More information about the svn-ports-head mailing list