diff options
| author | Pieter Wuille <[email protected]> | 2014-11-05 07:58:37 -0800 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-11-18 18:06:46 +0100 |
| commit | 07a99017033b23f840f602d768efa87e0e914e90 (patch) | |
| tree | f207fdc1584b0836247f545ea67ecb0a8e8711fd /src/Makefile.test.include | |
| parent | Merge commit 'd48555b36ac512161b81f9b6bca7bea16a0cd806' as 'src/secp256k1' (diff) | |
| download | discoin-07a99017033b23f840f602d768efa87e0e914e90.tar.xz discoin-07a99017033b23f840f602d768efa87e0e914e90.zip | |
Always build and link libsecp256k1
Diffstat (limited to 'src/Makefile.test.include')
| -rw-r--r-- | src/Makefile.test.include | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 6a8d9e58a..da5c746cc 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -80,15 +80,11 @@ endif test_test_bitcoin_SOURCES = $(BITCOIN_TESTS) $(JSON_TEST_FILES) $(RAW_TEST_FILES) test_test_bitcoin_CPPFLAGS = $(BITCOIN_INCLUDES) -I$(builddir)/test/ $(TESTDEFS) test_test_bitcoin_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CRYPTO) $(LIBBITCOIN_UNIVALUE) $(LIBLEVELDB) $(LIBMEMENV) \ - $(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) + $(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) $(LIBSECP256K1) if ENABLE_WALLET test_test_bitcoin_LDADD += $(LIBBITCOIN_WALLET) endif -if USE_LIBSECP256K1 - test_test_bitcoin_LDADD += secp256k1/libsecp256k1.la -endif - test_test_bitcoin_LDADD += $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) test_test_bitcoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) |