File tree Expand file tree Collapse file tree 4 files changed +33
-0
lines changed Expand file tree Collapse file tree 4 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1
1
packages: =boost openssl libevent
2
+ packages_darwin: =zeromq
3
+ packages_linux: =zeromq
2
4
native_packages := native_ccache native_comparisontool
3
5
4
6
qt_native_packages = native_protobuf
Original file line number Diff line number Diff line change
1
+ package =zeromq
2
+ $(package)_version =4.0.4
3
+ $(package)_download_path =http://download.zeromq.org
4
+ $(package)_file_name =$(package ) -$($(package ) _version) .tar.gz
5
+ $(package)_sha256_hash =1ef71d46e94f33e27dd5a1661ed626cd39be4d2d6967792a275040e34457d399
6
+
7
+ define $(package)_set_vars
8
+ $(package ) _config_opts=--without-documentation --disable-shared
9
+ $(package ) _config_opts_linux=--with-pic
10
+ endef
11
+
12
+ define $(package)_config_cmds
13
+ $($(package ) _autoconf)
14
+ endef
15
+
16
+ define $(package)_build_cmds
17
+ $(MAKE ) -C src
18
+ endef
19
+
20
+ define $(package)_stage_cmds
21
+ $(MAKE ) -C src DESTDIR=$($(package ) _staging_dir) install
22
+ endef
23
+
24
+ define $(package)_postprocess_cmds
25
+ rm -rf bin share
26
+ endef
Original file line number Diff line number Diff line change @@ -59,6 +59,10 @@ testScriptsExt=(
59
59
' p2p-acceptblock.py'
60
60
);
61
61
62
+ if [ " x$ENABLE_ZMQ " = " x1" ]; then
63
+ testScripts=( ${testScripts[@]} ' zmq_test.py' )
64
+ fi
65
+
62
66
extArg=" -extended"
63
67
passOn=${@# $extArg }
64
68
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ EXEEXT="@EXEEXT@"
10
10
@ENABLE_WALLET_TRUE@ENABLE_WALLET=1
11
11
@BUILD_BITCOIN_UTILS_TRUE@ENABLE_UTILS=1
12
12
@BUILD_BITCOIND_TRUE@ENABLE_BITCOIND=1
13
+ @ENABLE_ZMQ_TRUE@ENABLE_ZMQ=1
13
14
14
15
REAL_BITCOIND=" $BUILDDIR /src/bitcoind${EXEEXT} "
15
16
REAL_BITCOINCLI=" $BUILDDIR /src/bitcoin-cli${EXEEXT} "
You can’t perform that action at this time.
0 commit comments