From 75b137ebe394b8788826951ce10fc19706adc6bc Mon Sep 17 00:00:00 2001 From: "John M. Jones" Date: Fri, 9 Mar 2018 14:15:23 -0500 Subject: [PATCH] Replace readline library, Issue 673 (#685) * upgrade to latest fc * Removed references to readline library --- CMakeLists.txt | 6 ------ libraries/fc | 2 +- programs/cli_wallet/CMakeLists.txt | 2 +- 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 49abfd29d6..5e91e80b57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -104,12 +104,6 @@ if( WIN32 ) else( WIN32 ) # Apple AND Linux - find_library(READLINE_LIBRARIES NAMES readline) - find_path(READLINE_INCLUDE_DIR readline/readline.h) - #if(NOT READLINE_INCLUDE_DIR OR NOT READLINE_LIBRARIES) - # MESSAGE(FATAL_ERROR "Could not find lib readline.") - #endif() - if( APPLE ) # Apple Specific Options Here message( STATUS "Configuring BitShares on OS X" ) diff --git a/libraries/fc b/libraries/fc index a1e1599f97..628548ca02 160000 --- a/libraries/fc +++ b/libraries/fc @@ -1 +1 @@ -Subproject commit a1e1599f97a42abf144427966fdfc997583e81f5 +Subproject commit 628548ca02d978f36e7cc5d4a8fbb37de20c52f5 diff --git a/programs/cli_wallet/CMakeLists.txt b/programs/cli_wallet/CMakeLists.txt index 140bdce32e..689601712f 100644 --- a/programs/cli_wallet/CMakeLists.txt +++ b/programs/cli_wallet/CMakeLists.txt @@ -10,7 +10,7 @@ if( GPERFTOOLS_FOUND ) endif() target_link_libraries( cli_wallet - PRIVATE graphene_app graphene_net graphene_chain graphene_egenesis_brief graphene_utilities graphene_wallet fc ${CMAKE_DL_LIBS} ${PLATFORM_SPECIFIC_LIBS} ) + PRIVATE graphene_app graphene_net graphene_chain graphene_egenesis_brief graphene_utilities graphene_wallet fc ${CMAKE_DL_LIBS} ${PLATFORM_SPECIFIC_LIBS} ) if(MSVC) set_source_files_properties( main.cpp PROPERTIES COMPILE_FLAGS "/bigobj" )