Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 1 | # - Use compat library providing various functions and macros that may be missing on some systems |
| 2 | # Once done this will define |
| 3 | # |
| 4 | # compatsrc - sources to add to compilation |
| 5 | # |
| 6 | # Additionally, "compat.h" include directory is added and can be included. |
| 7 | # |
| 8 | # Author Michal Vasko <mvasko@cesnet.cz> |
| 9 | # Copyright (c) 2021 CESNET, z.s.p.o. |
| 10 | # |
| 11 | # This source code is licensed under BSD 3-Clause License (the "License"). |
| 12 | # You may not use this file except in compliance with the License. |
| 13 | # You may obtain a copy of the License at |
| 14 | # |
| 15 | # https://opensource.org/licenses/BSD-3-Clause |
| 16 | # |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 17 | include(CheckSymbolExists) |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 18 | include(CheckFunctionExists) |
| 19 | include(CheckIncludeFile) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 20 | include(TestBigEndian) |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 21 | if(POLICY CMP0075) |
| 22 | cmake_policy(SET CMP0075 NEW) |
| 23 | endif() |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 24 | |
| 25 | macro(USE_COMPAT) |
| 26 | # compatibility checks |
| 27 | set(CMAKE_REQUIRED_DEFINITIONS -D_POSIX_C_SOURCE=200809L) |
| 28 | list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_GNU_SOURCE) |
| 29 | list(APPEND CMAKE_REQUIRED_DEFINITIONS -D__BSD_VISIBLE=1) |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 30 | set(CMAKE_REQUIRED_LIBRARIES pthread) |
| 31 | |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 32 | check_symbol_exists(vdprintf "stdio.h;stdarg.h" HAVE_VDPRINTF) |
| 33 | check_symbol_exists(asprintf "stdio.h" HAVE_ASPRINTF) |
| 34 | check_symbol_exists(vasprintf "stdio.h" HAVE_VASPRINTF) |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 35 | check_symbol_exists(getline "stdio.h" HAVE_GETLINE) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 36 | |
| 37 | check_symbol_exists(strndup "string.h" HAVE_STRNDUP) |
| 38 | check_symbol_exists(strnstr "string.h" HAVE_STRNSTR) |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 39 | check_symbol_exists(strdupa "string.h" HAVE_STRDUPA) |
| 40 | check_symbol_exists(strchrnul "string.h" HAVE_STRCHRNUL) |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 41 | |
| 42 | check_symbol_exists(get_current_dir_name "unistd.h" HAVE_GET_CURRENT_DIR_NAME) |
| 43 | |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 44 | check_function_exists(pthread_mutex_timedlock HAVE_PTHREAD_MUTEX_TIMEDLOCK) |
| 45 | |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 46 | TEST_BIG_ENDIAN(IS_BIG_ENDIAN) |
| 47 | |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 48 | check_include_file("stdatomic.h" HAVE_STDATOMIC) |
| 49 | |
Jan Kundrát | e182a27 | 2021-12-09 23:25:15 +0100 | [diff] [blame] | 50 | include(CheckStructHasMember) |
| 51 | check_struct_has_member("struct tm" tm_gmtoff time.h HAVE_TM_GMTOFF) |
| 52 | check_symbol_exists(timezone time.h HAVE_TIME_H_TIMEZONE) |
| 53 | |
Jan Kundrát | 147a72c | 2021-12-10 16:13:57 +0100 | [diff] [blame] | 54 | check_symbol_exists(realpath "stdlib.h" HAVE_REALPATH) |
Jan Kundrát | 9190763 | 2021-12-14 16:18:16 +0100 | [diff] [blame] | 55 | check_symbol_exists(localtime_r "time.h" HAVE_LOCALTIME_R) |
Jan Kundrát | a5a7e29 | 2021-12-10 17:37:46 +0100 | [diff] [blame] | 56 | check_symbol_exists(strptime "time.h" HAVE_STRPTIME) |
Jan Kundrát | 147a72c | 2021-12-10 16:13:57 +0100 | [diff] [blame] | 57 | |
Michal Vasko | d304a08 | 2021-05-19 16:36:10 +0200 | [diff] [blame] | 58 | unset(CMAKE_REQUIRED_DEFINITIONS) |
| 59 | unset(CMAKE_REQUIRED_LIBRARIES) |
| 60 | |
Michal Vasko | 1b0b9a1 | 2021-05-06 08:38:34 +0200 | [diff] [blame] | 61 | # header and source file (adding the source directly allows for hiding its symbols) |
Michal Vasko | c5a2283 | 2020-08-20 13:21:33 +0200 | [diff] [blame] | 62 | configure_file(${PROJECT_SOURCE_DIR}/compat/compat.h.in ${PROJECT_BINARY_DIR}/compat/compat.h @ONLY) |
| 63 | include_directories(${PROJECT_BINARY_DIR}/compat) |
Michal Vasko | 1b0b9a1 | 2021-05-06 08:38:34 +0200 | [diff] [blame] | 64 | set(compatsrc ${PROJECT_SOURCE_DIR}/compat/compat.c) |
Jan Kundrát | 178ff71 | 2021-12-09 23:51:15 +0100 | [diff] [blame] | 65 | if(WIN32) |
| 66 | include_directories(${PROJECT_SOURCE_DIR}/compat/posix-shims) |
| 67 | endif() |
Jan Kundrát | a5a7e29 | 2021-12-10 17:37:46 +0100 | [diff] [blame] | 68 | if(NOT HAVE_STRPTIME) |
| 69 | set(compatsrc ${compatsrc} ${PROJECT_SOURCE_DIR}/compat/strptime.c) |
| 70 | endif() |
Michal Vasko | 5aa44c0 | 2020-06-29 11:47:02 +0200 | [diff] [blame] | 71 | endmacro() |