MinGW defines __MINGW32__ rather than _MSC_VER, so also test for __MINGW32__ to see if setenv/unsetenv workaround needed.

This commit is contained in:
Beman 2016-12-30 10:09:31 -05:00
parent 163631cc7d
commit 2550f407f4

View File

@ -56,7 +56,7 @@ inline std::wstring convert(const char* c)
return std::wstring(s.begin(), s.end());
}
#if defined(_MSC_VER)
#if defined(_MSC_VER) || defined(__MINGW32__)
// Note: these three setenv* functions are not general solutions for the missing
// setenv* problem on VC++. See Microsoft's _putenv for that need, and ticker #7018
// for discussion and rationale for returning void for this test program, which needs