summaryrefslogtreecommitdiffstats
path: root/Modules/FindThreads.cmake
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-07-31 17:30:10 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-07-31 17:30:10 (GMT)
commit7beee2df4899c88c0d743766ca326c345cb03701 (patch)
tree4f2fae708103fa7d4a691575bc71f96270fcc517 /Modules/FindThreads.cmake
parentbe1b19ada0ea623381756b0905516f7b3cbaa84f (diff)
downloadCMake-7beee2df4899c88c0d743766ca326c345cb03701.zip
CMake-7beee2df4899c88c0d743766ca326c345cb03701.tar.gz
CMake-7beee2df4899c88c0d743766ca326c345cb03701.tar.bz2
STYLE: don't use FIND_INCLUDE_FILE() but only FIND_INCLUDE_FILES() in
FindThreads.h BUG: improve CheckC(XX)SourceRuns.cmake so that it works with cross compiling, the return value has to go in the cache but shouldn't overwrite the actual return value, and it should go only in the cache if we have a result from try_run() otherwise we won't get here again if we have a result later on Alex
Diffstat (limited to 'Modules/FindThreads.cmake')
-rw-r--r--Modules/FindThreads.cmake3
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/FindThreads.cmake b/Modules/FindThreads.cmake
index f09fd5c..ea4f576 100644
--- a/Modules/FindThreads.cmake
+++ b/Modules/FindThreads.cmake
@@ -6,7 +6,6 @@
# CMAKE_USE_PTHREADS_INIT - are we using pthreads
# CMAKE_HP_PTHREADS_INIT - are we using hp pthreads
-INCLUDE (CheckIncludeFile)
INCLUDE (CheckIncludeFiles)
INCLUDE (CheckLibraryExists)
@@ -20,7 +19,7 @@ IF(CMAKE_HAVE_SPROC_H)
SET(CMAKE_USE_SPROC_INIT 1)
ELSE(CMAKE_HAVE_SPROC_H)
# Do we have pthreads?
- CHECK_INCLUDE_FILE("pthread.h" CMAKE_HAVE_PTHREAD_H)
+ CHECK_INCLUDE_FILES("pthread.h" CMAKE_HAVE_PTHREAD_H)
IF(CMAKE_HAVE_PTHREAD_H)
# We have pthread.h
# Let's check for the library now.