bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

some problems with uClibc


From: Giuseppe Scrivano
Subject: some problems with uClibc
Date: Thu, 14 Apr 2011 15:59:13 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux)

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

[Prev in Thread] Current Thread [Next in Thread]