2009-02-02 17:44:46 +03:00
|
|
|
include(CheckIncludeFile)
|
|
|
|
include(CheckSymbolExists)
|
|
|
|
include(CheckFunctionExists)
|
|
|
|
include(CheckLibraryExists)
|
|
|
|
include(CheckTypeSize)
|
|
|
|
include(CheckCXXSourceCompiles)
|
2009-07-23 11:25:36 +04:00
|
|
|
include(TestBigEndian)
|
2009-02-02 17:44:46 +03:00
|
|
|
|
|
|
|
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})
|
|
|
|
|
2009-08-12 16:05:17 +04:00
|
|
|
if(CMAKE_COMPILER_IS_GNUC)
|
2009-08-11 19:10:00 +04:00
|
|
|
check_c_compiler_flag("-fvisibility=hidden" WITH_VISIBILITY_HIDDEN)
|
2009-08-12 16:05:17 +04:00
|
|
|
endif(CMAKE_COMPILER_IS_GNUC)
|
2009-08-11 19:10:00 +04:00
|
|
|
|
2009-02-02 17:44:46 +03:00
|
|
|
# HEADER FILES
|
2009-11-03 23:04:36 +03:00
|
|
|
check_include_file(argp.h HAVE_ARGP_H)
|
2009-02-02 17:44:46 +03:00
|
|
|
check_include_file(pty.h HAVE_PTY_H)
|
|
|
|
check_include_file(terminos.h HAVE_TERMIOS_H)
|
2009-08-20 13:50:49 +04:00
|
|
|
if (WIN32)
|
|
|
|
check_include_file(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)
|
2009-08-21 17:15:49 +04:00
|
|
|
check_include_file(ws2tcpip.h HAVE_WS2TCPIP_H)
|
|
|
|
if (HAVE_WSPIAPI_H OR HAVE_WS2TCPIP_H)
|
|
|
|
set(HAVE_GETADDRINFO TRUE)
|
|
|
|
set(HAVE_GETHOSTBYNAME TRUE)
|
|
|
|
endif (HAVE_WSPIAPI_H OR HAVE_WS2TCPIP_H)
|
|
|
|
|
2009-08-20 13:50:49 +04:00
|
|
|
set(HAVE_SELECT TRUE)
|
|
|
|
endif (WIN32)
|
2009-02-02 17:44:46 +03:00
|
|
|
|
2009-07-23 13:54:32 +04:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIRS})
|
2009-02-02 17:44:46 +03:00
|
|
|
check_include_file(openssl/aes.h HAVE_OPENSSL_AES_H)
|
2009-10-01 12:19:07 +04:00
|
|
|
|
2009-07-23 13:54:32 +04:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIRS})
|
2009-02-02 17:44:46 +03:00
|
|
|
check_include_file(openssl/blowfish.h HAVE_OPENSSL_BLOWFISH_H)
|
2009-10-01 12:19:07 +04:00
|
|
|
|
2009-07-23 13:54:32 +04:00
|
|
|
set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIRS})
|
2009-02-02 17:44:46 +03:00
|
|
|
check_include_file(openssl/des.h HAVE_OPENSSL_DES_H)
|
|
|
|
|
|
|
|
# FUNCTIONS
|
2009-08-21 17:15:18 +04:00
|
|
|
|
2009-08-20 13:50:49 +04:00
|
|
|
if (UNIX)
|
2009-08-21 17:15:18 +04:00
|
|
|
# libsocket (Solaris)
|
|
|
|
check_library_exists(socket getaddrinfo "" HAVE_LIBSOCKET)
|
|
|
|
if (HAVE_LIBSOCKET)
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} socket)
|
|
|
|
endif (HAVE_LIBSOCKET)
|
|
|
|
# libnsl (Solaris)
|
|
|
|
check_library_exists(nsl gethostbyname "" HAVE_LIBNSL)
|
|
|
|
if (HAVE_LIBNSL)
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} nsl)
|
|
|
|
endif (HAVE_LIBNSL)
|
2009-08-25 17:07:29 +04:00
|
|
|
# libresolv
|
2009-08-25 17:23:28 +04:00
|
|
|
check_library_exists(resolv hstrerror "" HAVE_LIBRESOLV)
|
2009-08-25 17:07:29 +04:00
|
|
|
if (HAVE_LIBRESOLV)
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} resolv)
|
|
|
|
endif (HAVE_LIBRESOLV)
|
|
|
|
check_library_exists(rt nanosleep "" HAVE_LIBRT)
|
|
|
|
# librt
|
|
|
|
if (HAVE_LIBRT)
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} rt)
|
|
|
|
endif (HAVE_LIBRT)
|
2009-08-21 17:15:18 +04:00
|
|
|
|
2009-03-08 16:32:28 +03:00
|
|
|
check_function_exists(getaddrinfo HAVE_GETADDRINFO)
|
|
|
|
check_function_exists(gethostbyname HAVE_GETHOSTBYNAME)
|
|
|
|
check_function_exists(poll HAVE_POLL)
|
|
|
|
check_function_exists(select HAVE_SELECT)
|
2009-08-21 17:15:18 +04:00
|
|
|
check_function_exists(cfmakeraw HAVE_CFMAKERAW)
|
2009-07-13 14:32:06 +04:00
|
|
|
check_function_exists(regcomp HAVE_REGCOMP)
|
2009-08-20 13:50:49 +04:00
|
|
|
endif (UNIX)
|
2009-10-01 12:19:07 +04:00
|
|
|
|
2009-08-25 17:07:29 +04:00
|
|
|
set(LIBSSH_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} CACHE INTERNAL "libssh required system libraries")
|
2009-02-02 17:44:46 +03:00
|
|
|
|
|
|
|
# LIBRARIES
|
2009-05-07 19:11:04 +04:00
|
|
|
if (CRYPTO_FOUND)
|
2009-02-02 17:44:46 +03:00
|
|
|
set(HAVE_LIBCRYPTO 1)
|
2009-05-07 19:11:04 +04:00
|
|
|
endif (CRYPTO_FOUND)
|
2009-02-02 17:44:46 +03:00
|
|
|
|
2009-05-07 19:07:54 +04:00
|
|
|
if (GCRYPT_FOUND)
|
2009-02-02 17:44:46 +03:00
|
|
|
set(HAVE_LIBGCRYPT 1)
|
2009-05-07 19:07:54 +04:00
|
|
|
endif (GCRYPT_FOUND)
|
2009-02-02 17:44:46 +03:00
|
|
|
|
2009-03-29 00:14:45 +03:00
|
|
|
if (Z_LIBRARY)
|
|
|
|
set(HAVE_LIBZ 1)
|
|
|
|
endif (Z_LIBRARY)
|
2009-02-02 17:44:46 +03:00
|
|
|
|
2009-03-29 00:43:53 +03:00
|
|
|
# OPTIONS
|
2009-04-16 19:47:15 +04:00
|
|
|
if (WITH_DEBUG_CRYPTO)
|
|
|
|
set(DEBUG_CRYPTO 1)
|
|
|
|
endif (WITH_DEBUG_CRYPTO)
|
|
|
|
|
2009-08-12 12:08:20 +04:00
|
|
|
if (WITH_DEBUG_CALLTRACE)
|
|
|
|
set(DEBUG_CALLTRACE 1)
|
|
|
|
endif (WITH_DEBUG_CALLTRACE)
|
|
|
|
|
2009-07-23 11:25:36 +04:00
|
|
|
# ENDIAN
|
|
|
|
test_big_endian(WORDS_BIGENDIAN)
|