|
diff --git a/Makefile b/Makefile index faf7b98..c9be8fa 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -65,9 +65,11 @@ CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' |
65 | |
65 | |
66 | cgit: $(OBJECTS) |
66 | cgit: $(OBJECTS) |
67 | $(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) |
67 | $(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) |
68 | |
68 | |
69 | $(OBJECTS): git/xdiff/lib.a git/libgit.a VERSION |
69 | $(OBJECTS): git/xdiff/lib.a git/libgit.a |
| |
70 | |
| |
71 | cgit.o: VERSION |
70 | |
72 | |
71 | -include $(OBJECTS:.o=.d) |
73 | -include $(OBJECTS:.o=.d) |
72 | |
74 | |
73 | git/xdiff/lib.a: | git |
75 | git/xdiff/lib.a: | git |
|
|
diff --git a/cgit.c b/cgit.c index b3dd119..3943a0f 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -9,8 +9,10 @@ |
9 | #include "cgit.h" |
9 | #include "cgit.h" |
10 | #include "cmd.h" |
10 | #include "cmd.h" |
11 | #include "ui-shared.h" |
11 | #include "ui-shared.h" |
12 | |
12 | |
| |
13 | const char *cgit_version = CGIT_VERSION; |
| |
14 | |
13 | void config_cb(const char *name, const char *value) |
15 | void config_cb(const char *name, const char *value) |
14 | { |
16 | { |
15 | if (!strcmp(name, "root-title")) |
17 | if (!strcmp(name, "root-title")) |
16 | ctx.cfg.root_title = xstrdup(value); |
18 | ctx.cfg.root_title = xstrdup(value); |
|
|
diff --git a/shared.c b/shared.c index cd60da5..48002ac 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -11,10 +11,8 @@ |
11 | struct cgit_repolist cgit_repolist; |
11 | struct cgit_repolist cgit_repolist; |
12 | struct cgit_context ctx; |
12 | struct cgit_context ctx; |
13 | int cgit_cmd; |
13 | int cgit_cmd; |
14 | |
14 | |
15 | const char *cgit_version = CGIT_VERSION; |
| |
16 | |
| |
17 | int chk_zero(int result, char *msg) |
15 | int chk_zero(int result, char *msg) |
18 | { |
16 | { |
19 | if (result != 0) |
17 | if (result != 0) |
20 | die("%s: %s", msg, strerror(errno)); |
18 | die("%s: %s", msg, strerror(errno)); |
|