aboutsummaryrefslogtreecommitdiff
path: root/ConfigureChecks.cmake
blob: 9d81d51562eaece1cd839ac1a619b40ef7388526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
include(CheckIncludeFile)
include(CheckSymbolExists)
include(CheckFunctionExists)
include(CheckLibraryExists)
include(CheckTypeSize)
include(CheckCXXSourceCompiles)

set(PACKAGE ${APPLICATION_NAME})
set(VERSION ${APPLICATION_VERSION})
set(DATADIR ${DATA_INSTALL_DIR})
set(LIBDIR ${LIB_INSTALL_DIR})
set(PLUGINDIR "${PLUGIN_INSTALL_DIR}-${LIBRARY_SOVERSION}")
set(SYSCONFDIR ${SYSCONF_INSTALL_DIR})

set(BINARYDIR ${CMAKE_BINARY_DIR})
set(SOURCEDIR ${CMAKE_SOURCE_DIR})

# HEADER FILES
check_include_file(pty.h HAVE_PTY_H)
check_include_file(terminos.h HAVE_TERMIOS_H)

check_include_file(openssl/aes.h HAVE_OPENSSL_AES_H)
check_include_file(openssl/blowfish.h HAVE_OPENSSL_BLOWFISH_H)
check_include_file(openssl/des.h HAVE_OPENSSL_DES_H)

# FUNCTIONS
check_function_exists(cfmakeraw HAVE_CFMAKERAW)
check_function_exists(getaddrinfo HAVE_GETADDRINFO)
check_function_exists(gethostbyname HAVE_GETHOSTBYNAME)
check_function_exists(poll HAVE_POLL)
check_function_exists(select HAVE_SELECT)

# LIBRARIES
if (CRYPTO_LIBRARY)
  set(HAVE_LIBCRYPTO 1)
endif (CRYPTO_LIBRARY)

if (GCRYPT_LIBRARY)
  set(HAVE_LIBGCRYPT 1)
endif (GCRYPT_LIBRARY)

if (ZLIB_LIBRARY)
  set(HAVE_ZLIB 1)
endif (ZLIB_LIBRARY)

if (WITH_SSH1)
  set(HAVE_SSH1 1)
endif (WITH_SSH1)