Skip to content
Snippets Groups Projects
Commit d8fdd954 authored by Brad King's avatar Brad King
Browse files

BUG: Fixed #if test for case-insensitive glob on OSX.

parent 6ac262f5
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
#include <string.h> #include <string.h>
namespace KWSYS_NAMESPACE 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 // On Windows and apple, no difference between lower and upper case
# define KWSYS_GLOB_CASE_INDEPENDENT # define KWSYS_GLOB_CASE_INDEPENDENT
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment