Buildsystem: Revert revision 4fb5181d88 (removes -lcrypto from worldserver/authserver linking, this SHOULD be handled -properly- by the OpenSSL-package already.

--HG--
branch : trunk
This commit is contained in:
click
2010-12-27 09:53:22 +01:00
parent 299118cd3a
commit 392c08ecdd
2 changed files with 2 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ if( NOT WIN32 )
endif()
if( UNIX )
set(authserver_LINK_FLAGS "-pthread -lcrypto ${authserver_LINK_FLAGS}")
set(authserver_LINK_FLAGS "-pthread ${authserver_LINK_FLAGS}")
endif()
if( CMAKE_SYSTEM_NAME MATCHES "Darwin" )

View File

@@ -152,7 +152,7 @@ endif()
add_dependencies(worldserver revision.h)
if( UNIX )
set(worldserver_LINK_FLAGS "-pthread -lncurses -lcrypto ${worldserver_LINK_FLAGS}")
set(worldserver_LINK_FLAGS "-pthread -lncurses ${worldserver_LINK_FLAGS}")
endif()
set_target_properties(worldserver PROPERTIES LINK_FLAGS "${worldserver_LINK_FLAGS}")