diff options
author | kbowling <kbowling@FreeBSD.org> | 2019-02-18 07:29:41 +0800 |
---|---|---|
committer | kbowling <kbowling@FreeBSD.org> | 2019-02-18 07:29:41 +0800 |
commit | 56cae609c3c5ec38cf3bc3d684812a4702fcf225 (patch) | |
tree | 770125e65bfc4d1befe1b4545c759fd98442bdf3 /net-p2p | |
parent | da92d77b306b93c7adf3cb2500b4a07cd7a32253 (diff) | |
download | freebsd-ports-gnome-56cae609c3c5ec38cf3bc3d684812a4702fcf225.tar.gz freebsd-ports-gnome-56cae609c3c5ec38cf3bc3d684812a4702fcf225.tar.zst freebsd-ports-gnome-56cae609c3c5ec38cf3bc3d684812a4702fcf225.zip |
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
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/bitcoin-daemon/Makefile | 4 | ||||
-rw-r--r-- | net-p2p/bitcoin/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
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) |