Hello,

During my attempt to port wget to uClibc-linux I have experienced
a couple of problems with gnulib.

1) With an uClibc compiled without wchar support I had to include
<stddef.h> in the "wchar.h" file.  uClibc defines __GLIBC__ as well, so
the previous guarded inclusion doesn't work.  I had to add:

#ifdef __UCLIBC__
# include <stddef.h>
#endif


2) Even if I have used the `mbtowc' gnulib module, the mbtowc.o object
file wasn't included in the final static library, it was necessary to
tweak manually the Makefile to do so.

Has anyone else experienced these problems?

Thanks,
Giuseppe

Reply via email to