[IRCServices] DreamForge 4.6.7
Andrew Church
achurch at dragonfire.net
Mon Jan 3 11:19:38 PST 2000
>gcc -I../include -O -g -c userload.c -o userload.o
>In file included from userload.c:35:
>/usr/include/string.h:266: conflicting types for `myncmp'
>../include/common.h:77: previous declaration of `myncmp'
It looks like your system includes define "myncmp", which Dreamforge
wants to use itself. The easiest solution would be to edit userload.c and
bracket the #include for string.h with #define's to hide the system
function:
#define myncmp _builtin_myncmp
#include <string.h>
#undef myncmp
Good luck.
--Andrew Church
achurch at dragonfire.net
http://achurch.dragonfire.net/
---------------------------------------------------------------
To unsubscribe, send email to majordomo at ender.shadowfire.org
with "unsubscribe ircservices" in the body, without the quotes.