https://bugs.exim.org/show_bug.cgi?id=3145
--- Comment #5 from Lars Timmann <[email protected]> --- Hi Jeremy, from the testing we did yesterday the conditional part with strings.h: #ifdef __SunOS_5_11 # include <strings.h> /* for bzero() on Solaris 11.4 */ #endif does not work with GCC as only the Solaris Studio Compiler sets the macro __SunOS_5_11. So we had to set it externally to compile. And we had a new problem with the declaration of ICONV_ARG2_TYPE in os.h-SunOS5, this is what we changed to make the compiler happy: -#define ICONV_ARG2_TYPE const char ** +#define ICONV_ARG2_TYPE char ** restrict Greetings, Lars -- You are receiving this mail because: You are on the CC list for the bug. -- ## subscription configuration (requires account): ## https://lists.exim.org/mailman3/postorius/lists/exim-dev.lists.exim.org/ ## unsubscribe (doesn't require an account): ## [email protected] ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
