mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 04:55:48 +03:00
Require OpenSSL > 1.0.0, remove obsolete dep from csync
This commit is contained in:
parent
21345b81f1
commit
59bdda6226
2 changed files with 1 additions and 4 deletions
|
@ -139,7 +139,7 @@ endif()
|
|||
if (USE_NEON)
|
||||
find_package(Neon REQUIRED)
|
||||
endif(USE_NEON)
|
||||
find_package(OpenSSL)
|
||||
find_package(OpenSSL 1.0.0 REQUIRED)
|
||||
|
||||
if(NOT TOKEN_AUTH_ONLY)
|
||||
if (Qt5Core_DIR)
|
||||
|
|
|
@ -68,7 +68,6 @@ if(USE_NEON)
|
|||
)
|
||||
list(APPEND CSYNC_LINK_LIBRARIES
|
||||
${NEON_LIBRARIES}
|
||||
${CRYPTO_LIBRARY}
|
||||
)
|
||||
include_directories(${NEON_INCLUDE_DIRS})
|
||||
add_definitions(-DUSE_NEON)
|
||||
|
@ -95,8 +94,6 @@ include_directories(
|
|||
${CSYNC_PRIVATE_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
FIND_LIBRARY(CRYPTO_LIBRARY NAMES crypto)
|
||||
|
||||
add_library(${CSYNC_LIBRARY} SHARED ${csync_SRCS})
|
||||
#add_library(${CSYNC_LIBRARY}_static STATIC ${csync_SRCS})
|
||||
|
||||
|
|
Loading…
Reference in a new issue