From 4a1edb63dd28c8b347d1a99551232dd8a13475e7 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 18 Sep 2007 18:45:59 +0000 Subject: [PATCH] If iconv_t isn't needed, define it as an "int" so that our proto.h file can be parsed. --- rsync.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 -- 2.34.1