diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-10-27 12:27:50 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-10-27 12:28:02 +0100 |
| commit | 1bd8a7b2b969f0077882550692505d55724ff867 (patch) | |
| tree | ca0bb68483e96064182e4c6f05e6823b78383a4e /src/Makefile.test.include | |
| parent | Merge pull request #5119 (diff) | |
| parent | build: fix libtool's refusal to link static libs into a dll (diff) | |
| download | discoin-1bd8a7b2b969f0077882550692505d55724ff867.tar.xz discoin-1bd8a7b2b969f0077882550692505d55724ff867.zip | |
Merge pull request #5086
1723862 build: fix libtool's refusal to link static libs into a dll (Cory Fields)
28d412f build: quit abusing LIBS for Windows builds. (Cory Fields)
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) |