Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Reorder include statements in 'main.c' to resolve an obscure compilation issue reported via the mailing list. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
76303fb0c035fbe6ba57629c9591cd14 |
| User & Date: | mistachkin 2014-06-23 04:26:59.474 |
Context
|
2014-06-23
| ||
| 09:35 | Make daysOfWeek a const table. c/char const/const char/ ... (check-in: 1d30672588 user: jan.nijtmans tags: trunk) | |
| 04:26 | Reorder include statements in 'main.c' to resolve an obscure compilation issue reported via the mailing list. ... (check-in: 76303fb0c0 user: mistachkin tags: trunk) | |
|
2014-06-22
| ||
| 02:59 | "Usage" info for "fossil help rss", per mailing list request. (thx Michai Ramakers) ... (check-in: bc30d829ab user: bch tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
28 29 30 31 32 33 34 | #include <sys/stat.h> #include <stdlib.h> /* atexit() */ #if defined(_WIN32) # include <windows.h> #else # include <errno.h> /* errno global */ #endif | < > | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | #include <sys/stat.h> #include <stdlib.h> /* atexit() */ #if defined(_WIN32) # include <windows.h> #else # include <errno.h> /* errno global */ #endif #ifdef FOSSIL_ENABLE_SSL # include "openssl/crypto.h" #endif #include "zlib.h" #if INTERFACE #ifdef FOSSIL_ENABLE_TCL # include "tcl.h" #endif #ifdef FOSSIL_ENABLE_JSON # include "cson_amalgamation.h" /* JSON API. */ # include "json_detail.h" |
| ︙ | ︙ |