x86_64 arch

Christian.Iseli at licr.org Christian.Iseli at licr.org
Wed Nov 16 08:44:00 UTC 2005


eric.tanguy at univ-nantes.fr said:
> the build log is http://buildsys.fedoraproject.org/logs/fedora-development-ext
> ras/960-ircd-hybrid-7.1.3-7.fc5/x86_64/build.log if someone could see what is
> the problem and how to solve it because i still have no answer from upstream.

Your problem is that the file src/lex.yy.c does the following at its top:
#if defined(__FreeBSD__)
#include <sys/cdefs.h>
#else
#define __unused
#endif

Then, when more headers are included, you hit this in /usr/include/bits/stat.h:
#if __WORDSIZE == 64
    long int __unused[3];
#else

I'd recommend something like:
sed -i 's/__unused/__my_unused/g' src/lex.yy.c

Cheers,
					Christian





More information about the fedora-extras-list mailing list