BUG: Fixed #if test for case-insensitive glob on OSX.
This commit is contained in:
parent
a2b89129de
commit
0839e905c6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue