|
@@ -39,15 +39,13 @@
|
|
|
//
|
|
|
// This file is only used on Windows, it's empty on other platforms.
|
|
|
|
|
|
-#if defined(_WIN32)
|
|
|
+#if defined(_MSC_VER)
|
|
|
|
|
|
// Comment this out to fall back to using the ANSI versions (open, mkdir, ...)
|
|
|
// instead of the Unicode ones (_wopen, _wmkdir, ...). Doing so can be useful to
|
|
|
// debug failing tests if that's caused by the long path support.
|
|
|
// Long path support is disabled in MinGW
|
|
|
-#ifndef __MINGW32__
|
|
|
#define SUPPORT_LONGPATHS
|
|
|
-#endif // !__MINGW32__
|
|
|
|
|
|
#include <ctype.h>
|
|
|
#include <direct.h>
|
|
@@ -361,5 +359,5 @@ wstring testonly_path_to_winpath(const string& path) {
|
|
|
} // namespace protobuf
|
|
|
} // namespace google
|
|
|
|
|
|
-#endif // defined(_WIN32)
|
|
|
+#endif // defined(_MSC_VER)
|
|
|
|