all repos — cgit @ 14b4e108a73b09ce9b6df2c7f2e417305ad68cf4

a hyperfast web frontend for git written in c

parsing.c: enable builds with NO_ICONV defined

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Lars Hjemli hjemli@gmail.com
Fri, 05 Dec 2008 19:10:28 +0100
commit

14b4e108a73b09ce9b6df2c7f2e417305ad68cf4

parent

7115f7d257b5e3fb5d5d7ad6299214506fb35042

1 files changed, 4 insertions(+), 0 deletions(-)

jump to
M parsing.cparsing.c

@@ -96,6 +96,9 @@ }

return p; } +#ifdef NO_ICONV +#define reencode(a, b, c) +#else const char *reencode(char **txt, const char *src_enc, const char *dst_enc) { char *tmp;

@@ -110,6 +113,7 @@ *txt = tmp;

} return *txt; } +#endif struct commitinfo *cgit_parse_commit(struct commit *commit) {