Hi, The attached small patch get rides of this warning in the iconv egg:
/usr/include/iconv.h:42:15: note: expected ‘char ** restrict’ but argument is of type ‘const char **’ I tried to contact the author but the email addresses found both in the egg and in the wiki are disabled, so perhaps he is here on the list. Regards, Hugo
71c71 < if (iconv((iconv_t) cd, (const char* *) &src, &srclen, &dst, &left) == -1) --- > if (iconv((iconv_t) cd, (char** __restrict) &src, &srclen, &dst, &left) == -1)
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Chicken-users mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/chicken-users
