From 5b5cd92363877e790d09f38d6364f42345e7f327 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 14 Apr 2022 14:45:11 -0400 Subject: FindThreads: Drop strange SunOS+pthread.h+thr_create combination Solaris has provided pthreads for a long time, so we probably never get to this combination anyway. --- Modules/FindThreads.cmake | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Modules/FindThreads.cmake b/Modules/FindThreads.cmake index 15f29f7..30f8580 100644 --- a/Modules/FindThreads.cmake +++ b/Modules/FindThreads.cmake @@ -178,10 +178,6 @@ if(CMAKE_HAVE_PTHREAD_H) endif() _check_threads_lib(pthreads pthread_create CMAKE_HAVE_PTHREADS_CREATE) _check_threads_lib(pthread pthread_create CMAKE_HAVE_PTHREAD_CREATE) - if(CMAKE_SYSTEM_NAME MATCHES "SunOS") - # On sun also check for -lthread - _check_threads_lib(thread thr_create CMAKE_HAVE_THR_CREATE) - endif() endif() endif() -- cgit v0.12