summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2016-04-22 05:18:59 -0400
committerMagnus Hagander <magnus@hagander.net>2016-04-22 05:20:07 -0400
commitc238a41014db7f818982641a8b95fae15515c88e (patch)
tree5ad00e38c68e83ed2cfc1c1d75ebde63bdb4c225
parent3232c242724e743c0dd3afd972cb0cb5b5d12c33 (diff)
Add putenv support for msvcrt from Visual Studio 2013
This was missed when VS 2013 support was added. Michael Paquier
-rw-r--r--src/port/win32env.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/port/win32env.c b/src/port/win32env.c
index 18d4b56a90b..789d9725b51 100644
--- a/src/port/win32env.c
+++ b/src/port/win32env.c
@@ -67,6 +67,9 @@ pgwin32_putenv(const char *envval)
"msvcr110", 0, NULL
}, /* Visual Studio 2012 */
{
+ "msvcr120", 0, NULL
+ }, /* Visual Studio 2013 */
+ {
NULL, 0, NULL
}
};