diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-12-23 01:31:45 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-12-23 01:31:45 +0000 |
commit | cf985924fb73e71ed61a55a7a8dba97a8e200b3d (patch) | |
tree | d3d3037c8d66cbff78e633a8a44cc6357825dada /cmake/config-ix.cmake | |
parent | f06f6f50e9844b88cfbb9fb896fff9c3a752966b (diff) |
Use 'check_symbol_exists' instead of 'check_function_exists' for finding isatty. This change allows Xcode generated projects to have HAVE_ISATTY to be properly defined.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake/config-ix.cmake')
-rwxr-xr-x | cmake/config-ix.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake index 88eaa74017..b380a48637 100755 --- a/cmake/config-ix.cmake +++ b/cmake/config-ix.cmake @@ -94,7 +94,7 @@ endif() check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE) check_symbol_exists(getrusage sys/resource.h HAVE_GETRUSAGE) check_symbol_exists(setrlimit sys/resource.h HAVE_SETRLIMIT) -check_function_exists(isatty HAVE_ISATTY) +check_symbol_exists(isatty unistd.h HAVE_ISATTY) check_symbol_exists(index strings.h HAVE_INDEX) check_symbol_exists(isinf cmath HAVE_ISINF_IN_CMATH) check_symbol_exists(isinf math.h HAVE_ISINF_IN_MATH_H) |