David Bacher wrote:
[]
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../autoopts -I/sw/include -g
-O2 -MT libopts.lo -MD -MP -MF .deps/libopts.Tpo -c libopts.c
-fno-common -DPIC -o .libs/libopts.o
In file included from /usr/include/ctype.h:69,
from ../compat/compat.h:85,
from libopts.c:2:
/usr/include/runetype.h:71: error: two or more data types in
declaration specifiers
/usr/include/runetype.h:71: error: two or more data types in
declaration specifiers
At line 85, compat.h includes ctype.h.
The problem is that configure does not include ctype.h in its
ac_includes_default. Therefore when it tests for wint_t it concludes
that it is undefined and #defines it to unsigned int. Adding
#include <ctype.h>
to the definition of ac_includes_default in configure solves this for
me. There may more elegant solutions...
This looks like a bug in the autogen sources.
--
Martin
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel