summaryrefslogtreecommitdiffstats
path: root/src/portable.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-06-16 10:48:40 (GMT)
committerGitHub <noreply@github.com>2019-06-16 10:48:40 (GMT)
commitec6d35f6bedbaea9786933bc70df7160be0ac65e (patch)
treedd0caf00afed5ad981afb42e670ca14a007b5443 /src/portable.cpp
parentb44b9cddb75dbe5b9a212d3bfc6a6216b62174d4 (diff)
parent3a9964f4e096a030a2aac0a4a3688ba996715a27 (diff)
downloadDoxygen-ec6d35f6bedbaea9786933bc70df7160be0ac65e.zip
Doxygen-ec6d35f6bedbaea9786933bc70df7160be0ac65e.tar.gz
Doxygen-ec6d35f6bedbaea9786933bc70df7160be0ac65e.tar.bz2
Merge pull request #7056 from albert-github/feature/bug_cygwin_defaults
Cygwin should by default also have `CASE_SENSE_NAMES=NO`
Diffstat (limited to 'src/portable.cpp')
-rw-r--r--src/portable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/portable.cpp b/src/portable.cpp
index baf79c9..e2bdf6e 100644
--- a/src/portable.cpp
+++ b/src/portable.cpp
@@ -396,7 +396,7 @@ const char *portable_commandExtension()
bool portable_fileSystemIsCaseSensitive()
{
-#if defined(_WIN32) || defined(macintosh) || defined(__MACOSX__) || defined(__APPLE__)
+#if defined(_WIN32) || defined(macintosh) || defined(__MACOSX__) || defined(__APPLE__) || defined(__CYGWIN__)
return FALSE;
#else
return TRUE;