diff options
author | koobs <koobs@FreeBSD.org> | 2015-02-24 19:37:49 +0800 |
---|---|---|
committer | koobs <koobs@FreeBSD.org> | 2015-02-24 19:37:49 +0800 |
commit | ec205c5696df459a21ac54b63b3428cf69439d42 (patch) | |
tree | 09f645f33f3cd624ffa9c486c094056ed79b984c /net-p2p | |
parent | 5472acb50711eeee2192ccae48ae6b56ac682f80 (diff) | |
download | freebsd-ports-gnome-ec205c5696df459a21ac54b63b3428cf69439d42.tar.gz freebsd-ports-gnome-ec205c5696df459a21ac54b63b3428cf69439d42.tar.zst freebsd-ports-gnome-ec205c5696df459a21ac54b63b3428cf69439d42.zip |
net-p2p/bitcoin: Reinstate BDB includes for WALLET option
Re-add removed BDB includes and library paths to CXXFLAGS/LIBS for the WALLET
options. Without them ./configure bombs out.
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/bitcoin/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net-p2p/bitcoin/Makefile b/net-p2p/bitcoin/Makefile index 212bf1391394..bbe82c955d48 100644 --- a/net-p2p/bitcoin/Makefile +++ b/net-p2p/bitcoin/Makefile @@ -3,6 +3,7 @@ PORTNAME= bitcoin PORTVERSION= 0.10.0 +PORTREVISION= 1 CATEGORIES= net-p2p finance MAINTAINER= robbak@robbak.com @@ -63,6 +64,8 @@ QRCODES_CONFIGURE_WITH= qrencode QRCODES_LIB_DEPENDS= libqrencode.so:${PORTSDIR}/graphics/libqrencode WALLET_CONFIGURE_ENABLE= wallet +WALLET_CXXFLAGS= -I${BDB_INCLUDE_DIR} +WALLET_LIBS= -L${BDB_LIB_DIR} WALLET_USE= BDB=48 GH_ACCOUNT= bitcoin |