From 56cae609c3c5ec38cf3bc3d684812a4702fcf225 Mon Sep 17 00:00:00 2001
From: kbowling <kbowling@FreeBSD.org>
Date: Sun, 17 Feb 2019 23:29:41 +0000
Subject: net-p2p/bitcoin: enable ZMQ by default

Reported by:	Seth Hahn <seth586 at protonmail.com>
Approved by:	timur (mentor)
Sponsored by:	BBOX.io
Differential Revision:	https://reviews.freebsd.org/D19209
---
 net-p2p/bitcoin-daemon/Makefile | 4 ++--
 net-p2p/bitcoin/Makefile        | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

(limited to 'net-p2p')

diff --git a/net-p2p/bitcoin-daemon/Makefile b/net-p2p/bitcoin-daemon/Makefile
index e0c6d70746ba..b4d28aa53042 100644
--- a/net-p2p/bitcoin-daemon/Makefile
+++ b/net-p2p/bitcoin-daemon/Makefile
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 MASTERDIR=	${.CURDIR}/../bitcoin
-PORTREVISION=	4
+PORTREVISION=	5
 PKGNAMESUFFIX=	-daemon
 
 COMMENT=	Virtual Peer-to-Peer Currency (Daemon)
@@ -14,7 +14,7 @@ NOT_FOR_ARCHS_REASON=	does not support big-endian architectures
 OPTIONS_DEFINE=		DEBUG HARDENING TESTS UPNP ZMQ
 # WALLET_BDBMODERN is a choice for WALLET, introduced via OPTIONS_RADIO=WALLET
 # from ${MASTERDIR}/Makefile
-OPTIONS_DEFAULT=	HARDENING UPNP WALLET_BDBMODERN
+OPTIONS_DEFAULT=	HARDENING UPNP WALLET_BDBMODERN ZMQ
 
 USERS=		bitcoin
 GROUPS=		bitcoin
diff --git a/net-p2p/bitcoin/Makefile b/net-p2p/bitcoin/Makefile
index df611c153797..30a8f50b60b7 100644
--- a/net-p2p/bitcoin/Makefile
+++ b/net-p2p/bitcoin/Makefile
@@ -3,7 +3,7 @@
 
 PORTNAME=	bitcoin
 PORTVERSION=	0.17.1
-PORTREVISION?=	1
+PORTREVISION?=	2
 CATEGORIES=	net-p2p finance
 MASTER_SITES=	https://bitcoincore.org/bin/bitcoin-core-${PORTVERSION}/:DEFAULT \
 		LOCAL/swills:icon
@@ -42,7 +42,7 @@ TESTS_PLIST_FILES=	bin/test_bitcoin-qt \
 OPTIONS_DEFINE?=	DBUS DEBUG HARDENING QRCODES TESTS UPNP ZMQ
 OPTIONS_RADIO?=		WALLET
 OPTIONS_RADIO_WALLET?=	WALLET_BDB48 WALLET_BDBMODERN
-OPTIONS_DEFAULT?=	DBUS HARDENING QRCODES UPNP WALLET_BDBMODERN
+OPTIONS_DEFAULT?=	DBUS HARDENING QRCODES UPNP WALLET_BDBMODERN ZMQ
 OPTIONS_SUB=		yes
 
 HARDENING_DESC=	Attempt to harden binaries (PIE for ASLR, NX Stack)
-- 
cgit