diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-23 09:41:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-23 11:00:43 +0000 |
commit | d0b1bae8c5c70c5d06f3dcecc450a75e7f7cb5af (patch) | |
tree | 7ea7c5e622a5d7c9c989057a1eca8954c4d7fefb /CMakeModules/UseCompat.cmake | |
parent | Initial commit. (diff) | |
download | libyang3-d0b1bae8c5c70c5d06f3dcecc450a75e7f7cb5af.tar.xz libyang3-d0b1bae8c5c70c5d06f3dcecc450a75e7f7cb5af.zip |
Adding upstream version 3.1.0+dfsg.upstream/3.1.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'CMakeModules/UseCompat.cmake')
-rw-r--r-- | CMakeModules/UseCompat.cmake | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/CMakeModules/UseCompat.cmake b/CMakeModules/UseCompat.cmake new file mode 100644 index 0000000..8fe9f2c --- /dev/null +++ b/CMakeModules/UseCompat.cmake @@ -0,0 +1,77 @@ +# - Use compat library providing various functions and macros that may be missing on some systems +# Once done this will define +# +# compatsrc - sources to add to compilation +# +# Additionally, "compat.h" include directory is added and can be included. +# +# Author Michal Vasko <mvasko@cesnet.cz> +# Copyright (c) 2021 CESNET, z.s.p.o. +# +# This source code is licensed under BSD 3-Clause License (the "License"). +# You may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://opensource.org/licenses/BSD-3-Clause +# +include(CheckSymbolExists) +include(CheckFunctionExists) +include(CheckIncludeFile) +include(TestBigEndian) +if(POLICY CMP0075) + cmake_policy(SET CMP0075 NEW) +endif() + +macro(USE_COMPAT) + # compatibility checks + list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_POSIX_C_SOURCE=200809L) + list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_GNU_SOURCE) + list(APPEND CMAKE_REQUIRED_DEFINITIONS -D__BSD_VISIBLE=1) + list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_DEFAULT_SOURCE) + + check_symbol_exists(vdprintf "stdio.h;stdarg.h" HAVE_VDPRINTF) + check_symbol_exists(asprintf "stdio.h" HAVE_ASPRINTF) + check_symbol_exists(vasprintf "stdio.h" HAVE_VASPRINTF) + check_symbol_exists(getline "stdio.h" HAVE_GETLINE) + + check_symbol_exists(strndup "string.h" HAVE_STRNDUP) + check_symbol_exists(strnstr "string.h" HAVE_STRNSTR) + check_symbol_exists(strdupa "string.h" HAVE_STRDUPA) + check_symbol_exists(strchrnul "string.h" HAVE_STRCHRNUL) + + check_symbol_exists(get_current_dir_name "unistd.h" HAVE_GET_CURRENT_DIR_NAME) + + set(CMAKE_THREAD_PREFER_PTHREAD TRUE) + find_package(Threads) + list(APPEND CMAKE_REQUIRED_LIBRARIES ${CMAKE_THREAD_LIBS_INIT}) + check_function_exists(pthread_mutex_timedlock HAVE_PTHREAD_MUTEX_TIMEDLOCK) + list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES ${CMAKE_THREAD_LIBS_INIT}) + + test_big_endian(IS_BIG_ENDIAN) + + check_include_file("stdatomic.h" HAVE_STDATOMIC) + + check_symbol_exists(realpath "stdlib.h" HAVE_REALPATH) + check_symbol_exists(localtime_r "time.h" HAVE_LOCALTIME_R) + check_symbol_exists(gmtime_r "time.h" HAVE_GMTIME_R) + check_function_exists(timegm HAVE_TIMEGM) + check_symbol_exists(strptime "time.h" HAVE_STRPTIME) + check_symbol_exists(mmap "sys/mman.h" HAVE_MMAP) + check_symbol_exists(setenv "stdlib.h" HAVE_SETENV) + + list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_POSIX_C_SOURCE=200809L) + list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_GNU_SOURCE) + list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D__BSD_VISIBLE=1) + list(REMOVE_ITEM CMAKE_REQUIRED_DEFINITIONS -D_DEFAULT_SOURCE) + + # header and source file (adding the source directly allows for hiding its symbols) + configure_file(${PROJECT_SOURCE_DIR}/compat/compat.h.in ${PROJECT_BINARY_DIR}/compat/compat.h @ONLY) + include_directories(${PROJECT_BINARY_DIR}/compat) + set(compatsrc ${PROJECT_SOURCE_DIR}/compat/compat.c) + if(WIN32) + include_directories(${PROJECT_SOURCE_DIR}/compat/posix-shims) + endif() + if(NOT HAVE_STRPTIME) + set(compatsrc ${compatsrc} ${PROJECT_SOURCE_DIR}/compat/strptime.c) + endif() +endmacro() |