From: Wayne Davison Date: Tue, 18 Sep 2007 18:45:59 +0000 (+0000) Subject: If iconv_t isn't needed, define it as an "int" so that our X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/4a1edb63dd28c8b347d1a99551232dd8a13475e7 If iconv_t isn't needed, define it as an "int" so that our proto.h file can be parsed. --- diff --git a/rsync.h b/rsync.h index 7b9dc285..c1250b68 100644 --- a/rsync.h +++ b/rsync.h @@ -370,9 +370,15 @@ enum msgcode { #ifndef ICONV_CONST #define ICONV_CONST #endif -#elif defined ICONV_CONST +#else +#ifdef ICONV_CONST #undef ICONV_CONST #endif +#ifdef iconv_t +#undef iconv_t +#endif +#define iconv_t int +#endif #include