aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2014-10-23 23:12:04 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2014-10-23 23:12:04 +0800
commitfac4e8ffd6ad7f680944734601c5e522f26745cc (patch)
treecaa550778d41366e0af19957db7d9ccd1a29b620
parent1e65540b0cf57de5dc501fc52cc303ffadc33d02 (diff)
downloaddexon-solidity-fac4e8ffd6ad7f680944734601c5e522f26745cc.tar
dexon-solidity-fac4e8ffd6ad7f680944734601c5e522f26745cc.tar.gz
dexon-solidity-fac4e8ffd6ad7f680944734601c5e522f26745cc.tar.bz2
dexon-solidity-fac4e8ffd6ad7f680944734601c5e522f26745cc.tar.lz
dexon-solidity-fac4e8ffd6ad7f680944734601c5e522f26745cc.tar.xz
dexon-solidity-fac4e8ffd6ad7f680944734601c5e522f26745cc.tar.zst
dexon-solidity-fac4e8ffd6ad7f680944734601c5e522f26745cc.zip
jsonrpc library dependency made mandatory
-rw-r--r--CMakeLists.txt3
-rw-r--r--jsonrpc.cpp2
2 files changed, 1 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2a6ee0c8..3f783516 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -17,10 +17,7 @@ target_link_libraries(testeth secp256k1)
target_link_libraries(testeth gmp)
target_link_libraries(testeth ${CRYPTOPP_LS})
target_link_libraries(testeth webthree)
-
-if(JSONRPC_LS)
target_link_libraries(testeth ethrpc)
-endif()
target_link_libraries(createRandomTest ethereum)
target_link_libraries(createRandomTest ethcore)
diff --git a/jsonrpc.cpp b/jsonrpc.cpp
index 1320846d..ff2e3a5b 100644
--- a/jsonrpc.cpp
+++ b/jsonrpc.cpp
@@ -19,7 +19,7 @@
* @date 2014
*/
-#if ETH_JSONRPC && 1
+#if 1
#include <boost/test/unit_test.hpp>
#include <boost/lexical_cast.hpp>