diff options
| author | Cory Fields <[email protected]> | 2014-08-07 11:16:07 -0400 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-08-15 10:42:10 +0200 |
| commit | 6b099402b40dcf9fc716be29c85e7e1865b28e92 (patch) | |
| tree | 20645f1f607de84615b07e16a38254e77bcb8492 /src/Makefile.qt.include | |
| parent | Merge pull request #4659 (diff) | |
| download | discoin-6b099402b40dcf9fc716be29c85e7e1865b28e92.tar.xz discoin-6b099402b40dcf9fc716be29c85e7e1865b28e92.zip | |
build: fix automake warnings about the use of INCLUDES
While we're at it, reduce the use of LIBS as well. This makes dependencies
explicit.
Fixes building with (the not-yet-merged) libsecp256k1 as well.
Github-Pull: #4689
Rebased-By: Wladimir J. van der laan <[email protected]>
Rebased-From: 909b347 c0e5dda
Diffstat (limited to 'src/Makefile.qt.include')
| -rw-r--r-- | src/Makefile.qt.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.qt.include b/src/Makefile.qt.include index 7e6fa5cb8..9a333d5c7 100644 --- a/src/Makefile.qt.include +++ b/src/Makefile.qt.include @@ -358,7 +358,7 @@ if ENABLE_WALLET qt_bitcoin_qt_LDADD += $(LIBBITCOIN_WALLET) endif qt_bitcoin_qt_LDADD += $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CRYPTO) $(LIBBITCOIN_UNIVALUE) $(LIBLEVELDB) $(LIBMEMENV) \ - $(BOOST_LIBS) $(QT_LIBS) $(QT_DBUS_LIBS) $(QR_LIBS) $(PROTOBUF_LIBS) $(BDB_LIBS) + $(BOOST_LIBS) $(QT_LIBS) $(QT_DBUS_LIBS) $(QR_LIBS) $(PROTOBUF_LIBS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) if USE_LIBSECP256K1 qt_bitcoin_qt_LDADD += secp256k1/libsecp256k1.la endif |