summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMagnus Hagander2016-04-22 09:18:59 +0000
committerMagnus Hagander2016-04-22 09:20:07 +0000
commitc238a41014db7f818982641a8b95fae15515c88e (patch)
tree5ad00e38c68e83ed2cfc1c1d75ebde63bdb4c225 /src
parent3232c242724e743c0dd3afd972cb0cb5b5d12c33 (diff)
Add putenv support for msvcrt from Visual Studio 2013
This was missed when VS 2013 support was added. Michael Paquier
Diffstat (limited to 'src')
-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
}
};