From ab5c6d01f6dbe036469fd77b488a21ca8d7d26f1 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Fri, 22 Apr 2016 05:18:59 -0400 Subject: [PATCH] Add putenv support for msvcrt from Visual Studio 2013 This was missed when VS 2013 support was added. Michael Paquier --- src/port/win32env.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/port/win32env.c b/src/port/win32env.c index b5f4e8e6d6..9177a14b0e 100644 --- a/src/port/win32env.c +++ b/src/port/win32env.c @@ -66,6 +66,9 @@ pgwin32_putenv(const char *envval) { "msvcr110", 0, NULL }, /* Visual Studio 2012 */ + { + "msvcr120", 0, NULL + }, /* Visual Studio 2013 */ { NULL, 0, NULL } -- 2.50.0