diff options
author | Lars Hjemli <hjemli@gmail.com> | 2008-03-25 07:10:59 (JST) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-03-25 07:27:16 (JST) |
commit | 92908af4558d7362c7deeb05254343a5a5f11a05 (patch) | |
tree | 6913a6f567375446fb680bc7e94dbabb5d8e496d /cgit.c | |
parent | df90b51bafec24336cf30339b2978ff6df22b075 (diff) | |
download | cgit-92908af4558d7362c7deeb05254343a5a5f11a05.zip cgit-92908af4558d7362c7deeb05254343a5a5f11a05.tar.gz |
Move cgit_version from shared.c to cgit.c
With the matching Makefile change, this makes sure that only cgit.o and cgit
proper needs to be rebuildt when VERSION has been modified.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -10,6 +10,8 @@ | |||
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")) |