|
diff --git a/Makefile b/Makefile index 2a15469..6c9d118 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -16,6 +16,11 @@ INSTALL = install |
16 | # |
16 | # |
17 | # Define NEEDS_LIBICONV if linking with libc is not enough (eg. Darwin). |
17 | # Define NEEDS_LIBICONV if linking with libc is not enough (eg. Darwin). |
18 | # |
18 | # |
| |
19 | # Define NO_C99_FORMAT if your formatted IO functions (printf/scanf et.al.) |
| |
20 | # do not support the 'size specifiers' introduced by C99, namely ll, hh, |
| |
21 | # j, z, t. (representing long long int, char, intmax_t, size_t, ptrdiff_t). |
| |
22 | # some C compilers supported these specifiers prior to C99 as an extension. |
| |
23 | # |
19 | |
24 | |
20 | #-include config.mak |
25 | #-include config.mak |
21 | |
26 | |
@@ -127,6 +132,9 @@ endif |
127 | ifdef NO_STRCASESTR |
132 | ifdef NO_STRCASESTR |
128 | CFLAGS += -DNO_STRCASESTR |
133 | CFLAGS += -DNO_STRCASESTR |
129 | endif |
134 | endif |
| |
135 | ifdef NO_C99_FORMAT |
| |
136 | CFLAGS += -DNO_C99_FORMAT |
| |
137 | endif |
130 | ifdef NO_OPENSSL |
138 | ifdef NO_OPENSSL |
131 | CFLAGS += -DNO_OPENSSL |
139 | CFLAGS += -DNO_OPENSSL |
132 | GIT_OPTIONS += NO_OPENSSL=1 |
140 | GIT_OPTIONS += NO_OPENSSL=1 |
|
|
diff --git a/cgit.c b/cgit.c index d6146e2..3b3f8d9 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -610,7 +610,7 @@ static void process_cached_repolist(const char *path) |
610 | hash = hash_str(path); |
610 | hash = hash_str(path); |
611 | if (ctx.cfg.project_list) |
611 | if (ctx.cfg.project_list) |
612 | hash += hash_str(ctx.cfg.project_list); |
612 | hash += hash_str(ctx.cfg.project_list); |
613 | cached_rc = xstrdup(fmt("%s/rc-%8x", ctx.cfg.cache_root, hash)); |
613 | cached_rc = xstrdup(fmt("%s/rc-%8lx", ctx.cfg.cache_root, hash)); |
614 | |
614 | |
615 | if (stat(cached_rc, &st)) { |
615 | if (stat(cached_rc, &st)) { |
616 | /* Nothing is cached, we need to scan without forking. And |
616 | /* Nothing is cached, we need to scan without forking. And |
|
|
diff --git a/ui-diff.c b/ui-diff.c index 0dcabe9..7ff7e46 100644 --- a/ ui-diff.c+++ b/ ui-diff.c |
|
@@ -92,7 +92,7 @@ static void print_fileinfo(struct fileinfo *info) |
92 | info->old_path); |
92 | info->old_path); |
93 | html("</td><td class='right'>"); |
93 | html("</td><td class='right'>"); |
94 | if (info->binary) { |
94 | if (info->binary) { |
95 | htmlf("bin</td><td class='graph'>%d -> %d bytes", |
95 | htmlf("bin</td><td class='graph'>%ld -> %ld bytes", |
96 | info->old_size, info->new_size); |
96 | info->old_size, info->new_size); |
97 | return; |
97 | return; |
98 | } |
98 | } |
|
|
diff --git a/ui-log.c b/ui-log.c index 0536b23..41b5225 100644 --- a/ ui-log.c+++ b/ ui-log.c |
|
@@ -228,8 +228,7 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *pattern |
228 | commit->parents = NULL; |
228 | commit->parents = NULL; |
229 | } |
229 | } |
230 | if (pager) { |
230 | if (pager) { |
231 | htmlf("</table><div class='pager'>", |
231 | html("</table><div class='pager'>"); |
232 | columns); |
| |
233 | if (ofs > 0) { |
232 | if (ofs > 0) { |
234 | cgit_log_link("[prev]", NULL, NULL, ctx.qry.head, |
233 | cgit_log_link("[prev]", NULL, NULL, ctx.qry.head, |
235 | ctx.qry.sha1, ctx.qry.vpath, |
234 | ctx.qry.sha1, ctx.qry.vpath, |
|
|
|
|
@@ -5,6 +5,12 @@ |
5 | #include "ui-shared.h" |
5 | #include "ui-shared.h" |
6 | #include "ui-stats.h" |
6 | #include "ui-stats.h" |
7 | |
7 | |
| |
8 | #ifdef NO_C99_FORMAT |
| |
9 | #define SZ_FMT "%u" |
| |
10 | #else |
| |
11 | #define SZ_FMT "%zu" |
| |
12 | #endif |
| |
13 | |
8 | #define MONTHS 6 |
14 | #define MONTHS 6 |
9 | |
15 | |
10 | struct authorstat { |
16 | struct authorstat { |
@@ -283,10 +289,10 @@ void print_combined_authorrow(struct string_list *authors, int from, int to, |
283 | if (date) |
289 | if (date) |
284 | subtotal += (size_t)date->util; |
290 | subtotal += (size_t)date->util; |
285 | } |
291 | } |
286 | htmlf("<td class='%s'>%d</td>", centerclass, subtotal); |
292 | htmlf("<td class='%s'>%ld</td>", centerclass, subtotal); |
287 | total += subtotal; |
293 | total += subtotal; |
288 | } |
294 | } |
289 | htmlf("<td class='%s'>%d</td></tr>", rightclass, total); |
295 | htmlf("<td class='%s'>%ld</td></tr>", rightclass, total); |
290 | } |
296 | } |
291 | |
297 | |
292 | void print_authors(struct string_list *authors, int top, |
298 | void print_authors(struct string_list *authors, int top, |
@@ -335,16 +341,16 @@ void print_authors(struct string_list *authors, int top, |
335 | if (!date) |
341 | if (!date) |
336 | html("<td>0</td>"); |
342 | html("<td>0</td>"); |
337 | else { |
343 | else { |
338 | htmlf("<td>%d</td>", date->util); |
344 | htmlf("<td>"SZ_FMT"</td>", (size_t)date->util); |
339 | total += (size_t)date->util; |
345 | total += (size_t)date->util; |
340 | } |
346 | } |
341 | } |
347 | } |
342 | htmlf("<td class='sum'>%d</td></tr>", total); |
348 | htmlf("<td class='sum'>%ld</td></tr>", total); |
343 | } |
349 | } |
344 | |
350 | |
345 | if (top < authors->nr) |
351 | if (top < authors->nr) |
346 | print_combined_authorrow(authors, top, authors->nr - 1, |
352 | print_combined_authorrow(authors, top, authors->nr - 1, |
347 | "Others (%d)", "left", "", "sum", period); |
353 | "Others (%ld)", "left", "", "sum", period); |
348 | |
354 | |
349 | print_combined_authorrow(authors, 0, authors->nr - 1, "Total", |
355 | print_combined_authorrow(authors, 0, authors->nr - 1, "Total", |
350 | "total", "sum", "sum", period); |
356 | "total", "sum", "sum", period); |
@@ -367,7 +373,7 @@ void cgit_show_stats(struct cgit_context *ctx) |
367 | |
373 | |
368 | i = cgit_find_stats_period(code, &period); |
374 | i = cgit_find_stats_period(code, &period); |
369 | if (!i) { |
375 | if (!i) { |
370 | cgit_print_error(fmt("Unknown statistics type: %c", code)); |
376 | cgit_print_error(fmt("Unknown statistics type: %c", code[0])); |
371 | return; |
377 | return; |
372 | } |
378 | } |
373 | if (i > ctx->repo->max_stats) { |
379 | if (i > ctx->repo->max_stats) { |
|
|
diff --git a/ui-tree.c b/ui-tree.c index 75ec9cb..0cdbf6d 100644 --- a/ ui-tree.c+++ b/ ui-tree.c |
|
@@ -67,7 +67,7 @@ static void print_binary_buffer(char *buf, unsigned long size) |
67 | html("<table summary='blob content' class='bin-blob'>\n"); |
67 | html("<table summary='blob content' class='bin-blob'>\n"); |
68 | html("<tr><th>ofs</th><th>hex dump</th><th>ascii</th></tr>"); |
68 | html("<tr><th>ofs</th><th>hex dump</th><th>ascii</th></tr>"); |
69 | for (ofs = 0; ofs < size; ofs += ROWLEN, buf += ROWLEN) { |
69 | for (ofs = 0; ofs < size; ofs += ROWLEN, buf += ROWLEN) { |
70 | htmlf("<tr><td class='right'>%04x</td><td class='hex'>", ofs); |
70 | htmlf("<tr><td class='right'>%04lx</td><td class='hex'>", ofs); |
71 | for (idx = 0; idx < ROWLEN && ofs + idx < size; idx++) |
71 | for (idx = 0; idx < ROWLEN && ofs + idx < size; idx++) |
72 | htmlf("%*s%02x", |
72 | htmlf("%*s%02x", |
73 | idx == 16 ? 4 : 1, "", |
73 | idx == 16 ? 4 : 1, "", |
@@ -108,7 +108,7 @@ static void print_object(const unsigned char *sha1, char *path, const char *base |
108 | html(")\n"); |
108 | html(")\n"); |
109 | |
109 | |
110 | if (ctx.cfg.max_blob_size && size / 1024 > ctx.cfg.max_blob_size) { |
110 | if (ctx.cfg.max_blob_size && size / 1024 > ctx.cfg.max_blob_size) { |
111 | htmlf("<div class='error'>blob size (%dKB) exceeds display size limit (%dKB).</div>", |
111 | htmlf("<div class='error'>blob size (%ldKB) exceeds display size limit (%dKB).</div>", |
112 | size / 1024, ctx.cfg.max_blob_size); |
112 | size / 1024, ctx.cfg.max_blob_size); |
113 | return; |
113 | return; |
114 | } |
114 | } |
|