Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Move macro definition to config.h which is included everywhere to fix build failure reported on mailing list with "configure --json --with-tcl --with-th1-docs". |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
36e7558a11598f3e27751272415c938e |
| User & Date: | andybradford 2016-11-06 16:10:45.415 |
References
|
2016-11-06
| ||
| 16:40 | Correct commit that had mistake in macro definition in [36e7558a11598]. check-in: 427c34feea user: andybradford tags: trunk | |
| 16:38 | Correct incorrect commit in [36e7558a11598] (with incorrectly committed code) Closed-Leaf check-in: ae424dc16a user: andybradford tags: mistake | |
Context
|
2016-11-06
| ||
| 16:40 | Correct commit that had mistake in macro definition in [36e7558a11598]. check-in: 427c34feea user: andybradford tags: trunk | |
| 16:38 | Correct incorrect commit in [36e7558a11598] (with incorrectly committed code) Closed-Leaf check-in: ae424dc16a user: andybradford tags: mistake | |
| 16:10 | Move macro definition to config.h which is included everywhere to fix build failure reported on mailing list with "configure --json --with-tcl --with-th1-docs". check-in: 36e7558a11 user: andybradford tags: trunk | |
| 03:02 | Fix wiki syntax error check-in: 000f2193b0 user: andygoth tags: trunk | |
Changes
Changes to src/config.h.
| ︙ | ︙ | |||
225 226 227 228 229 230 231 232 | */ #if defined(__GNUC__) || defined(__clang__) # define NORETURN __attribute__((__noreturn__)) #else # define NORETURN #endif #endif /* _RC_COMPILE_ */ | > > > > > > > | 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | */ #if defined(__GNUC__) || defined(__clang__) # define NORETURN __attribute__((__noreturn__)) #else # define NORETURN #endif /* ** Number of elements in an array */ #ifndef fossil_sizeof # define count(X) (sizeof(X)/sizeof(X[0])) #endif #endif /* _RC_COMPILE_ */ |
Changes to src/main.c.
| ︙ | ︙ | |||
47 48 49 50 51 52 53 | # include "tcl.h" #endif #ifdef FOSSIL_ENABLE_JSON # include "cson_amalgamation.h" /* JSON API. */ # include "json_detail.h" #endif | < < < < < | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | # include "tcl.h" #endif #ifdef FOSSIL_ENABLE_JSON # include "cson_amalgamation.h" /* JSON API. */ # include "json_detail.h" #endif /* ** Size of a UUID in characters */ #define UUID_SIZE 40 /* ** Maximum number of auxiliary parameters on reports |
| ︙ | ︙ |