Commit 63d908bc83b13698a15dd218f55e6f81ecbc94f6

  • avatar
  • Petr Ovtchenkov (Committer)
  • Wed Sep 02 11:23:41 CEST 2009
  • avatar
  • David Deakins <DavidDeakins @gm…l.com> (Author)
  • Fri Aug 28 04:48:25 CEST 2009
time.h fix for CRT extensions for Windows CE

If _STLP_USE_WINCE_CRT_FUNCTIONS is not defined with
Windows CE, the native time.h header was not included
by STLport's time.h.  This has been corrected so that
the native time.h is now included when CRT  extensions
are not being used.
  
2525# if !defined(__BUILDING_STLPORT) && (_STLP_OUTERMOST_HEADER_ID == 0x272)
2626# pragma message("eMbedded Visual C++ 3 doesn't have a time.h header; STLport won't include native time.h here")
2727# endif
28#elif defined(_STLP_WCE) && defined(_STLP_USE_WINCE_CRT_FUNCTIONS)
29# include <wince/time.h>
2830#else
2931# if defined (_STLP_HAS_INCLUDE_NEXT)
3032# include_next <time.h>