Merge pull request #5677
d528025Revert "rpc-tests: re-enable rpc-tests for Windows" (Wladimir J. van der Laan)1e700c9doc: update deps in build-unix.md after libevent (Wladimir J. van der Laan)26c9b83Move windows socket init to utility function (Wladimir J. van der Laan)4be0b08libevent: Windows reuseaddr workaround in depends (Cory Fields)3a174cdFix race condition between starting HTTP server thread and setting EventBase() (Wladimir J. van der Laan)6d2bc22Document options for new HTTP/RPC server in --help (Wladimir J. van der Laan)be33f3fImplement RPCTimerHandler for Qt RPC console (Wladimir J. van der Laan)57d85d9doc: mention SSL support dropped for RPC in release notes (Wladimir J. van der Laan)40b556devhttpd implementation (Wladimir J. van der Laan)ee2a42btests: GET requests cannot have request body, use POST in rest.py (Wladimir J. van der Laan)6e996d3tests: fix qt payment test (Cory Fields)3140ef9build: build-system changes for libevent (Wladimir J. van der Laan)a9af234libevent: add depends (Cory Fields)6a21dd5Remove rpc_boostasiotocnetaddr test (Wladimir J. van der Laan)8f9301cqa: Remove -rpckeepalive tests from httpbasics (Wladimir J. van der Laan)51fcfc0doc: remove documentation for rpcssl (Wladimir J. van der Laan)
This commit is contained in:
@@ -98,6 +98,8 @@ BITCOIN_CORE_H = \
|
||||
eccryptoverify.h \
|
||||
ecwrapper.h \
|
||||
hash.h \
|
||||
httprpc.h \
|
||||
httpserver.h \
|
||||
init.h \
|
||||
key.h \
|
||||
keystore.h \
|
||||
@@ -164,13 +166,15 @@ obj/build.h: FORCE
|
||||
libbitcoin_util_a-clientversion.$(OBJEXT): obj/build.h
|
||||
|
||||
# server: shared between bitcoind and bitcoin-qt
|
||||
libbitcoin_server_a_CPPFLAGS = $(BITCOIN_INCLUDES) $(MINIUPNPC_CPPFLAGS)
|
||||
libbitcoin_server_a_CPPFLAGS = $(BITCOIN_INCLUDES) $(MINIUPNPC_CPPFLAGS) $(EVENT_CFLAGS) $(EVENT_PTHREADS_CFLAGS)
|
||||
libbitcoin_server_a_SOURCES = \
|
||||
addrman.cpp \
|
||||
alert.cpp \
|
||||
bloom.cpp \
|
||||
chain.cpp \
|
||||
checkpoints.cpp \
|
||||
httprpc.cpp \
|
||||
httpserver.cpp \
|
||||
init.cpp \
|
||||
leveldbwrapper.cpp \
|
||||
main.cpp \
|
||||
@@ -320,12 +324,12 @@ if ENABLE_WALLET
|
||||
bitcoind_LDADD += libbitcoin_wallet.a
|
||||
endif
|
||||
|
||||
bitcoind_LDADD += $(BOOST_LIBS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS)
|
||||
bitcoind_LDADD += $(BOOST_LIBS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) $(EVENT_PTHREADS_LIBS) $(EVENT_LIBS)
|
||||
#
|
||||
|
||||
# bitcoin-cli binary #
|
||||
bitcoin_cli_SOURCES = bitcoin-cli.cpp
|
||||
bitcoin_cli_CPPFLAGS = $(BITCOIN_INCLUDES)
|
||||
bitcoin_cli_CPPFLAGS = $(BITCOIN_INCLUDES) $(EVENT_CFLAGS)
|
||||
bitcoin_cli_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
||||
|
||||
if TARGET_WINDOWS
|
||||
@@ -338,7 +342,7 @@ bitcoin_cli_LDADD = \
|
||||
$(LIBBITCOIN_UTIL) \
|
||||
$(LIBSECP256K1)
|
||||
|
||||
bitcoin_cli_LDADD += $(BOOST_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS)
|
||||
bitcoin_cli_LDADD += $(BOOST_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(EVENT_LIBS)
|
||||
#
|
||||
|
||||
# bitcoin-tx binary #
|
||||
|
||||
Reference in New Issue
Block a user