From: Magnus Hagander Date: Fri, 22 Apr 2016 09:18:59 +0000 (-0400) Subject: Add putenv support for msvcrt from Visual Studio 2013 X-Git-Tag: REL9_3_13~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab5c6d01f6dbe036469fd77b488a21ca8d7d26f1;p=postgresql Add putenv support for msvcrt from Visual Studio 2013 This was missed when VS 2013 support was added. Michael Paquier --- 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 }