diff options
| author | MarcoFalke <[email protected]> | 2018-09-13 15:58:20 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-09-13 15:53:51 -0400 |
| commit | cccc362d62b0ba9475b1ac47d5908f77f7eb5d21 (patch) | |
| tree | 8336fedf13dc175a6ee47c85d1d3b25886b49c33 /src/Makefile.am | |
| parent | Merge #14208: [build] Actually remove ENABLE_WALLET (diff) | |
| download | discoin-cccc362d62b0ba9475b1ac47d5908f77f7eb5d21.tar.xz discoin-cccc362d62b0ba9475b1ac47d5908f77f7eb5d21.zip | |
build: Remove libssl from LDADD unless gui
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 159812e84..f7d7a5d37 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -467,7 +467,7 @@ bitcoind_LDADD = \ $(LIBMEMENV) \ $(LIBSECP256K1) -bitcoind_LDADD += $(BOOST_LIBS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) $(EVENT_PTHREADS_LIBS) $(EVENT_LIBS) $(ZMQ_LIBS) +bitcoind_LDADD += $(BOOST_LIBS) $(BDB_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) $(EVENT_PTHREADS_LIBS) $(EVENT_LIBS) $(ZMQ_LIBS) # bitcoin-cli binary # bitcoin_cli_SOURCES = bitcoin-cli.cpp @@ -485,7 +485,7 @@ bitcoin_cli_LDADD = \ $(LIBBITCOIN_UTIL) \ $(LIBBITCOIN_CRYPTO) -bitcoin_cli_LDADD += $(BOOST_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(EVENT_LIBS) +bitcoin_cli_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS) $(EVENT_LIBS) # # bitcoin-tx binary # |