From da1f888d62651306b6b10f544ca31dd92505692f Mon Sep 17 00:00:00 2001
From: Artem Pikulin <ortgma@gmail.com>
Date: Mon, 12 Mar 2018 17:57:12 +0700
Subject: [PATCH] Use secp256k1 functions definitions from cpp-ethereum.

---
 iguana/exchanges/CMakeLists.txt | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/iguana/exchanges/CMakeLists.txt b/iguana/exchanges/CMakeLists.txt
index dd97fb81a..5d9baa819 100644
--- a/iguana/exchanges/CMakeLists.txt
+++ b/iguana/exchanges/CMakeLists.txt
@@ -1,10 +1,6 @@
 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
 set(MM_SOURCES mm.c ../mini-gmp.c ../groestl.c ../segwit_addr.c ../keccak.c)
-if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
-    set(MM_LIBS ${NANOMSG_LIBRARY} curl pthread libcrypto777 libjpeg libsecp256k1)
-else()
-    set(MM_LIBS ${NANOMSG_LIBRARY} curl pthread libcrypto777 libjpeg libsecp256k1)
-endif()
+set(MM_LIBS ${NANOMSG_LIBRARY} curl pthread libcrypto777 libjpeg libsecp256k1)
 add_executable(marketmaker-testnet ${MM_SOURCES})
 add_executable(marketmaker-mainnet ${MM_SOURCES})
 include_directories(../../crypto777)