~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to src/config-win32.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2008-06-18 15:21:57 UTC
  • mto: (3.1.1 lenny) (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 28.
  • Revision ID: james.westby@ubuntu.com-20080618152157-j8b12047aqcl6kii
Tags: upstream-7.18.2
ImportĀ upstreamĀ versionĀ 7.18.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
187
187
#define _CRT_NONSTDC_NO_DEPRECATE 1
188
188
#endif
189
189
 
 
190
/* VS2005 and later dafault size for time_t is 64-bit, unless */
 
191
/* _USE_32BIT_TIME_T has been defined to get a 32-bit time_t. */
 
192
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
 
193
#  ifndef _USE_32BIT_TIME_T
 
194
#    define SIZEOF_TIME_T 8
 
195
#  else
 
196
#    define SIZEOF_TIME_T 4
 
197
#  endif
 
198
#endif
 
199
 
190
200
/* VS2008 does not support Windows build targets prior to WinXP, */
191
201
/* so, if no build target has been defined we will target WinXP. */
192
202
#if defined(_MSC_VER) && (_MSC_VER >= 1500)