From 624ceb5027fd0b6bcf8e1f89f66a6738608f2c10 Mon Sep 17 00:00:00 2001 From: amai Date: Sat, 27 May 2017 10:23:06 +0200 Subject: [PATCH] Fix includes for cygwin --- lib/path.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/path.cpp b/lib/path.cpp index 981feec8b..ec31cad39 100644 --- a/lib/path.cpp +++ b/lib/path.cpp @@ -32,6 +32,9 @@ #else #include #endif +#if defined(__CYGWIN__) +#include +#endif /** Is the filesystem case insensitive? */ static bool caseInsensitiveFilesystem()