diff options
| author | Andrew Dunstan <andrew@dunslane.net> | 2014-01-26 09:49:10 -0500 |
|---|---|---|
| committer | Andrew Dunstan <andrew@dunslane.net> | 2014-01-26 09:49:10 -0500 |
| commit | cec8394b5ccd32259e446f963690dd4784646b4d (patch) | |
| tree | 43df0a04e6e3201cb38101a07ab27fbfe22297c4 /src/include | |
| parent | 00ba97365d356823c48c02147b4cd66f8f06b1d6 (diff) | |
Enable building with Visual Studion 2013.
Backpatch to 9.3.
Brar Piening.
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/pg_config.h.win32 | 5 | ||||
| -rw-r--r-- | src/include/port/win32.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32 index 19ef4c1a9fb..006b999a1a0 100644 --- a/src/include/pg_config.h.win32 +++ b/src/include/pg_config.h.win32 @@ -295,7 +295,10 @@ /* #undef HAVE_READLINK */ /* Define to 1 if you have the `rint' function. */ -/*#define HAVE_RINT 1*/ +#if (_MSC_VER >= 1800) +#define HAVE_RINT 1 +#endif + /* Define to 1 if you have the global variable 'rl_completion_append_character'. */ diff --git a/src/include/port/win32.h b/src/include/port/win32.h index 2c2d93765ee..974807f5841 100644 --- a/src/include/port/win32.h +++ b/src/include/port/win32.h @@ -427,8 +427,10 @@ typedef unsigned short mode_t; #define W_OK 2 #define R_OK 4 +#if (_MSC_VER < 1800) #define isinf(x) ((_fpclass(x) == _FPCLASS_PINF) || (_fpclass(x) == _FPCLASS_NINF)) #define isnan(x) _isnan(x) +#endif /* Pulled from Makefile.port in mingw */ #define DLSUFFIX ".dll" |
