Browse Source

Avoid checking for boost python now.

cl-refactor
Gav Wood 11 years ago
parent
commit
dff4bad2a2
  1. 12
      alethzero/Main.ui
  2. 2
      libethereum/Client.cpp
  3. 4
      libpyserpent/CMakeLists.txt

12
alethzero/Main.ui

@ -485,7 +485,6 @@
<addaction name="connect"/>
<addaction name="preview"/>
<addaction name="mine"/>
<addaction name="paranoia"/>
</widget>
<widget class="QDockWidget" name="dockWidget_5">
<property name="sizePolicy">
@ -754,17 +753,6 @@
</layout>
</widget>
</widget>
<widget class="QToolBar" name="toolBar_2">
<property name="windowTitle">
<string>toolBar_2</string>
</property>
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
</widget>
<widget class="QDockWidget" name="dockWidget_6">
<property name="features">
<set>QDockWidget::DockWidgetFeatureMask</set>

2
libethereum/Client.cpp

@ -556,6 +556,6 @@ PastMessages Client::transactions(TransactionFilter const& _f) const
if (n == end)
break;
}
cdebug << (begin - n) << "searched; " << skipped << "skipped; " << falsePos << "false +ves";
// cdebug << (begin - n) << "searched; " << skipped << "skipped; " << falsePos << "false +ves";
return ret;
}

4
libpyserpent/CMakeLists.txt

@ -7,9 +7,6 @@ set(EXECUTABLE pyserpent)
# set(CMAKE_INSTALL_PREFIX ../lib)
add_library(${EXECUTABLE} SHARED ${SRC_LIST})
if (UNIX)
FIND_PACKAGE(Boost 1.53 REQUIRED COMPONENTS python)
endif()
file(GLOB HEADERS "*.h")
include_directories(..)
@ -21,7 +18,6 @@ target_link_libraries(${EXECUTABLE} ethential)
target_link_libraries(${EXECUTABLE} ${PYTHON_LS})
if("${TARGET_PLATFORM}" STREQUAL "w64")
target_link_libraries(${EXECUTABLE} boost_python_win32-mt-s)
target_link_libraries(${EXECUTABLE} boost_thread_win32-mt-s)
target_link_libraries(${EXECUTABLE} iphlpapi)
target_link_libraries(${EXECUTABLE} ws2_32)

Loading…
Cancel
Save