]> git.cameronkatri.com Git - cgit.git/commitdiff
parsing.c: enable builds with NO_ICONV defined
authorLars Hjemli <hjemli@gmail.com>
Fri, 5 Dec 2008 18:10:28 +0000 (19:10 +0100)
committerLars Hjemli <hjemli@gmail.com>
Fri, 5 Dec 2008 18:10:28 +0000 (19:10 +0100)
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
parsing.c

index c8f30482eb301ba430ec97fc42c86feb47629c53..f3f3b15f736521f267e87dd474fee0af5c961250 100644 (file)
--- 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)
 {