2020-03-23 21:44:29 +08:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2023-01-02 20:51:48 +08:00
|
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2020-03-23 21:44:29 +08:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2020-03-23 21:44:29 +08:00
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
2020-03-23 21:44:29 +08:00
|
|
|
###########################################################################
|
cmake: clean OtherTests, fixing -Werror
There were several -Wunused warnings and one duplicate macro definition.
The EXTRA_DEFINES variable of the CurlCheckCSources macro was being
abused ("__unused1\n#undef inline\n#define __unused2", seriously?) to
insert extra C code. Avoid this broken abstraction and use cmake's
check_c_source_compiles directly (works fine with CMake 2.8, maybe
even cmake 2.6).
After cleaning up all related variables (EXTRA_DEFINES,
HEADER_INCLUDES, auxiliary headers_hack), also remove a duplicate
add_headers_include macro and remove duplicate header additions before
the struct timeval check.
Oh, and now the code is converted to use CheckCSourceRuns and
CheckCSourceCompiles, the two curl-specific helpers can be removed.
Unfortunately, the cmake output is now slightly more verbose. Before:
Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test)
Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test) - Failed
Since check_c_source_compiles prints the varname, now you see:
Performing Test curl_cv_func_send_test
Performing Test curl_cv_func_send_test - Failed
Tested: int send(int, const void *, size_t, int)
Compared cmake output with each other using vimdiff, no functional
differences were found. Tested with GCC 4.9.1 and Clang 3.5.0.
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
2014-10-31 19:32:40 +08:00
|
|
|
include(CheckCSourceCompiles)
|
|
|
|
# The begin of the sources (macros and includes)
|
|
|
|
set(_source_epilogue "#undef inline")
|
2009-04-02 21:14:53 +08:00
|
|
|
|
2009-06-10 01:29:16 +08:00
|
|
|
macro(add_header_include check header)
|
|
|
|
if(${check})
|
cmake: clean OtherTests, fixing -Werror
There were several -Wunused warnings and one duplicate macro definition.
The EXTRA_DEFINES variable of the CurlCheckCSources macro was being
abused ("__unused1\n#undef inline\n#define __unused2", seriously?) to
insert extra C code. Avoid this broken abstraction and use cmake's
check_c_source_compiles directly (works fine with CMake 2.8, maybe
even cmake 2.6).
After cleaning up all related variables (EXTRA_DEFINES,
HEADER_INCLUDES, auxiliary headers_hack), also remove a duplicate
add_headers_include macro and remove duplicate header additions before
the struct timeval check.
Oh, and now the code is converted to use CheckCSourceRuns and
CheckCSourceCompiles, the two curl-specific helpers can be removed.
Unfortunately, the cmake output is now slightly more verbose. Before:
Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test)
Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test) - Failed
Since check_c_source_compiles prints the varname, now you see:
Performing Test curl_cv_func_send_test
Performing Test curl_cv_func_send_test - Failed
Tested: int send(int, const void *, size_t, int)
Compared cmake output with each other using vimdiff, no functional
differences were found. Tested with GCC 4.9.1 and Clang 3.5.0.
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
2014-10-31 19:32:40 +08:00
|
|
|
set(_source_epilogue "${_source_epilogue}\n#include <${header}>")
|
2018-07-05 18:55:47 +08:00
|
|
|
endif()
|
|
|
|
endmacro()
|
2009-04-02 21:14:53 +08:00
|
|
|
|
2009-06-10 01:29:16 +08:00
|
|
|
set(signature_call_conv)
|
|
|
|
if(HAVE_WINDOWS_H)
|
2009-04-02 21:14:53 +08:00
|
|
|
add_header_include(HAVE_WINSOCK2_H "winsock2.h")
|
2015-09-16 23:27:13 +08:00
|
|
|
add_header_include(HAVE_WINDOWS_H "windows.h")
|
cmake: clean OtherTests, fixing -Werror
There were several -Wunused warnings and one duplicate macro definition.
The EXTRA_DEFINES variable of the CurlCheckCSources macro was being
abused ("__unused1\n#undef inline\n#define __unused2", seriously?) to
insert extra C code. Avoid this broken abstraction and use cmake's
check_c_source_compiles directly (works fine with CMake 2.8, maybe
even cmake 2.6).
After cleaning up all related variables (EXTRA_DEFINES,
HEADER_INCLUDES, auxiliary headers_hack), also remove a duplicate
add_headers_include macro and remove duplicate header additions before
the struct timeval check.
Oh, and now the code is converted to use CheckCSourceRuns and
CheckCSourceCompiles, the two curl-specific helpers can be removed.
Unfortunately, the cmake output is now slightly more verbose. Before:
Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test)
Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test) - Failed
Since check_c_source_compiles prints the varname, now you see:
Performing Test curl_cv_func_send_test
Performing Test curl_cv_func_send_test - Failed
Tested: int send(int, const void *, size_t, int)
Compared cmake output with each other using vimdiff, no functional
differences were found. Tested with GCC 4.9.1 and Clang 3.5.0.
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
2014-10-31 19:32:40 +08:00
|
|
|
set(_source_epilogue
|
|
|
|
"${_source_epilogue}\n#ifndef WIN32_LEAN_AND_MEAN\n#define WIN32_LEAN_AND_MEAN\n#endif")
|
2009-06-10 01:29:16 +08:00
|
|
|
set(signature_call_conv "PASCAL")
|
2014-08-08 16:23:26 +08:00
|
|
|
if(HAVE_LIBWS2_32)
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES ws2_32)
|
|
|
|
endif()
|
2018-07-05 18:55:47 +08:00
|
|
|
else()
|
2009-04-02 21:14:53 +08:00
|
|
|
add_header_include(HAVE_SYS_TYPES_H "sys/types.h")
|
|
|
|
add_header_include(HAVE_SYS_SOCKET_H "sys/socket.h")
|
2018-07-05 18:55:47 +08:00
|
|
|
endif()
|
2009-04-02 21:14:53 +08:00
|
|
|
|
2019-04-07 18:43:38 +08:00
|
|
|
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
|
|
|
|
|
cmake: clean OtherTests, fixing -Werror
There were several -Wunused warnings and one duplicate macro definition.
The EXTRA_DEFINES variable of the CurlCheckCSources macro was being
abused ("__unused1\n#undef inline\n#define __unused2", seriously?) to
insert extra C code. Avoid this broken abstraction and use cmake's
check_c_source_compiles directly (works fine with CMake 2.8, maybe
even cmake 2.6).
After cleaning up all related variables (EXTRA_DEFINES,
HEADER_INCLUDES, auxiliary headers_hack), also remove a duplicate
add_headers_include macro and remove duplicate header additions before
the struct timeval check.
Oh, and now the code is converted to use CheckCSourceRuns and
CheckCSourceCompiles, the two curl-specific helpers can be removed.
Unfortunately, the cmake output is now slightly more verbose. Before:
Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test)
Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test) - Failed
Since check_c_source_compiles prints the varname, now you see:
Performing Test curl_cv_func_send_test
Performing Test curl_cv_func_send_test - Failed
Tested: int send(int, const void *, size_t, int)
Compared cmake output with each other using vimdiff, no functional
differences were found. Tested with GCC 4.9.1 and Clang 3.5.0.
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
2014-10-31 19:32:40 +08:00
|
|
|
check_c_source_compiles("${_source_epilogue}
|
|
|
|
int main(void) {
|
|
|
|
int flag = MSG_NOSIGNAL;
|
|
|
|
(void)flag;
|
|
|
|
return 0;
|
|
|
|
}" HAVE_MSG_NOSIGNAL)
|
2009-04-02 21:14:53 +08:00
|
|
|
|
cmake: clean OtherTests, fixing -Werror
There were several -Wunused warnings and one duplicate macro definition.
The EXTRA_DEFINES variable of the CurlCheckCSources macro was being
abused ("__unused1\n#undef inline\n#define __unused2", seriously?) to
insert extra C code. Avoid this broken abstraction and use cmake's
check_c_source_compiles directly (works fine with CMake 2.8, maybe
even cmake 2.6).
After cleaning up all related variables (EXTRA_DEFINES,
HEADER_INCLUDES, auxiliary headers_hack), also remove a duplicate
add_headers_include macro and remove duplicate header additions before
the struct timeval check.
Oh, and now the code is converted to use CheckCSourceRuns and
CheckCSourceCompiles, the two curl-specific helpers can be removed.
Unfortunately, the cmake output is now slightly more verbose. Before:
Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test)
Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test) - Failed
Since check_c_source_compiles prints the varname, now you see:
Performing Test curl_cv_func_send_test
Performing Test curl_cv_func_send_test - Failed
Tested: int send(int, const void *, size_t, int)
Compared cmake output with each other using vimdiff, no functional
differences were found. Tested with GCC 4.9.1 and Clang 3.5.0.
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
2014-10-31 19:32:40 +08:00
|
|
|
if(NOT HAVE_WINDOWS_H)
|
2009-04-02 21:14:53 +08:00
|
|
|
add_header_include(HAVE_SYS_TIME_H "sys/time.h")
|
|
|
|
add_header_include(TIME_WITH_SYS_TIME "time.h")
|
|
|
|
add_header_include(HAVE_TIME_H "time.h")
|
cmake: clean OtherTests, fixing -Werror
There were several -Wunused warnings and one duplicate macro definition.
The EXTRA_DEFINES variable of the CurlCheckCSources macro was being
abused ("__unused1\n#undef inline\n#define __unused2", seriously?) to
insert extra C code. Avoid this broken abstraction and use cmake's
check_c_source_compiles directly (works fine with CMake 2.8, maybe
even cmake 2.6).
After cleaning up all related variables (EXTRA_DEFINES,
HEADER_INCLUDES, auxiliary headers_hack), also remove a duplicate
add_headers_include macro and remove duplicate header additions before
the struct timeval check.
Oh, and now the code is converted to use CheckCSourceRuns and
CheckCSourceCompiles, the two curl-specific helpers can be removed.
Unfortunately, the cmake output is now slightly more verbose. Before:
Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test)
Performing Test int send(int, const void *, size_t, int) (curl_cv_func_send_test) - Failed
Since check_c_source_compiles prints the varname, now you see:
Performing Test curl_cv_func_send_test
Performing Test curl_cv_func_send_test - Failed
Tested: int send(int, const void *, size_t, int)
Compared cmake output with each other using vimdiff, no functional
differences were found. Tested with GCC 4.9.1 and Clang 3.5.0.
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
2014-10-31 19:32:40 +08:00
|
|
|
endif()
|
|
|
|
check_c_source_compiles("${_source_epilogue}
|
|
|
|
int main(void) {
|
|
|
|
struct timeval ts;
|
|
|
|
ts.tv_sec = 0;
|
|
|
|
ts.tv_usec = 0;
|
|
|
|
(void)ts;
|
|
|
|
return 0;
|
|
|
|
}" HAVE_STRUCT_TIMEVAL)
|
2009-04-02 21:14:53 +08:00
|
|
|
|
2019-04-07 18:43:38 +08:00
|
|
|
if(HAVE_WINDOWS_H)
|
|
|
|
set(CMAKE_EXTRA_INCLUDE_FILES winsock2.h)
|
|
|
|
else()
|
|
|
|
set(CMAKE_EXTRA_INCLUDE_FILES)
|
|
|
|
if(HAVE_SYS_SOCKET_H)
|
|
|
|
set(CMAKE_EXTRA_INCLUDE_FILES sys/socket.h)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
check_type_size("struct sockaddr_storage" SIZEOF_STRUCT_SOCKADDR_STORAGE)
|
|
|
|
if(HAVE_SIZEOF_STRUCT_SOCKADDR_STORAGE)
|
|
|
|
set(HAVE_STRUCT_SOCKADDR_STORAGE 1)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
unset(CMAKE_TRY_COMPILE_TARGET_TYPE)
|
|
|
|
|
2022-11-16 15:16:46 +08:00
|
|
|
if(NOT CMAKE_CROSSCOMPILING)
|
2022-01-08 10:41:18 +08:00
|
|
|
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "iOS")
|
2022-11-16 15:16:46 +08:00
|
|
|
# only try this on non-apple platforms
|
|
|
|
|
|
|
|
# if not cross-compilation...
|
|
|
|
include(CheckCSourceRuns)
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "")
|
|
|
|
if(HAVE_SYS_POLL_H)
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "-DHAVE_SYS_POLL_H")
|
|
|
|
elseif(HAVE_POLL_H)
|
|
|
|
set(CMAKE_REQUIRED_FLAGS "-DHAVE_POLL_H")
|
|
|
|
endif()
|
|
|
|
check_c_source_runs("
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_POLL_H
|
|
|
|
# include <sys/poll.h>
|
|
|
|
#elif HAVE_POLL_H
|
|
|
|
# include <poll.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
if(0 != poll(0, 0, 10)) {
|
|
|
|
return 1; /* fail */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* detect the 10.12 poll() breakage */
|
|
|
|
struct timeval before, after;
|
|
|
|
int rc;
|
|
|
|
size_t us;
|
|
|
|
|
|
|
|
gettimeofday(&before, NULL);
|
|
|
|
rc = poll(NULL, 0, 500);
|
|
|
|
gettimeofday(&after, NULL);
|
|
|
|
|
|
|
|
us = (after.tv_sec - before.tv_sec) * 1000000 +
|
|
|
|
(after.tv_usec - before.tv_usec);
|
|
|
|
|
|
|
|
if(us < 400000) {
|
|
|
|
return 1;
|
|
|
|
}
|
2019-01-15 17:50:18 +08:00
|
|
|
}
|
2022-11-16 15:16:46 +08:00
|
|
|
return 0;
|
2016-10-31 07:45:17 +08:00
|
|
|
}" HAVE_POLL_FINE)
|
2021-08-23 22:39:33 +08:00
|
|
|
endif()
|
2016-10-31 07:45:17 +08:00
|
|
|
endif()
|
2009-04-02 21:14:53 +08:00
|
|
|
|