Compile libssh with nacl if possible
Conflicts: DefineOptions.cmake
Этот коммит содержится в:
родитель
04cb94a2dd
Коммит
f565aeebfa
@ -71,6 +71,13 @@ if (WITH_GSSAPI)
|
|||||||
find_package(GSSAPI)
|
find_package(GSSAPI)
|
||||||
endif (WITH_GSSAPI)
|
endif (WITH_GSSAPI)
|
||||||
|
|
||||||
|
if (WITH_NACL)
|
||||||
|
find_package(NaCl)
|
||||||
|
if (NOT NACL_FOUND)
|
||||||
|
set(WITH_NACL OFF)
|
||||||
|
endif (NOT NACL_FOUND)
|
||||||
|
endif (WITH_NACL)
|
||||||
|
|
||||||
# config.h checks
|
# config.h checks
|
||||||
include(ConfigureChecks.cmake)
|
include(ConfigureChecks.cmake)
|
||||||
configure_file(config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h)
|
configure_file(config.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config.h)
|
||||||
@ -125,6 +132,7 @@ message(STATUS "********** ${PROJECT_NAME} build options : **********")
|
|||||||
|
|
||||||
message(STATUS "zlib support: ${WITH_ZLIB}")
|
message(STATUS "zlib support: ${WITH_ZLIB}")
|
||||||
message(STATUS "libgcrypt support: ${WITH_GCRYPT}")
|
message(STATUS "libgcrypt support: ${WITH_GCRYPT}")
|
||||||
|
message(STATUS "libnacl support: ${WITH_NACL}")
|
||||||
message(STATUS "SSH-1 support: ${WITH_SSH1}")
|
message(STATUS "SSH-1 support: ${WITH_SSH1}")
|
||||||
message(STATUS "SFTP support: ${WITH_SFTP}")
|
message(STATUS "SFTP support: ${WITH_SFTP}")
|
||||||
message(STATUS "Server support : ${WITH_SERVER}")
|
message(STATUS "Server support : ${WITH_SERVER}")
|
||||||
|
@ -13,7 +13,7 @@ option(WITH_TESTING "Build with unit tests" OFF)
|
|||||||
option(WITH_CLIENT_TESTING "Build with client tests; requires a running sshd" OFF)
|
option(WITH_CLIENT_TESTING "Build with client tests; requires a running sshd" OFF)
|
||||||
option(WITH_BENCHMARKS "Build benchmarks tools" OFF)
|
option(WITH_BENCHMARKS "Build benchmarks tools" OFF)
|
||||||
option(WITH_EXAMPLES "Build examples" ON)
|
option(WITH_EXAMPLES "Build examples" ON)
|
||||||
|
option(WITH_NACL "Build with libnacl (curve25519" ON)
|
||||||
if (WITH_ZLIB)
|
if (WITH_ZLIB)
|
||||||
set(WITH_LIBZ ON)
|
set(WITH_LIBZ ON)
|
||||||
else (WITH_ZLIB)
|
else (WITH_ZLIB)
|
||||||
@ -27,3 +27,7 @@ endif(WITH_BENCHMARKS)
|
|||||||
if (WITH_TESTING)
|
if (WITH_TESTING)
|
||||||
set(WITH_STATIC_LIB ON)
|
set(WITH_STATIC_LIB ON)
|
||||||
endif (WITH_TESTING)
|
endif (WITH_TESTING)
|
||||||
|
|
||||||
|
if (WITH_NACL)
|
||||||
|
set(WITH_NACL ON)
|
||||||
|
endif (WITH_NACL)
|
61
cmake/Modules/FindNaCl.cmake
Обычный файл
61
cmake/Modules/FindNaCl.cmake
Обычный файл
@ -0,0 +1,61 @@
|
|||||||
|
# - Try to find NaCl
|
||||||
|
# Once done this will define
|
||||||
|
#
|
||||||
|
# NACL_FOUND - system has NaCl
|
||||||
|
# NACL_INCLUDE_DIRS - the NaCl include directory
|
||||||
|
# NACL_LIBRARIES - Link these to use NaCl
|
||||||
|
# NACL_DEFINITIONS - Compiler switches required for using NaCl
|
||||||
|
#
|
||||||
|
# Copyright (c) 2010 Andreas Schneider <asn@cynapses.org>
|
||||||
|
# Copyright (c) 2013 Aris Adamantiadis <aris@badcode.be>
|
||||||
|
#
|
||||||
|
# Redistribution and use is allowed according to the terms of the New
|
||||||
|
# BSD license.
|
||||||
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
if (NACL_LIBRARIES AND NACL_INCLUDE_DIRS)
|
||||||
|
# in cache already
|
||||||
|
set(NACL_FOUND TRUE)
|
||||||
|
else (NACL_LIBRARIES AND NACL_INCLUDE_DIRS)
|
||||||
|
|
||||||
|
find_path(NACL_INCLUDE_DIR
|
||||||
|
NAMES
|
||||||
|
nacl/crypto_box_curve25519xsalsa20poly1305.h
|
||||||
|
PATHS
|
||||||
|
/usr/include
|
||||||
|
/usr/local/include
|
||||||
|
/opt/local/include
|
||||||
|
/sw/include
|
||||||
|
)
|
||||||
|
|
||||||
|
find_library(NACL_LIBRARY
|
||||||
|
NAMES
|
||||||
|
nacl
|
||||||
|
PATHS
|
||||||
|
/usr/lib
|
||||||
|
/usr/local/lib
|
||||||
|
/opt/local/lib
|
||||||
|
/sw/lib
|
||||||
|
)
|
||||||
|
|
||||||
|
set(NACL_INCLUDE_DIRS
|
||||||
|
${NACL_INCLUDE_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
if (NACL_LIBRARY)
|
||||||
|
set(NACL_LIBRARIES
|
||||||
|
${NACL_LIBRARIES}
|
||||||
|
${NACL_LIBRARY}
|
||||||
|
)
|
||||||
|
endif (NACL_LIBRARY)
|
||||||
|
|
||||||
|
include(FindPackageHandleStandardArgs)
|
||||||
|
find_package_handle_standard_args(NaCl DEFAULT_MSG NACL_LIBRARIES NACL_INCLUDE_DIRS)
|
||||||
|
|
||||||
|
# show the NACL_INCLUDE_DIRS and NACL_LIBRARIES variables only in the advanced view
|
||||||
|
mark_as_advanced(NACL_INCLUDE_DIRS NACL_LIBRARIES)
|
||||||
|
|
||||||
|
endif (NACL_LIBRARIES AND NACL_INCLUDE_DIRS)
|
||||||
|
|
@ -126,7 +126,6 @@
|
|||||||
/* Define to 1 if you have the `pthread' library (-lpthread). */
|
/* Define to 1 if you have the `pthread' library (-lpthread). */
|
||||||
#cmakedefine HAVE_PTHREAD 1
|
#cmakedefine HAVE_PTHREAD 1
|
||||||
|
|
||||||
|
|
||||||
/**************************** OPTIONS ****************************/
|
/**************************** OPTIONS ****************************/
|
||||||
|
|
||||||
#cmakedefine HAVE_GCC_THREAD_LOCAL_STORAGE 1
|
#cmakedefine HAVE_GCC_THREAD_LOCAL_STORAGE 1
|
||||||
@ -158,6 +157,9 @@
|
|||||||
/* Define to 1 if you want to enable calltrace debug output */
|
/* Define to 1 if you want to enable calltrace debug output */
|
||||||
#cmakedefine DEBUG_CALLTRACE 1
|
#cmakedefine DEBUG_CALLTRACE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable NaCl support */
|
||||||
|
#cmakedefine WITH_NACL 1
|
||||||
|
|
||||||
/*************************** ENDIAN *****************************/
|
/*************************** ENDIAN *****************************/
|
||||||
|
|
||||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user