Re: [Methabot-users] Error in building methabot
Brought to you by:
sdac
|
From: Emil R. <sda...@gm...> - 2007-11-16 07:44:48
|
(Didn't notice earlier but the emails didn't go through the mailing list, forwarding) Hi David, 2007/11/16, David Beckwith <dbi...@gm...>: > Hi, > I added that include and I got past that compile error. I had to > add it to one other file: methaconfig.c as well. But now I have > another error: > [...] > > /root/db_crawler/install/methabot/src/methaconfig_file.c:45: error: > syntax error before "usec_t" > Still looks like a useconds_t error, perhaps you don't have that datatype. Please try replacing (possibly line 45, methaconfig_file.c): typedef useconds_t usec_t; with typedef unsigned int usec_t; I suspect it will throw crap at the usleep() instead after this, if this is the case then consider updating your C library. > > I am in the process of getting SVN install on my server, so I can't do > an svn co yet, but I'll try that next. Anyway, just thought i'd let > you know. I'm using Red Hat Enterprise Linux ES release 4 (Nahant > Update 5) with almost nothing installed on this box... > > thanks, > D :) > > Just curious, what GCC version and glib version do you have installed? Regards, Emil Romanus |