summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander2016-04-22 09:18:59 +0000
committerMagnus Hagander2016-04-22 09:19:57 +0000
commit409c49c64a0549c39044ed6ea845ba0fb6c6190d (patch)
tree3fa91eef93a25909020dd2d47c04ef2f3ea653c4
parent81deadd317fca3f3230af2468ac29b7c36825fa3 (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 923cd03a215..bf1203f862c 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
}
};