diff options
author | Brad King <brad.king@kitware.com> | 2022-04-14 16:59:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-04-26 17:54:53 (GMT) |
commit | c9bd462c0887bbb7f9660b81ee2874c94f1e409b (patch) | |
tree | 2af6296ea833c24b7a0dc36ecb4838205b072b26 | |
parent | 07a54b2bb24ca8158c64fc9ceb2db14803706a70 (diff) | |
download | CMake-c9bd462c0887bbb7f9660b81ee2874c94f1e409b.zip CMake-c9bd462c0887bbb7f9660b81ee2874c94f1e409b.tar.gz CMake-c9bd462c0887bbb7f9660b81ee2874c94f1e409b.tar.bz2 |
FindThreads: Drop unused internal CMAKE_HAVE_THREADS_LIBRARY variable
This internal variable has not been used since commit 46368eddfd
(FindThreads: move checking of the -pthread compiler flag into a macro,
2014-10-06, v3.1.0-rc1~21^2~2). It has never been documented for public
use.
-rw-r--r-- | Modules/FindThreads.cmake | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/FindThreads.cmake b/Modules/FindThreads.cmake index e4d6cf3..15f29f7 100644 --- a/Modules/FindThreads.cmake +++ b/Modules/FindThreads.cmake @@ -96,7 +96,6 @@ macro(_check_threads_lib LIBNAME FUNCNAME VARNAME) CHECK_LIBRARY_EXISTS(${LIBNAME} ${FUNCNAME} "" ${VARNAME}) if(${VARNAME}) set(CMAKE_THREAD_LIBS_INIT "-l${LIBNAME}") - set(CMAKE_HAVE_THREADS_LIBRARY 1) set(Threads_FOUND TRUE) endif() endif () @@ -153,7 +152,6 @@ if(CMAKE_HAVE_PTHREAD_H) # We have pthread.h # Let's check for the library now. # - set(CMAKE_HAVE_THREADS_LIBRARY) if(NOT THREADS_HAVE_PTHREAD_ARG) # Check if pthread functions are in normal C library. # We list some pthread functions in PTHREAD_C_CXX_TEST_SOURCE test code. @@ -166,7 +164,6 @@ if(CMAKE_HAVE_PTHREAD_H) endif() if(CMAKE_HAVE_LIBC_PTHREAD) set(CMAKE_THREAD_LIBS_INIT "") - set(CMAKE_HAVE_THREADS_LIBRARY 1) set(Threads_FOUND TRUE) else() # Check for -pthread first if enabled. This is the recommended |