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_6_BETA1~113 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=9f633b404cb3be6139f8dfdea00538489ffef9ab;p=postgresql.git 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 536f6466ad8..7e4ff624820 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 }