From 70512e7d763720d5fb2ce5c86001827606d24ac9 Mon Sep 17 00:00:00 2001 From: Marek Kotewicz Date: Tue, 5 May 2015 00:20:07 +0200 Subject: [PATCH] fixes for linux --- cmake/Findv8.cmake | 8 +------- libjsconsole/JSConsole.cpp | 3 ++- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/cmake/Findv8.cmake b/cmake/Findv8.cmake index cc1cab8a3..2451c708f 100644 --- a/cmake/Findv8.cmake +++ b/cmake/Findv8.cmake @@ -22,14 +22,8 @@ find_library( DOC "v8 library" ) -find_library( - V8_BASE_LIBRARY - NAMES v8_base - DOC "v8 base library" -) - set(V8_INCLUDE_DIRS ${V8_INCLUDE_DIR}) -set(V8_LIBRARIES ${V8_LIBRARY} ${V8_BASE_LIBRARY}) +set(V8_LIBRARIES ${V8_LIBRARY}) # debug library on windows # same naming convention as in qt (appending debug library with d) diff --git a/libjsconsole/JSConsole.cpp b/libjsconsole/JSConsole.cpp index 284fba4e3..c59c1e198 100644 --- a/libjsconsole/JSConsole.cpp +++ b/libjsconsole/JSConsole.cpp @@ -26,8 +26,9 @@ #include "JSV8Connector.h" #include "libjsconsole/JSConsoleResources.hpp" -// TODO: readline! +// TODO! make readline optional! #include +#include using namespace std; using namespace dev;