It looks like wchar_t is defined in standard C (since C90 according
http://en.wikipedia.org/wiki/Wide_character#C.2FC.2B.2B) so maybe we
can just remove the #else clause that typedef wchar_t?
-nc
---
Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org
Help: alpine-devel+help@lists.alpinelinux.org
---
On Thu, 10 Jul 2014 12:49:00 -0400
Paul Kilar <pkilar@gmail.com> wrote:
nice!
I get compile error on x86_64 though:
ipmiutil.c:77:2: warning: (near initialization for 'subcmds[6].desc') [enabled by default]
mv -f .deps/ipmiutil.Tpo .deps/ipmiutil.Po
In file included from igetevent.c:135:0:
imb_api.h:54:14: error: conflicting types for 'wchar_t'
typedef long wchar_t;
^
In file included from /usr/include/stdlib.h:19:0,
from igetevent.c:109:
/usr/include/bits/alltypes.h:18:13: note: previous declaration of 'wchar_t' was here
typedef int wchar_t;
^