diff options
author | Magnus Hagander | 2016-04-22 09:18:59 +0000 |
---|---|---|
committer | Magnus Hagander | 2016-04-22 09:18:59 +0000 |
commit | 9f633b404cb3be6139f8dfdea00538489ffef9ab (patch) | |
tree | 622bdb8113fb20f3cf3be4e9c06ccc27a9f13239 /src/port/win32env.c | |
parent | abb164655c703a5013b7fcf83f855a071895dc91 (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/port/win32env.c')
-rw-r--r-- | src/port/win32env.c | 3 |
1 files changed, 3 insertions, 0 deletions
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 @@ -67,6 +67,9 @@ pgwin32_putenv(const char *envval) "msvcr110", 0, NULL }, /* Visual Studio 2012 */ { + "msvcr120", 0, NULL + }, /* Visual Studio 2013 */ + { NULL, 0, NULL } }; |