Differences From Artifact [b0d94a1b2d]:
- File src/config.h — part of check-in [86d2b4efc8] at 2011-10-15 12:16:04 on branch trunk — Mark functions that never return (ex: fossil_panic()) as such so that static analyzers can do a better job of pruning paths. (user: drh size: 4058) [more...]
To Artifact [e6f05181e7]:
- File src/config.h — part of check-in [d66cfb164f] at 2013-10-10 13:18:26 on branch trunk — Make sure that in Win64 builds _USE_32BIT_TIME_T is never defined. (user: jan.nijtmans size: 4182) [more...]
| ︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | + + + + + | ** some linux distributions, and possibly other unixes as well. */ #define _LARGE_FILE 1 #ifndef _FILE_OFFSET_BITS # define _FILE_OFFSET_BITS 64 #endif #define _LARGEFILE_SOURCE 1 /* Make sure that in 64-bit builds, _USE_32BIT_TIME_T is NEVER defined. */ #ifdef _WIN64 # undef _USE_32BIT_TIME_T #endif #ifdef HAVE_AUTOCONFIG_H #include "autoconfig.h" #endif #ifndef _RC_COMPILE_ |
| ︙ |