Skip to content

Commit

Permalink
fixed build after updating code from upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
ohhmm committed May 28, 2013
1 parent d57bba9 commit cd4afc3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/lib/synergy/CClientApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ CClient*
CClientApp::openClient(const CString& name, const CBaseAddress& address, CScreen* screen, const CCryptoOptions& crypto)
{
ITransportFactory* transportFactory = ITransportFactory::createFactory(address.getAddressType());
CClient* client = new CClient(*EVENTQUEUE, name, address, transportFactory, NULL, screen, crypto);
CClient* client = new CClient(EVENTQUEUE, name, address, transportFactory, NULL, screen, crypto);

try {
EVENTQUEUE->adoptHandler(
Expand Down
14 changes: 6 additions & 8 deletions tools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,12 @@ if (WIN32)
list(APPEND cpp_src ${cpp_hdr})
endif()

file(GLOB cpp_ignore
${cpp_dir}/simple.cpp
${cpp_dir}/strciphr.cpp
${cpp_dir}/polynomi.cpp
${cpp_dir}/eprecomp.cpp
${cpp_dir}/eccrypto.cpp
${cpp_dir}/algebra.cpp)
list(REMOVE_ITEM cpp_src ${cpp_ignore})
list(REMOVE_ITEM cpp_src ${cpp_dir}/simple.cpp)
list(REMOVE_ITEM cpp_src ${cpp_dir}/strciphr.cpp)
list(REMOVE_ITEM cpp_src ${cpp_dir}/polynomi.cpp)
list(REMOVE_ITEM cpp_src ${cpp_dir}/eprecomp.cpp)
list(REMOVE_ITEM cpp_src ${cpp_dir}/eccrypto.cpp)
list(REMOVE_ITEM cpp_src ${cpp_dir}/algebra.cpp)

# if 64-bit windows, compile asm file.
if (CMAKE_CL_64)
Expand Down

0 comments on commit cd4afc3

Please sign in to comment.