|
diff --git a/Makefile b/Makefile index a36eede..3d8edb8 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -1,25 +1,29 @@ |
1 | CGIT_VERSION = 0.4 |
1 | CGIT_VERSION = 0.4 |
2 | |
2 | |
3 | prefix = /var/www/htdocs/cgit |
3 | prefix = /var/www/htdocs/cgit |
4 | |
4 | |
5 | SHA1_HEADER = <openssl/sha.h> |
5 | SHA1_HEADER = <openssl/sha.h> |
6 | |
| |
7 | CACHE_ROOT = /var/cache/cgit |
6 | CACHE_ROOT = /var/cache/cgit |
| |
7 | CGIT_CONFIG = /etc/cgitrc |
| |
8 | |
8 | EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto |
9 | EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto |
9 | OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ |
10 | OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ |
10 | ui-summary.o ui-log.o ui-view.o ui-tree.o ui-commit.o ui-diff.o \ |
11 | ui-summary.o ui-log.o ui-view.o ui-tree.o ui-commit.o ui-diff.o \ |
11 | ui-snapshot.o ui-blob.o |
12 | ui-snapshot.o ui-blob.o |
12 | |
13 | |
13 | CFLAGS += -Wall |
14 | CFLAGS += -Wall |
14 | |
15 | |
15 | ifdef DEBUG |
16 | ifdef DEBUG |
16 | CFLAGS += -g |
17 | CFLAGS += -g |
17 | endif |
18 | endif |
18 | |
19 | |
19 | CFLAGS += -Igit -DSHA1_HEADER='$(SHA1_HEADER)' |
20 | CFLAGS += -Igit |
| |
21 | CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' |
| |
22 | CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' |
| |
23 | CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' |
20 | |
24 | |
21 | |
25 | |
22 | # |
26 | # |
23 | # If make is run on a nongit platform, we need to get the git sources as a tarball. |
27 | # If make is run on a nongit platform, we need to get the git sources as a tarball. |
24 | # But there is currently no recent enough tarball available on kernel.org, so download |
28 | # But there is currently no recent enough tarball available on kernel.org, so download |
25 | # a zipfile from hjemli.net instead |
29 | # a zipfile from hjemli.net instead |
@@ -36,14 +40,13 @@ endif |
36 | # |
40 | # |
37 | # basic build rules |
41 | # basic build rules |
38 | # |
42 | # |
39 | all: cgit |
43 | all: cgit |
40 | |
44 | |
41 | cgit: cgit.c cgit.h $(OBJECTS) |
45 | cgit: cgit.c cgit.h $(OBJECTS) |
42 | $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ |
46 | $(CC) $(CFLAGS) cgit.c -o cgit $(OBJECTS) $(EXTLIBS) |
43 | $(OBJECTS) $(EXTLIBS) |
| |
44 | |
47 | |
45 | $(OBJECTS): cgit.h git/libgit.a |
48 | $(OBJECTS): cgit.h git/libgit.a |
46 | |
49 | |
47 | git/libgit.a: |
50 | git/libgit.a: |
48 | $(INITGIT) |
51 | $(INITGIT) |
49 | $(MAKE) -C git |
52 | $(MAKE) -C git |
|
|
diff --git a/cgit.c b/cgit.c index 1d7a83f..67ad103 100644 --- a/ cgit.c+++ b/ cgit.c |
|
@@ -240,13 +240,13 @@ int main(int argc, const char **argv) |
240 | htmlfd = STDOUT_FILENO; |
240 | htmlfd = STDOUT_FILENO; |
241 | item.st.st_mtime = time(NULL); |
241 | item.st.st_mtime = time(NULL); |
242 | cgit_repolist.length = 0; |
242 | cgit_repolist.length = 0; |
243 | cgit_repolist.count = 0; |
243 | cgit_repolist.count = 0; |
244 | cgit_repolist.repos = NULL; |
244 | cgit_repolist.repos = NULL; |
245 | |
245 | |
246 | cgit_read_config("/etc/cgitrc", cgit_global_config_cb); |
246 | cgit_read_config(CGIT_CONFIG, cgit_global_config_cb); |
247 | if (getenv("QUERY_STRING")) |
247 | if (getenv("QUERY_STRING")) |
248 | cgit_querystring = xstrdup(getenv("QUERY_STRING")); |
248 | cgit_querystring = xstrdup(getenv("QUERY_STRING")); |
249 | cgit_parse_args(argc, argv); |
249 | cgit_parse_args(argc, argv); |
250 | cgit_parse_query(cgit_querystring, cgit_querystring_cb); |
250 | cgit_parse_query(cgit_querystring, cgit_querystring_cb); |
251 | if (!cgit_prepare_cache(&item)) |
251 | if (!cgit_prepare_cache(&item)) |
252 | return 0; |
252 | return 0; |
|