diff options
author | Brad King <brad.king@kitware.com> | 2006-08-22 02:39:03 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-08-22 02:39:03 (GMT) |
commit | 0839e905c6d501673aca580dcdf58170876cd28b (patch) | |
tree | 2330ecea99ec17413412df93115d01691d524560 /Source/kwsys/Glob.cxx | |
parent | a2b89129de53de7b309f39080db284e3763517e5 (diff) | |
download | CMake-0839e905c6d501673aca580dcdf58170876cd28b.zip CMake-0839e905c6d501673aca580dcdf58170876cd28b.tar.gz CMake-0839e905c6d501673aca580dcdf58170876cd28b.tar.bz2 |
BUG: Fixed #if test for case-insensitive glob on OSX.
Diffstat (limited to 'Source/kwsys/Glob.cxx')
-rw-r--r-- | Source/kwsys/Glob.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/Glob.cxx b/Source/kwsys/Glob.cxx index 11cc596..d86b9e0 100644 --- a/Source/kwsys/Glob.cxx +++ b/Source/kwsys/Glob.cxx @@ -39,7 +39,7 @@ #include <string.h> namespace KWSYS_NAMESPACE { -#if defined(_WIN32) || defined(APPLE) || defined(__CYGWIN__) +#if defined(_WIN32) || defined(__APPLE__) || defined(__CYGWIN__) // On Windows and apple, no difference between lower and upper case # define KWSYS_GLOB_CASE_INDEPENDENT #endif |