I need to investigate this problem more.

Can you compile the following .c code without libiconv installed, by
using glibc or something else?

#include <stdlib.h>
#include <iconv.h>
int main() {
   iconv_t cd = iconv_open("","");
   iconv(cd,NULL,NULL,NULL,NULL);
   iconv_close(cd);
}

You can modify the code, add -l to gcc... On my system, I can not
compile it without (-liconv). I guess your system has different
iconv.h?

Thanks.
Bo

Reply via email to