summaryrefslogtreecommitdiff
path: root/src
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:18 -0400
commitab5c6d01f6dbe036469fd77b488a21ca8d7d26f1 (patch)
tree1ade3953a38ae2c175b39e064cf8443009b20863 /src
parentd9742ac4636ec847f9fd54c9d690da7402319063 (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 b5f4e8e6d66..9177a14b0ef 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
}
};