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

This commit is contained in:
Brad King 2006-08-21 22:39:03 -04:00
parent a2b89129de
commit 0839e905c6
1 changed files with 1 additions and 1 deletions

View File

@ -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