mirror of
https://github.com/curl/curl.git
synced 2026-07-23 12:27:19 +03:00
better preprocessor check for recent MSVC versions
This commit is contained in:
parent
4c65eb0af8
commit
d6b0612882
1 changed files with 1 additions and 1 deletions
|
|
@ -352,7 +352,7 @@
|
|||
/* Undef keyword 'const' if it does not work. */
|
||||
/* #undef const */
|
||||
|
||||
#if _MSC_VER > 1310
|
||||
#if defined(_MSC_VER) && (_MSC_VER > 1310)
|
||||
/* MSVC 2003 has gmtime_r */
|
||||
#define HAVE_GMTIME_R
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue