From 0839e905c6d501673aca580dcdf58170876cd28b Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 21 Aug 2006 22:39:03 -0400 Subject: [PATCH] BUG: Fixed #if test for case-insensitive glob on OSX. --- Source/kwsys/Glob.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/kwsys/Glob.cxx b/Source/kwsys/Glob.cxx index 11cc596ad..d86b9e052 100644 --- a/Source/kwsys/Glob.cxx +++ b/Source/kwsys/Glob.cxx @@ -39,7 +39,7 @@ #include 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