mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
VS2005 and later dafault size for time_t is 64-bit, unless
_USE_32BIT_TIME_T has been defined to get a 32-bit time_t
This commit is contained in:
parent
40e1a016f9
commit
8e9e33ae52
@ -353,6 +353,16 @@
|
|||||||
#define _CRT_NONSTDC_NO_DEPRECATE 1
|
#define _CRT_NONSTDC_NO_DEPRECATE 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* VS2005 and later dafault size for time_t is 64-bit, unless */
|
||||||
|
/* _USE_32BIT_TIME_T has been defined to get a 32-bit time_t. */
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
|
||||||
|
# ifndef _USE_32BIT_TIME_T
|
||||||
|
# define SIZEOF_TIME_T 8
|
||||||
|
# else
|
||||||
|
# define SIZEOF_TIME_T 4
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/* VS2008 does not support Windows build targets prior to WinXP, */
|
/* VS2008 does not support Windows build targets prior to WinXP, */
|
||||||
/* so, if no build target has been defined we will target WinXP. */
|
/* so, if no build target has been defined we will target WinXP. */
|
||||||
#if defined(_MSC_VER) && (_MSC_VER >= 1500)
|
#if defined(_MSC_VER) && (_MSC_VER >= 1500)
|
||||||
|
@ -314,6 +314,16 @@
|
|||||||
#define _CRT_NONSTDC_NO_DEPRECATE 1
|
#define _CRT_NONSTDC_NO_DEPRECATE 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* VS2005 and later dafault size for time_t is 64-bit, unless */
|
||||||
|
/* _USE_32BIT_TIME_T has been defined to get a 32-bit time_t. */
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
|
||||||
|
# ifndef _USE_32BIT_TIME_T
|
||||||
|
# define SIZEOF_TIME_T 8
|
||||||
|
# else
|
||||||
|
# define SIZEOF_TIME_T 4
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/* ---------------------------------------------------------------- */
|
/* ---------------------------------------------------------------- */
|
||||||
/* LDAP SUPPORT */
|
/* LDAP SUPPORT */
|
||||||
/* ---------------------------------------------------------------- */
|
/* ---------------------------------------------------------------- */
|
||||||
|
@ -187,6 +187,16 @@
|
|||||||
#define _CRT_NONSTDC_NO_DEPRECATE 1
|
#define _CRT_NONSTDC_NO_DEPRECATE 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* VS2005 and later dafault size for time_t is 64-bit, unless */
|
||||||
|
/* _USE_32BIT_TIME_T has been defined to get a 32-bit time_t. */
|
||||||
|
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
|
||||||
|
# ifndef _USE_32BIT_TIME_T
|
||||||
|
# define SIZEOF_TIME_T 8
|
||||||
|
# else
|
||||||
|
# define SIZEOF_TIME_T 4
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
/* VS2008 does not support Windows build targets prior to WinXP, */
|
/* VS2008 does not support Windows build targets prior to WinXP, */
|
||||||
/* so, if no build target has been defined we will target WinXP. */
|
/* so, if no build target has been defined we will target WinXP. */
|
||||||
#if defined(_MSC_VER) && (_MSC_VER >= 1500)
|
#if defined(_MSC_VER) && (_MSC_VER >= 1500)
|
||||||
|
Loading…
Reference in New Issue
Block a user