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
1 files changed,
4 insertions(+),
0 deletions(-)
jump to
M
parsing.c
→
parsing.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) {