# SPDX-FileCopyrightText: Allen Winter # SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0 include(CheckIncludeFiles) check_include_files(byteswap.h HAVE_BYTESWAP_H) check_include_files(dirent.h HAVE_DIRENT_H) check_include_files(endian.h HAVE_ENDIAN_H) check_include_files(inttypes.h HAVE_INTTYPES_H) check_include_files(pthread.h HAVE_PTHREAD_H) check_include_files(sys/endian.h HAVE_SYS_ENDIAN_H) check_include_files(sys/param.h HAVE_SYS_PARAM_H) check_include_files(sys/utsname.h HAVE_SYS_UTSNAME_H) check_include_files(fcntl.h HAVE_FCNTL_H) check_include_files(unistd.h HAVE_UNISTD_H) check_include_files(wctype.h HAVE_WCTYPE_H) check_include_files(stdbool.h HAVE_STDBOOL_H) include(CheckFunctionExists) if(WIN32 AND MSVC) check_function_exists(_access HAVE__ACCESS) #Windows check_function_exists(_getpid HAVE__GETPID) #Windows check_function_exists(_mkdir HAVE__MKDIR) #Windows check_function_exists(_open HAVE__OPEN) #Windows check_function_exists(_snprintf HAVE__SNPRINTF) #Windows check_function_exists(_stat HAVE__STAT) #Windows , check_function_exists(_strdup HAVE__STRDUP) #Windows check_function_exists(_stricmp HAVE__STRICMP) #Windows check_function_exists(_strnicmp HAVE__STRNICMP) #Windows check_function_exists(_read HAVE__READ) #Windows check_function_exists(_write HAVE__WRITE) #Windows else() check_function_exists(access HAVE_ACCESS) #Unix check_function_exists(fork HAVE_FORK) #Unix check_function_exists(getopt HAVE_GETOPT) #Unix check_function_exists(getpid HAVE_GETPID) #Unix check_function_exists(getpwent HAVE_GETPWENT) #Unix , check_function_exists(gmtime_r HAVE_GMTIME_R) #Unix check_function_exists(localtime_r HAVE_LOCALTIME_R) #Unix check_function_exists(mkdir HAVE_MKDIR) #Unix , check_function_exists(open HAVE_OPEN) #Unix ,, check_function_exists(nanosleep HAVE_NANOSLEEP) #Unix check_function_exists(signal HAVE_SIGNAL) #Unix check_function_exists(stat HAVE_STAT) #Unix ,, check_function_exists(strdup HAVE_STRDUP) #Unix check_function_exists(strcasecmp HAVE_STRCASECMP) #Unix check_function_exists(strncasecmp HAVE_STRNCASECMP) #Unix check_function_exists(read HAVE_READ) #Unix check_function_exists(unlink HAVE_UNLINK) #Unix check_function_exists(usleep HAVE_USLEEP) #Unix check_function_exists(waitpid HAVE_WAITPID) #Unix , check_function_exists(write HAVE_WRITE) #Unix if(NOT MINGW) check_function_exists(alarm HAVE_ALARM) #Unix endif() endif() check_function_exists(backtrace HAVE_BACKTRACE) check_function_exists(iswspace HAVE_ISWSPACE) #Linux check_function_exists(setenv HAVE_SETENV) check_function_exists(unsetenv HAVE_UNSETENV) check_function_exists(snprintf HAVE_SNPRINTF) #Available with MSVC 2015 #TODO:BUILDSYSTEM:Figure out why check_function_exists fails to find snprintf for MSVC2015 if(MSVC_VERSION GREATER 1899) set(HAVE_SNPRINTF true) endif() if(NOT DEFINED CMAKE_REQUIRED_LIBRARIES) set(CMAKE_REQUIRED_LIBRARIES "") endif() #GetNumberFormat is not implemented on wine correctly #(see https://forum.winehq.org/viewtopic.php?t=27809) which results in #error when building. That means if linux user has installed wine, #the build of libical will fail. if(WIN32) set(_SAVE_RQL ${CMAKE_REQUIRED_LIBRARIES}) set(CMAKE_REQUIRED_LIBRARIES kernel32.lib) check_function_exists(GetNumberFormat HAVE_GETNUMBERFORMAT) #Windows set(CMAKE_REQUIRED_LIBRARIES ${_SAVE_RQL}) endif() include(CheckTypeSize) check_type_size(intptr_t SIZEOF_INTPTR_T) check_type_size(pid_t SIZEOF_PID_T) check_type_size(size_t SIZEOF_SIZE_T) check_type_size(ssize_t SIZEOF_SSIZE_T) if(WIN32 AND MSVC AND USE_32BIT_TIME_T) set(_SAVE_RQD ${CMAKE_REQUIRED_DEFINITIONS}) set(CMAKE_REQUIRED_DEFINITIONS -D_USE_32BIT_TIME_T) check_type_size(time_t SIZEOF_TIME_T) set(CMAKE_REQUIRED_DEFINITIONS ${_SAVE_RQD}) else() check_type_size(time_t SIZEOF_TIME_T) endif() check_type_size(${ICAL_ICALTIME_T_TYPE} SIZEOF_ICALTIME_T) check_type_size(wint_t SIZEOF_WINT_T) include(FindThreads) check_library_exists(pthread pthread_attr_get_np "" HAVE_PTHREAD_ATTR_GET_NP) check_library_exists(pthread pthread_getattr_np "" HAVE_PTHREAD_GETATTR_NP) check_library_exists(pthread pthread_create "" HAVE_PTHREAD_CREATE) check_include_files("pthread.h;pthread_np.h" HAVE_PTHREAD_NP_H)