Commit 4a1edb63 authored by Wayne Davison's avatar Wayne Davison

If iconv_t isn't needed, define it as an "int" so that our

proto.h file can be parsed.
parent 3170b209
......@@ -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 <assert.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment