diff options
| author | Cory Fields <[email protected]> | 2014-10-12 23:28:58 -0400 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2014-10-13 21:21:27 -0400 |
| commit | 28d412ff20309b275da1375839dae0ee236a5ac2 (patch) | |
| tree | 7178eb725ccec50ab1555d85e75142d24a373d4a /src/Makefile.test.include | |
| parent | Merge pull request #4937 (diff) | |
| download | discoin-28d412ff20309b275da1375839dae0ee236a5ac2.tar.xz discoin-28d412ff20309b275da1375839dae0ee236a5ac2.zip | |
build: quit abusing LIBS for Windows builds.
Similar to the INCLUDES changes in 6b099402b40, split out LIBS into individual
entries for more fine-grained control.
Also add MINIUPNPC_LIBS which was missing before, and hook it up to
executables.
Diffstat (limited to 'src/Makefile.test.include')
| -rw-r--r-- | src/Makefile.test.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index b20e226c3..340eb9f1a 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -89,7 +89,7 @@ if USE_LIBSECP256K1 test_test_bitcoin_LDADD += secp256k1/libsecp256k1.la endif -test_test_bitcoin_LDADD += $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) +test_test_bitcoin_LDADD += $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) test_test_bitcoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) nodist_test_test_bitcoin_SOURCES = $(GENERATED_TEST_FILES) |