2013-07-13 17:46:23 +04:00
|
|
|
option(WITH_GSSAPI "Build with GSSAPI support" ON)
|
2011-08-21 14:39:16 +04:00
|
|
|
option(WITH_ZLIB "Build with ZLIB support" ON)
|
2009-04-27 14:58:29 +04:00
|
|
|
option(WITH_SFTP "Build with SFTP support" ON)
|
2009-03-29 00:56:28 +03:00
|
|
|
option(WITH_SERVER "Build with SSH server support" ON)
|
2009-03-25 18:01:33 +03:00
|
|
|
option(WITH_STATIC_LIB "Build with a static library" OFF)
|
2009-08-12 12:08:20 +04:00
|
|
|
option(WITH_DEBUG_CRYPTO "Build with cryto debug output" OFF)
|
2018-02-28 19:24:48 +03:00
|
|
|
option(WITH_DEBUG_PACKET "Build with packet debug output" OFF)
|
2009-08-12 12:08:20 +04:00
|
|
|
option(WITH_DEBUG_CALLTRACE "Build with calltrace debug output" ON)
|
2009-09-26 01:31:48 +04:00
|
|
|
option(WITH_GCRYPT "Compile against libgcrypt" OFF)
|
2017-12-28 13:10:43 +03:00
|
|
|
option(WITH_MBEDTLS "Compile against libmbedtls" OFF)
|
2018-12-16 15:32:42 +03:00
|
|
|
option(WITH_BLOWFISH_CIPHER "Compile with blowfish support" OFF)
|
2009-11-27 20:18:12 +03:00
|
|
|
option(WITH_PCAP "Compile with Pcap generation support" ON)
|
2009-12-17 01:19:18 +03:00
|
|
|
option(WITH_INTERNAL_DOC "Compile doxygen internal documentation" OFF)
|
2018-06-29 11:29:02 +03:00
|
|
|
option(UNIT_TESTING "Build with unit tests" OFF)
|
2018-06-29 11:31:09 +03:00
|
|
|
option(CLIENT_TESTING "Build with client tests; requires openssh" OFF)
|
2018-06-29 11:49:14 +03:00
|
|
|
option(SERVER_TESTING "Build with server tests; requires openssh and dropbear" OFF)
|
2010-12-19 19:29:17 +03:00
|
|
|
option(WITH_BENCHMARKS "Build benchmarks tools" OFF)
|
2013-09-16 10:21:12 +04:00
|
|
|
option(WITH_EXAMPLES "Build examples" ON)
|
2018-02-04 13:49:13 +03:00
|
|
|
option(WITH_NACL "Build with libnacl (curve25519)" ON)
|
2018-05-14 16:55:06 +03:00
|
|
|
option(WITH_SYMBOL_VERSIONING "Build with symbol versioning" ON)
|
|
|
|
option(WITH_ABI_BREAK "Allow ABI break" OFF)
|
2019-02-02 18:49:05 +03:00
|
|
|
option(WITH_GEX "Enable DH Group exchange mechanisms" ON)
|
2018-02-04 13:49:13 +03:00
|
|
|
option(FUZZ_TESTING "Build with fuzzer for the server" OFF)
|
2018-08-20 17:03:41 +03:00
|
|
|
option(PICKY_DEVELOPER "Build with picky developer flags" OFF)
|
|
|
|
|
2011-08-21 14:39:16 +04:00
|
|
|
if (WITH_ZLIB)
|
2011-09-23 10:00:25 +04:00
|
|
|
set(WITH_LIBZ ON)
|
2011-08-21 14:39:16 +04:00
|
|
|
else (WITH_ZLIB)
|
2011-09-23 10:00:25 +04:00
|
|
|
set(WITH_LIBZ OFF)
|
2011-08-21 14:39:16 +04:00
|
|
|
endif (WITH_ZLIB)
|
|
|
|
|
2018-09-04 15:22:40 +03:00
|
|
|
if (WITH_BENCHMARKS)
|
2018-06-29 11:29:02 +03:00
|
|
|
set(UNIT_TESTING ON)
|
2018-09-04 15:22:40 +03:00
|
|
|
set(CLIENT_TESTING ON)
|
|
|
|
endif()
|
2010-12-28 15:50:34 +03:00
|
|
|
|
2018-08-13 11:27:17 +03:00
|
|
|
if (WITH_STATIC_LIB)
|
|
|
|
set(BUILD_STATIC_LIB ON)
|
|
|
|
endif (WITH_STATIC_LIB)
|
|
|
|
|
2018-06-29 11:29:02 +03:00
|
|
|
if (UNIT_TESTING)
|
2018-08-13 11:27:17 +03:00
|
|
|
set(BUILD_STATIC_LIB ON)
|
2018-06-29 11:29:02 +03:00
|
|
|
endif (UNIT_TESTING)
|
2013-09-22 01:32:51 +04:00
|
|
|
|
|
|
|
if (WITH_NACL)
|
|
|
|
set(WITH_NACL ON)
|
2018-02-04 13:49:13 +03:00
|
|
|
endif (WITH_NACL)
|
2018-05-14 16:55:06 +03:00
|
|
|
|
|
|
|
if (WITH_ABI_BREAK)
|
|
|
|
set(WITH_SYMBOL_VERSIONING ON)
|
|
|
|
endif (WITH_ABI_BREAK)
|
2019-03-11 17:56:06 +03:00
|
|
|
|
|
|
|
if (NOT GLOBAL_BIND_CONFIG)
|
|
|
|
set(GLOBAL_BIND_CONFIG "/etc/ssh/libssh_server_config")
|
|
|
|
endif (NOT GLOBAL_BIND_CONFIG)
|
2019-05-06 16:19:40 +03:00
|
|
|
|
|
|
|
if (NOT GLOBAL_CLIENT_CONFIG)
|
|
|
|
set(GLOBAL_CLIENT_CONFIG "/etc/ssh/ssh_config")
|
|
|
|
endif (NOT GLOBAL_CLIENT_CONFIG)
|