aboutsummaryrefslogtreecommitdiffstats
path: root/parsing.c
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2008-12-05 19:10:28 +0100
committerLars Hjemli <hjemli@gmail.com>2008-12-05 19:10:28 +0100
commit14b4e108a73b09ce9b6df2c7f2e417305ad68cf4 (patch)
treed31fe76c70e7149708e78e67fbd61bc2b31f816a /parsing.c
parentui-repolist: avoid build warning for strcasestr(3) (diff)
downloadcgit-14b4e108a73b09ce9b6df2c7f2e417305ad68cf4.tar.xz
cgit-14b4e108a73b09ce9b6df2c7f2e417305ad68cf4.zip
parsing.c: enable builds with NO_ICONV defined
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'parsing.c')
-rw-r--r--parsing.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/parsing.c b/parsing.c
index c8f3048..f3f3b15 100644
--- a/parsing.c
+++ b/parsing.c
@@ -96,6 +96,9 @@ char *parse_user(char *t, char **name, char **email, unsigned long *date)
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 @@ const char *reencode(char **txt, const char *src_enc, const char *dst_enc)
}
return *txt;
}
+#endif
struct commitinfo *cgit_parse_commit(struct commit *commit)
{