diff options
author | Lars Hjemli | 2008-12-05 19:10:28 +0100 |
---|---|---|
committer | Lars Hjemli | 2008-12-05 19:10:28 +0100 |
commit | 14b4e108a73b09ce9b6df2c7f2e417305ad68cf4 (patch) | |
tree | d31fe76c70e7149708e78e67fbd61bc2b31f816a | |
parent | 7115f7d257b5e3fb5d5d7ad6299214506fb35042 (diff) | |
download | cgit-14b4e108a73b09ce9b6df2c7f2e417305ad68cf4.tar.gz cgit-14b4e108a73b09ce9b6df2c7f2e417305ad68cf4.tar.bz2 cgit-14b4e108a73b09ce9b6df2c7f2e417305ad68cf4.zip |
parsing.c: enable builds with NO_ICONV defined
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | parsing.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -96,6 +96,9 @@ char *parse_user(char *t, char **name, char **email, unsigned long *date) | |||
96 | return p; | 96 | return p; |
97 | } | 97 | } |
98 | 98 | ||
99 | #ifdef NO_ICONV | ||
100 | #define reencode(a, b, c) | ||
101 | #else | ||
99 | const char *reencode(char **txt, const char *src_enc, const char *dst_enc) | 102 | const char *reencode(char **txt, const char *src_enc, const char *dst_enc) |
100 | { | 103 | { |
101 | char *tmp; | 104 | char *tmp; |
@@ -110,6 +113,7 @@ const char *reencode(char **txt, const char *src_enc, const char *dst_enc) | |||
110 | } | 113 | } |
111 | return *txt; | 114 | return *txt; |
112 | } | 115 | } |
116 | #endif | ||
113 | 117 | ||
114 | struct commitinfo *cgit_parse_commit(struct commit *commit) | 118 | struct commitinfo *cgit_parse_commit(struct commit *commit) |
115 | { | 119 | { |