summaryrefslogtreecommitdiff
path: root/Modules/CheckFunctionExists.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2002-12-13 14:58:55 -0500
committerBrad King <brad.king@kitware.com>2002-12-13 14:58:55 -0500
commit7e824e83a9c97234f23640188c590201eeffea5d (patch)
tree6ead7ffa2b19307549baa6d5156153dbcc5deeaf /Modules/CheckFunctionExists.cmake
parent858c6c9a02bc2f0a8ab1a9a6f4ab7f3c353ef049 (diff)
downloadcmake-7e824e83a9c97234f23640188c590201eeffea5d.tar.gz
ENH: Don't repeat check even if answer was no.
Diffstat (limited to 'Modules/CheckFunctionExists.cmake')
-rw-r--r--Modules/CheckFunctionExists.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/CheckFunctionExists.cmake b/Modules/CheckFunctionExists.cmake
index 2afaa40adb..e43574515d 100644
--- a/Modules/CheckFunctionExists.cmake
+++ b/Modules/CheckFunctionExists.cmake
@@ -7,7 +7,7 @@
#
MACRO(CHECK_FUNCTION_EXISTS FUNCTION VARIABLE)
- IF(NOT ${VARIABLE})
+ IF("${VARIABLE}" MATCHES "^${VARIABLE}$")
SET(MACRO_CHECK_FUNCTION_DEFINITIONS -DCHECK_FUNCTION_EXISTS=${FUNCTION})
MESSAGE(STATUS "Looking for ${FUNCTION}")
TRY_COMPILE(${VARIABLE}
@@ -25,5 +25,5 @@ MACRO(CHECK_FUNCTION_EXISTS FUNCTION VARIABLE)
"Determining if the function ${FUNCTION} exists failed with the following output:\n"
"${OUTPUT}\n" APPEND)
ENDIF(${VARIABLE})
- ENDIF(NOT ${VARIABLE})
+ ENDIF("${VARIABLE}" MATCHES "^${VARIABLE}$")
ENDMACRO(CHECK_FUNCTION_EXISTS)