Changeset 2257
- Timestamp:
- 21/08/2008 12:08:44 (4 years ago)
- File:
-
- 1 edited
-
box/trunk/lib/common/BoxPlatform.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/lib/common/BoxPlatform.h
r2186 r2257 31 31 #ifdef WIN32 32 32 #ifdef __MSVCRT_VERSION__ 33 #error Must include Box.h before sys/types.h 33 #if __MSVCRT_VERSION__ < 0x0601 34 #error Must include Box.h before sys/types.h 35 #endif 36 #else 37 // need msvcrt version 6.1 or higher for _gmtime64() 38 // must define this before importing <sys/types.h> 39 #define __MSVCRT_VERSION__ 0x0601 34 40 #endif 35 // need msvcrt version 6.1 or higher for _gmtime64()36 // must define this before importing <sys/types.h>37 #define __MSVCRT_VERSION__ 0x060138 41 #endif 39 42 … … 154 157 155 158 // for Unix compatibility with Windows :-) 156 #if !HAVE_DECL_O_BINARY159 #ifndef O_BINARY 157 160 #define O_BINARY 0 158 161 #endif
Note: See TracChangeset
for help on using the changeset viewer.
