2009-02-02 17:44:46 +03:00
|
|
|
include(CheckIncludeFile)
|
2015-11-25 02:05:49 +03:00
|
|
|
include(CheckIncludeFiles)
|
2009-02-02 17:44:46 +03:00
|
|
|
include(CheckSymbolExists)
|
|
|
|
include(CheckFunctionExists)
|
|
|
|
include(CheckLibraryExists)
|
|
|
|
include(CheckTypeSize)
|
2018-09-17 08:29:48 +03:00
|
|
|
include(CheckStructHasMember)
|
2009-07-23 11:25:36 +04:00
|
|
|
include(TestBigEndian)
|
2009-02-02 17:44:46 +03:00
|
|
|
|
2018-08-13 14:44:20 +03:00
|
|
|
set(PACKAGE ${PROJECT_NAME})
|
|
|
|
set(VERSION ${PROJECT_VERSION})
|
2019-07-03 11:10:18 +03:00
|
|
|
set(SYSCONFDIR ${CMAKE_INSTALL_SYSCONFDIR})
|
2009-02-02 17:44:46 +03:00
|
|
|
|
|
|
|
set(BINARYDIR ${CMAKE_BINARY_DIR})
|
|
|
|
set(SOURCEDIR ${CMAKE_SOURCE_DIR})
|
|
|
|
|
2010-09-05 14:55:02 +04:00
|
|
|
function(COMPILER_DUMPVERSION _OUTPUT_VERSION)
|
2010-10-19 13:50:01 +04:00
|
|
|
# Remove whitespaces from the argument.
|
|
|
|
# This is needed for CC="ccache gcc" cmake ..
|
|
|
|
string(REPLACE " " "" _C_COMPILER_ARG "${CMAKE_C_COMPILER_ARG1}")
|
|
|
|
|
2010-09-05 14:55:02 +04:00
|
|
|
execute_process(
|
|
|
|
COMMAND
|
2010-10-19 13:50:01 +04:00
|
|
|
${CMAKE_C_COMPILER} ${_C_COMPILER_ARG} -dumpversion
|
2010-09-05 14:55:02 +04:00
|
|
|
OUTPUT_VARIABLE _COMPILER_VERSION
|
|
|
|
)
|
|
|
|
|
|
|
|
string(REGEX REPLACE "([0-9])\\.([0-9])(\\.[0-9])?" "\\1\\2"
|
2010-12-31 16:41:50 +03:00
|
|
|
_COMPILER_VERSION "${_COMPILER_VERSION}")
|
2010-09-05 14:55:02 +04:00
|
|
|
|
|
|
|
set(${_OUTPUT_VERSION} ${_COMPILER_VERSION} PARENT_SCOPE)
|
|
|
|
endfunction()
|
|
|
|
|
2010-12-31 16:35:06 +03:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCC AND NOT MINGW AND NOT OS2)
|
2010-09-05 14:55:02 +04:00
|
|
|
compiler_dumpversion(GNUCC_VERSION)
|
2010-09-05 15:11:19 +04:00
|
|
|
if (NOT GNUCC_VERSION EQUAL 34)
|
2012-10-14 20:39:30 +04:00
|
|
|
set(CMAKE_REQUIRED_FLAGS "-fvisibility=hidden")
|
|
|
|
check_c_source_compiles(
|
|
|
|
"void __attribute__((visibility(\"default\"))) test() {}
|
|
|
|
int main(void){ return 0; }
|
|
|
|
" WITH_VISIBILITY_HIDDEN)
|
2018-06-30 16:15:51 +03:00
|
|
|
unset(CMAKE_REQUIRED_FLAGS)
|
2010-09-05 15:11:19 +04:00
|
|
|
endif (NOT GNUCC_VERSION EQUAL 34)
|
2010-12-31 16:35:06 +03:00
|
|
|
endif(CMAKE_COMPILER_IS_GNUCC AND NOT MINGW AND NOT OS2)
|
2009-08-11 19:10:00 +04:00
|
|
|
|
2009-02-02 17:44:46 +03:00
|
|
|
# HEADER FILES
|
2016-03-17 12:42:52 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${ARGP_INCLUDE_DIR})
|
2009-11-03 23:04:36 +03:00
|
|
|
check_include_file(argp.h HAVE_ARGP_H)
|
2018-06-30 16:15:51 +03:00
|
|
|
unset(CMAKE_REQUIRED_INCLUDES)
|
2016-03-15 00:27:06 +03:00
|
|
|
|
2009-02-02 17:44:46 +03:00
|
|
|
check_include_file(pty.h HAVE_PTY_H)
|
2014-02-16 16:22:50 +04:00
|
|
|
check_include_file(utmp.h HAVE_UTMP_H)
|
2011-04-08 13:02:25 +04:00
|
|
|
check_include_file(termios.h HAVE_TERMIOS_H)
|
2013-07-22 12:41:58 +04:00
|
|
|
check_include_file(unistd.h HAVE_UNISTD_H)
|
2018-02-28 19:24:51 +03:00
|
|
|
check_include_file(stdint.h HAVE_STDINT_H)
|
2013-11-03 17:09:28 +04:00
|
|
|
check_include_file(util.h HAVE_UTIL_H)
|
2014-02-14 13:32:17 +04:00
|
|
|
check_include_file(libutil.h HAVE_LIBUTIL_H)
|
2014-12-17 21:39:18 +03:00
|
|
|
check_include_file(sys/time.h HAVE_SYS_TIME_H)
|
2016-11-06 13:52:12 +03:00
|
|
|
check_include_file(sys/utime.h HAVE_SYS_UTIME_H)
|
2015-04-10 14:06:43 +03:00
|
|
|
check_include_file(sys/param.h HAVE_SYS_PARAM_H)
|
2015-04-10 14:02:26 +03:00
|
|
|
check_include_file(arpa/inet.h HAVE_ARPA_INET_H)
|
2015-10-14 21:45:49 +03:00
|
|
|
check_include_file(byteswap.h HAVE_BYTESWAP_H)
|
2017-12-11 17:37:02 +03:00
|
|
|
check_include_file(glob.h HAVE_GLOB_H)
|
2017-06-09 23:47:36 +03:00
|
|
|
check_include_file(valgrind/valgrind.h HAVE_VALGRIND_VALGRIND_H)
|
2011-04-08 13:02:25 +04:00
|
|
|
|
2009-08-20 13:50:49 +04:00
|
|
|
if (WIN32)
|
2016-11-06 13:57:52 +03:00
|
|
|
check_include_file(io.h HAVE_IO_H)
|
|
|
|
|
2012-09-20 13:30:32 +04:00
|
|
|
check_include_files("winsock2.h;ws2tcpip.h;wspiapi.h" HAVE_WSPIAPI_H)
|
2009-08-20 14:32:35 +04:00
|
|
|
if (NOT HAVE_WSPIAPI_H)
|
|
|
|
message(STATUS "WARNING: Without wspiapi.h, this build will only work on Windows XP and newer versions")
|
|
|
|
endif (NOT HAVE_WSPIAPI_H)
|
2012-09-20 13:30:32 +04:00
|
|
|
check_include_files("winsock2.h;ws2tcpip.h" HAVE_WS2TCPIP_H)
|
2009-08-20 13:50:49 +04:00
|
|
|
endif (WIN32)
|
2009-02-02 17:44:46 +03:00
|
|
|
|
2015-07-03 11:51:36 +03:00
|
|
|
if (OPENSSL_FOUND)
|
2015-07-03 12:38:58 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
2015-07-03 11:51:36 +03:00
|
|
|
check_include_file(openssl/des.h HAVE_OPENSSL_DES_H)
|
|
|
|
if (NOT HAVE_OPENSSL_DES_H)
|
|
|
|
message(FATAL_ERROR "Could not detect openssl/des.h")
|
|
|
|
endif()
|
|
|
|
|
2015-07-03 12:38:58 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
2015-07-03 11:51:36 +03:00
|
|
|
check_include_file(openssl/aes.h HAVE_OPENSSL_AES_H)
|
|
|
|
if (NOT HAVE_OPENSSL_AES_H)
|
|
|
|
message(FATAL_ERROR "Could not detect openssl/aes.h")
|
|
|
|
endif()
|
|
|
|
|
2018-12-16 15:32:42 +03:00
|
|
|
if (WITH_BLOWFISH_CIPHER)
|
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
check_include_file(openssl/blowfish.h HAVE_OPENSSL_BLOWFISH_H)
|
|
|
|
endif()
|
2015-07-03 11:51:36 +03:00
|
|
|
|
2015-07-03 12:38:58 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
2015-07-03 11:51:36 +03:00
|
|
|
check_include_file(openssl/ecdh.h HAVE_OPENSSL_ECDH_H)
|
|
|
|
|
2015-07-03 12:38:58 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
2015-07-03 11:51:36 +03:00
|
|
|
check_include_file(openssl/ec.h HAVE_OPENSSL_EC_H)
|
|
|
|
|
2015-07-03 12:38:58 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
2015-07-03 11:51:36 +03:00
|
|
|
check_include_file(openssl/ecdsa.h HAVE_OPENSSL_ECDSA_H)
|
2015-09-25 12:51:45 +03:00
|
|
|
|
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
2015-09-25 13:00:25 +03:00
|
|
|
check_function_exists(EVP_aes_128_ctr HAVE_OPENSSL_EVP_AES_CTR)
|
2015-09-25 12:51:45 +03:00
|
|
|
|
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
2015-09-25 13:00:25 +03:00
|
|
|
check_function_exists(EVP_aes_128_cbc HAVE_OPENSSL_EVP_AES_CBC)
|
2015-09-25 12:51:45 +03:00
|
|
|
|
2018-10-08 14:24:49 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
|
|
|
check_function_exists(EVP_aes_128_gcm HAVE_OPENSSL_EVP_AES_GCM)
|
|
|
|
|
2016-11-06 14:07:32 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
|
|
|
check_function_exists(CRYPTO_THREADID_set_callback HAVE_OPENSSL_CRYPTO_THREADID_SET_CALLBACK)
|
2016-11-06 17:43:31 +03:00
|
|
|
|
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
|
|
|
check_function_exists(CRYPTO_ctr128_encrypt HAVE_OPENSSL_CRYPTO_CTR128_ENCRYPT)
|
2017-02-23 18:54:26 +03:00
|
|
|
|
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
|
|
|
check_function_exists(EVP_CIPHER_CTX_new HAVE_OPENSSL_EVP_CIPHER_CTX_NEW)
|
2018-06-30 16:15:51 +03:00
|
|
|
|
2018-10-02 01:00:01 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
|
|
|
check_function_exists(EVP_KDF_CTX_new_id HAVE_OPENSSL_EVP_KDF_CTX_NEW_ID)
|
|
|
|
|
2019-07-03 18:49:07 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
|
|
|
check_function_exists(FIPS_mode HAVE_OPENSSL_FIPS_MODE)
|
|
|
|
|
2018-07-05 09:56:33 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
|
|
|
check_function_exists(RAND_priv_bytes HAVE_OPENSSL_RAND_PRIV_BYTES)
|
|
|
|
|
2019-08-07 15:08:53 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
|
|
|
check_function_exists(EVP_DigestSign HAVE_OPENSSL_EVP_DIGESTSIGN)
|
|
|
|
|
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
|
|
|
check_function_exists(EVP_DigestVerify HAVE_OPENSSL_EVP_DIGESTVERIFY)
|
|
|
|
|
2017-06-09 23:47:36 +03:00
|
|
|
check_function_exists(OPENSSL_ia32cap_loc HAVE_OPENSSL_IA32CAP_LOC)
|
|
|
|
|
2019-08-06 19:43:21 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
2019-11-05 18:17:22 +03:00
|
|
|
check_symbol_exists(EVP_PKEY_ED25519 "openssl/evp.h" FOUND_OPENSSL_ED25519)
|
|
|
|
|
|
|
|
if (HAVE_OPENSSL_EVP_DIGESTSIGN AND HAVE_OPENSSL_EVP_DIGESTVERIFY AND
|
|
|
|
FOUND_OPENSSL_ED25519)
|
|
|
|
set(HAVE_OPENSSL_ED25519 1)
|
|
|
|
endif()
|
2019-08-06 19:43:21 +03:00
|
|
|
|
2019-08-29 18:20:40 +03:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${OPENSSL_CRYPTO_LIBRARY})
|
|
|
|
check_symbol_exists(EVP_PKEY_X25519 "openssl/evp.h" HAVE_OPENSSL_X25519)
|
|
|
|
|
2018-06-30 16:15:51 +03:00
|
|
|
unset(CMAKE_REQUIRED_INCLUDES)
|
|
|
|
unset(CMAKE_REQUIRED_LIBRARIES)
|
2015-07-03 11:51:36 +03:00
|
|
|
endif()
|
2011-08-30 02:44:46 +04:00
|
|
|
|
2010-09-01 17:15:17 +04:00
|
|
|
if (CMAKE_HAVE_PTHREAD_H)
|
|
|
|
set(HAVE_PTHREAD_H 1)
|
|
|
|
endif (CMAKE_HAVE_PTHREAD_H)
|
2010-09-01 16:07:45 +04:00
|
|
|
|
2017-12-28 13:10:43 +03:00
|
|
|
if (NOT WITH_GCRYPT AND NOT WITH_MBEDTLS)
|
2012-10-12 19:07:00 +04:00
|
|
|
if (HAVE_OPENSSL_EC_H AND HAVE_OPENSSL_ECDSA_H)
|
|
|
|
set(HAVE_OPENSSL_ECC 1)
|
|
|
|
endif (HAVE_OPENSSL_EC_H AND HAVE_OPENSSL_ECDSA_H)
|
|
|
|
|
|
|
|
if (HAVE_OPENSSL_ECC)
|
|
|
|
set(HAVE_ECC 1)
|
|
|
|
endif (HAVE_OPENSSL_ECC)
|
2017-12-28 13:10:43 +03:00
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (NOT WITH_MBEDTLS)
|
|
|
|
set(HAVE_DSA 1)
|
2018-06-09 02:18:06 +03:00
|
|
|
endif (NOT WITH_MBEDTLS)
|
2011-08-30 02:44:46 +04:00
|
|
|
|
2009-02-02 17:44:46 +03:00
|
|
|
# FUNCTIONS
|
2009-08-21 17:15:18 +04:00
|
|
|
|
2013-10-30 20:30:07 +04:00
|
|
|
check_function_exists(isblank HAVE_ISBLANK)
|
2010-09-02 13:50:21 +04:00
|
|
|
check_function_exists(strncpy HAVE_STRNCPY)
|
2018-08-29 19:41:15 +03:00
|
|
|
check_function_exists(strndup HAVE_STRNDUP)
|
2016-11-06 13:40:48 +03:00
|
|
|
check_function_exists(strtoull HAVE_STRTOULL)
|
2018-02-12 16:35:55 +03:00
|
|
|
check_function_exists(explicit_bzero HAVE_EXPLICIT_BZERO)
|
2018-03-03 00:01:00 +03:00
|
|
|
check_function_exists(memset_s HAVE_MEMSET_S)
|
2015-12-30 14:19:36 +03:00
|
|
|
|
2017-12-11 17:37:02 +03:00
|
|
|
if (HAVE_GLOB_H)
|
2018-09-17 08:29:48 +03:00
|
|
|
check_struct_has_member(glob_t gl_flags glob.h HAVE_GLOB_GL_FLAGS_MEMBER)
|
|
|
|
check_function_exists(glob HAVE_GLOB)
|
2017-12-11 17:37:02 +03:00
|
|
|
endif (HAVE_GLOB_H)
|
|
|
|
|
2015-12-10 22:21:40 +03:00
|
|
|
if (NOT WIN32)
|
|
|
|
check_function_exists(vsnprintf HAVE_VSNPRINTF)
|
|
|
|
check_function_exists(snprintf HAVE_SNPRINTF)
|
|
|
|
endif (NOT WIN32)
|
2010-09-02 13:50:21 +04:00
|
|
|
|
|
|
|
if (WIN32)
|
2015-12-10 22:21:40 +03:00
|
|
|
check_symbol_exists(vsnprintf "stdio.h" HAVE_VSNPRINTF)
|
|
|
|
check_symbol_exists(snprintf "stdio.h" HAVE_SNPRINTF)
|
2013-07-22 10:44:04 +04:00
|
|
|
|
2015-12-10 22:21:40 +03:00
|
|
|
check_symbol_exists(_vsnprintf_s "stdio.h" HAVE__VSNPRINTF_S)
|
|
|
|
check_symbol_exists(_vsnprintf "stdio.h" HAVE__VSNPRINTF)
|
|
|
|
check_symbol_exists(_snprintf "stdio.h" HAVE__SNPRINTF)
|
|
|
|
check_symbol_exists(_snprintf_s "stdio.h" HAVE__SNPRINTF_S)
|
2013-07-27 12:52:56 +04:00
|
|
|
|
|
|
|
if (HAVE_WSPIAPI_H OR HAVE_WS2TCPIP_H)
|
2015-04-02 10:11:21 +03:00
|
|
|
check_symbol_exists(ntohll winsock2.h HAVE_NTOHLL)
|
|
|
|
check_symbol_exists(htonll winsock2.h HAVE_HTONLL)
|
|
|
|
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ws2_32)
|
|
|
|
check_symbol_exists(select "winsock2.h;ws2tcpip.h" HAVE_SELECT)
|
|
|
|
check_symbol_exists(poll "winsock2.h;ws2tcpip.h" HAVE_SELECT)
|
|
|
|
# The getaddrinfo function is defined to the WspiapiGetAddrInfo inline function
|
|
|
|
check_symbol_exists(getaddrinfo "winsock2.h;ws2tcpip.h" HAVE_GETADDRINFO)
|
2018-06-30 16:15:51 +03:00
|
|
|
unset(CMAKE_REQUIRED_LIBRARIES)
|
2013-07-27 12:52:56 +04:00
|
|
|
endif (HAVE_WSPIAPI_H OR HAVE_WS2TCPIP_H)
|
|
|
|
|
2015-12-10 22:21:40 +03:00
|
|
|
check_function_exists(_strtoui64 HAVE__STRTOUI64)
|
|
|
|
|
2013-07-27 12:52:56 +04:00
|
|
|
set(HAVE_SELECT TRUE)
|
2018-03-03 00:01:01 +03:00
|
|
|
|
|
|
|
check_symbol_exists(SecureZeroMemory "windows.h" HAVE_SECURE_ZERO_MEMORY)
|
2015-04-02 10:11:21 +03:00
|
|
|
else (WIN32)
|
|
|
|
check_function_exists(poll HAVE_POLL)
|
|
|
|
check_function_exists(select HAVE_SELECT)
|
|
|
|
check_function_exists(getaddrinfo HAVE_GETADDRINFO)
|
|
|
|
|
|
|
|
check_symbol_exists(ntohll arpa/inet.h HAVE_NTOHLL)
|
|
|
|
check_symbol_exists(htonll arpa/inet.h HAVE_HTONLL)
|
2010-09-02 13:50:21 +04:00
|
|
|
endif (WIN32)
|
|
|
|
|
2015-04-02 10:11:21 +03:00
|
|
|
|
2009-08-20 13:50:49 +04:00
|
|
|
if (UNIX)
|
2010-09-08 13:19:22 +04:00
|
|
|
if (NOT LINUX)
|
|
|
|
# libsocket (Solaris)
|
|
|
|
check_library_exists(socket getaddrinfo "" HAVE_LIBSOCKET)
|
|
|
|
if (HAVE_LIBSOCKET)
|
2013-07-27 12:52:56 +04:00
|
|
|
set(HAVE_GETADDRINFO TRUE)
|
2018-06-30 16:15:51 +03:00
|
|
|
set(_REQUIRED_LIBRARIES ${_REQUIRED_LIBRARIES} socket)
|
2010-09-08 13:19:22 +04:00
|
|
|
endif (HAVE_LIBSOCKET)
|
2011-02-13 15:22:25 +03:00
|
|
|
|
|
|
|
# libnsl/inet_pton (Solaris)
|
|
|
|
check_library_exists(nsl inet_pton "" HAVE_LIBNSL)
|
|
|
|
if (HAVE_LIBNSL)
|
2018-06-30 16:15:51 +03:00
|
|
|
set(_REQUIRED_LIBRARIES ${_REQUIRED_LIBRARIES} nsl)
|
2011-02-13 15:22:25 +03:00
|
|
|
endif (HAVE_LIBNSL)
|
|
|
|
|
2010-09-08 13:19:22 +04:00
|
|
|
# librt
|
2011-02-13 15:22:25 +03:00
|
|
|
check_library_exists(rt nanosleep "" HAVE_LIBRT)
|
2010-09-08 13:19:22 +04:00
|
|
|
endif (NOT LINUX)
|
|
|
|
|
2011-05-26 00:08:31 +04:00
|
|
|
check_library_exists(rt clock_gettime "" HAVE_CLOCK_GETTIME)
|
|
|
|
if (HAVE_LIBRT OR HAVE_CLOCK_GETTIME)
|
2018-06-30 16:15:51 +03:00
|
|
|
set(_REQUIRED_LIBRARIES ${_REQUIRED_LIBRARIES} rt)
|
2011-05-26 00:08:31 +04:00
|
|
|
endif (HAVE_LIBRT OR HAVE_CLOCK_GETTIME)
|
|
|
|
|
2011-02-20 15:07:34 +03:00
|
|
|
check_library_exists(util forkpty "" HAVE_LIBUTIL)
|
2010-09-08 13:19:22 +04:00
|
|
|
check_function_exists(cfmakeraw HAVE_CFMAKERAW)
|
2012-12-03 17:00:06 +04:00
|
|
|
check_function_exists(__strtoull HAVE___STRTOULL)
|
2009-08-20 13:50:49 +04:00
|
|
|
endif (UNIX)
|
2009-10-01 12:19:07 +04:00
|
|
|
|
2018-06-30 16:15:51 +03:00
|
|
|
set(LIBSSH_REQUIRED_LIBRARIES ${_REQUIRED_LIBRARIES} CACHE INTERNAL "libssh required system libraries")
|
2009-02-02 17:44:46 +03:00
|
|
|
|
|
|
|
# LIBRARIES
|
2010-04-20 15:25:46 +04:00
|
|
|
if (OPENSSL_FOUND)
|
2009-02-02 17:44:46 +03:00
|
|
|
set(HAVE_LIBCRYPTO 1)
|
2010-04-20 15:25:46 +04:00
|
|
|
endif (OPENSSL_FOUND)
|
2009-02-02 17:44:46 +03:00
|
|
|
|
2009-05-07 19:07:54 +04:00
|
|
|
if (GCRYPT_FOUND)
|
2012-02-04 23:10:04 +04:00
|
|
|
set(HAVE_LIBGCRYPT 1)
|
|
|
|
if (GCRYPT_VERSION VERSION_GREATER "1.4.6")
|
2016-05-02 17:00:25 +03:00
|
|
|
set(HAVE_GCRYPT_ECC 1)
|
|
|
|
set(HAVE_ECC 1)
|
2012-02-04 23:10:04 +04:00
|
|
|
endif (GCRYPT_VERSION VERSION_GREATER "1.4.6")
|
2019-11-26 00:04:09 +03:00
|
|
|
if (NOT GCRYPT_VERSION VERSION_LESS "1.7.0")
|
|
|
|
set(HAVE_GCRYPT_CHACHA_POLY 1)
|
|
|
|
endif (NOT GCRYPT_VERSION VERSION_LESS "1.7.0")
|
2009-05-07 19:07:54 +04:00
|
|
|
endif (GCRYPT_FOUND)
|
2009-02-02 17:44:46 +03:00
|
|
|
|
2017-12-28 13:10:43 +03:00
|
|
|
if (MBEDTLS_FOUND)
|
|
|
|
set(HAVE_LIBMBEDCRYPTO 1)
|
|
|
|
set(HAVE_ECC 1)
|
|
|
|
endif (MBEDTLS_FOUND)
|
|
|
|
|
2014-02-03 14:58:36 +04:00
|
|
|
if (CMAKE_USE_PTHREADS_INIT)
|
|
|
|
set(HAVE_PTHREAD 1)
|
|
|
|
endif (CMAKE_USE_PTHREADS_INIT)
|
2010-09-01 17:15:17 +04:00
|
|
|
|
2018-11-21 15:59:42 +03:00
|
|
|
if (UNIT_TESTING)
|
|
|
|
if (CMOCKA_FOUND)
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${CMOCKA_LIBRARIES})
|
|
|
|
check_function_exists(cmocka_set_test_filter HAVE_CMOCKA_SET_TEST_FILTER)
|
|
|
|
unset(CMAKE_REQUIRED_LIBRARIES)
|
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
|
2009-03-29 00:43:53 +03:00
|
|
|
# OPTIONS
|
2013-07-14 14:34:30 +04:00
|
|
|
check_c_source_compiles("
|
|
|
|
__thread int tls;
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
return 0;
|
|
|
|
}" HAVE_GCC_THREAD_LOCAL_STORAGE)
|
|
|
|
|
|
|
|
check_c_source_compiles("
|
|
|
|
__declspec(thread) int tls;
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
return 0;
|
|
|
|
}" HAVE_MSC_THREAD_LOCAL_STORAGE)
|
|
|
|
|
2018-08-13 10:15:35 +03:00
|
|
|
###########################################################
|
|
|
|
# For detecting attributes we need to treat warnings as
|
|
|
|
# errors
|
2018-10-01 18:16:49 +03:00
|
|
|
if (UNIX OR MINGW)
|
2018-09-25 15:35:30 +03:00
|
|
|
# Get warnings for attributs
|
2018-10-01 18:16:49 +03:00
|
|
|
check_c_compiler_flag("-Wattributes" REQUIRED_FLAGS_WERROR)
|
2018-09-25 15:35:30 +03:00
|
|
|
if (REQUIRED_FLAGS_WERROR)
|
2018-10-01 18:16:49 +03:00
|
|
|
string(APPEND CMAKE_REQUIRED_FLAGS "-Wattributes ")
|
2018-09-25 15:35:30 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# Turn warnings into errors
|
2018-08-20 17:32:43 +03:00
|
|
|
check_c_compiler_flag("-Werror" REQUIRED_FLAGS_WERROR)
|
|
|
|
if (REQUIRED_FLAGS_WERROR)
|
2018-10-01 18:16:49 +03:00
|
|
|
string(APPEND CMAKE_REQUIRED_FLAGS "-Werror ")
|
2018-08-20 17:32:43 +03:00
|
|
|
endif()
|
2018-10-01 18:16:49 +03:00
|
|
|
endif ()
|
2018-08-13 10:15:35 +03:00
|
|
|
|
2018-08-13 10:21:17 +03:00
|
|
|
check_c_source_compiles("
|
|
|
|
void test_constructor_attribute(void) __attribute__ ((constructor));
|
|
|
|
|
|
|
|
void test_constructor_attribute(void)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
return 0;
|
|
|
|
}" HAVE_CONSTRUCTOR_ATTRIBUTE)
|
|
|
|
|
|
|
|
check_c_source_compiles("
|
|
|
|
void test_destructor_attribute(void) __attribute__ ((destructor));
|
|
|
|
|
|
|
|
void test_destructor_attribute(void)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
return 0;
|
|
|
|
}" HAVE_DESTRUCTOR_ATTRIBUTE)
|
|
|
|
|
2017-08-25 11:00:08 +03:00
|
|
|
check_c_source_compiles("
|
|
|
|
#define FALL_THROUGH __attribute__((fallthrough))
|
|
|
|
|
|
|
|
int main(void) {
|
2018-08-13 10:15:35 +03:00
|
|
|
int i = 2;
|
2017-08-25 11:00:08 +03:00
|
|
|
|
2018-08-13 10:15:35 +03:00
|
|
|
switch (i) {
|
|
|
|
case 0:
|
2017-08-25 11:00:08 +03:00
|
|
|
FALL_THROUGH;
|
2018-08-13 10:15:35 +03:00
|
|
|
case 1:
|
2017-08-25 11:00:08 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}" HAVE_FALLTHROUGH_ATTRIBUTE)
|
|
|
|
|
2018-11-30 19:49:29 +03:00
|
|
|
if (NOT WIN32)
|
|
|
|
check_c_source_compiles("
|
|
|
|
#define __unused __attribute__((unused))
|
2018-11-30 19:37:07 +03:00
|
|
|
|
2018-11-30 19:49:29 +03:00
|
|
|
static int do_nothing(int i __unused)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2018-11-30 19:37:07 +03:00
|
|
|
|
2018-11-30 19:49:29 +03:00
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
int i;
|
2018-11-30 19:37:07 +03:00
|
|
|
|
2018-11-30 19:49:29 +03:00
|
|
|
i = do_nothing(5);
|
|
|
|
if (i > 5) {
|
|
|
|
return 1;
|
|
|
|
}
|
2018-11-30 19:37:07 +03:00
|
|
|
|
2018-11-30 19:49:29 +03:00
|
|
|
return 0;
|
|
|
|
}" HAVE_UNUSED_ATTRIBUTE)
|
|
|
|
endif()
|
2018-11-30 19:37:07 +03:00
|
|
|
|
2013-07-22 12:18:33 +04:00
|
|
|
check_c_source_compiles("
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
char buf[] = \"This is some content\";
|
|
|
|
|
2018-03-02 19:55:51 +03:00
|
|
|
memset(buf, '\\\\0', sizeof(buf)); __asm__ volatile(\"\" : : \"g\"(&buf) : \"memory\");
|
2013-07-22 12:18:33 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}" HAVE_GCC_VOLATILE_MEMORY_PROTECTION)
|
|
|
|
|
2015-04-02 14:41:02 +03:00
|
|
|
check_c_source_compiles("
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
|
|
printf(\"%s\", __func__);
|
|
|
|
return 0;
|
|
|
|
}" HAVE_COMPILER__FUNC__)
|
|
|
|
|
|
|
|
check_c_source_compiles("
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
|
|
printf(\"%s\", __FUNCTION__);
|
|
|
|
return 0;
|
|
|
|
}" HAVE_COMPILER__FUNCTION__)
|
|
|
|
|
2018-11-02 18:42:06 +03:00
|
|
|
# This is only available with OpenBSD's gcc implementation */
|
|
|
|
if (OPENBSD)
|
2018-02-28 19:24:52 +03:00
|
|
|
check_c_source_compiles("
|
2018-08-13 10:14:15 +03:00
|
|
|
#define ARRAY_LEN 16
|
|
|
|
void test_attr(const unsigned char *k)
|
|
|
|
__attribute__((__bounded__(__minbytes__, 2, 16)));
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
return 0;
|
|
|
|
}" HAVE_GCC_BOUNDED_ATTRIBUTE)
|
2018-11-02 18:42:06 +03:00
|
|
|
endif(OPENBSD)
|
2018-02-28 19:24:52 +03:00
|
|
|
|
2018-08-16 18:45:56 +03:00
|
|
|
# Stop treating warnings as errors
|
|
|
|
unset(CMAKE_REQUIRED_FLAGS)
|
|
|
|
|
2018-08-24 16:36:43 +03:00
|
|
|
# Check for version script support
|
|
|
|
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/conftest.map" "VERS_1 {
|
|
|
|
global: sym;
|
|
|
|
};
|
|
|
|
VERS_2 {
|
|
|
|
global: sym;
|
|
|
|
} VERS_1;
|
|
|
|
")
|
|
|
|
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "-Wl,--version-script=\"${CMAKE_CURRENT_BINARY_DIR}/conftest.map\"")
|
|
|
|
check_c_source_compiles("int main(void) { return 0; }" HAVE_LD_VERSION_SCRIPT)
|
|
|
|
unset(CMAKE_REQUIRED_FLAGS)
|
|
|
|
file(REMOVE "${CMAKE_CURRENT_BINARY_DIR}/conftest.map")
|
|
|
|
|
2009-04-16 19:47:15 +04:00
|
|
|
if (WITH_DEBUG_CRYPTO)
|
|
|
|
set(DEBUG_CRYPTO 1)
|
|
|
|
endif (WITH_DEBUG_CRYPTO)
|
|
|
|
|
2018-02-28 19:24:48 +03:00
|
|
|
if (WITH_DEBUG_PACKET)
|
|
|
|
set(DEBUG_PACKET 1)
|
|
|
|
endif (WITH_DEBUG_PACKET)
|
|
|
|
|
2009-08-12 12:08:20 +04:00
|
|
|
if (WITH_DEBUG_CALLTRACE)
|
|
|
|
set(DEBUG_CALLTRACE 1)
|
|
|
|
endif (WITH_DEBUG_CALLTRACE)
|
|
|
|
|
2013-07-24 22:02:49 +04:00
|
|
|
if (WITH_GSSAPI AND NOT GSSAPI_FOUND)
|
2013-07-22 12:31:11 +04:00
|
|
|
set(WITH_GSSAPI 0)
|
2013-07-24 22:02:49 +04:00
|
|
|
endif (WITH_GSSAPI AND NOT GSSAPI_FOUND)
|
2013-07-22 12:31:11 +04:00
|
|
|
|
2019-12-10 20:19:59 +03:00
|
|
|
if (WITH_PKCS11_URI)
|
|
|
|
if (WITH_GCRYPT)
|
|
|
|
message(FATAL_ERROR "PKCS #11 is not supported for gcrypt.")
|
|
|
|
set(WITH_PKCS11_URI 0)
|
|
|
|
endif()
|
|
|
|
if (WITH_WITH_MBEDTLS)
|
|
|
|
message(FATAL_ERROR "PKCS #11 is not supported for mbedcrypto")
|
|
|
|
set(WITH_PKCS11_URI 0)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2009-07-23 11:25:36 +04:00
|
|
|
# ENDIAN
|
2010-07-13 18:07:52 +04:00
|
|
|
if (NOT WIN32)
|
|
|
|
test_big_endian(WORDS_BIGENDIAN)
|
|
|
|
endif (NOT WIN32)
|