Re: [Amcl-users] hi all, need some help
Status: Beta
Brought to you by:
lobbin
|
From: Mattias H. <mh...@sd...> - 2002-04-15 09:37:45
|
Well... the thing I did is that I changed some code is the file regex.h this is the old code /* * For benefit of old compilers, we offer <sys/types.h> the option of * overriding the `void' type used to declare nonexistent return types. */ #ifdef __REG_VOID_T typedef __REG_VOID_T re_void; #else typedef void re_void; #endif and I changed it to /* * For benefit of old compilers, we offer <sys/types.h> the option of * overriding the `void' type used to declare nonexistent return types. */ #ifdef __REG_VOID_T /* typedef __REG_VOID_T re_void; */ typedef void re_void; #else typedef void re_void; #endif and it worked... now it is only the error you see below that I cant fix and no, I cant find TclReFree in data.c what to do? MvH Mattias "Nallen" Holmstr=F6m On 15 Apr 2002, Robin Ericsson wrote: > On Mon, 2002-04-15 at 08:06, Mattias Holmstroem wrote: > > lol, got those errors and warnings away. > > Nice, what did you do? > > > Command: make -s > > > > Making all in doc > > Making all in C > > Making all in intl > > Making all in po > > Making all in src > > Undefined first referenced > > symbol in file > > dbopen > > /local/libraries/gnome-libs/1.2.3/lib/libgnome.so > > TclReFree data.o > > ld: fatal: Symbol referencing errors. No output written to gnome-mud > > collect2: ld returned 1 exit status > > make[2]: *** [gnome-mud] Error 1 > > make[1]: *** [all-recursive] Error 1 > > make: *** [all] Error 2 > > Hmm, TclReFree is no symbol I added to data.c. > > Can you find TclReFree in data.c? > > -- > Robin Ericsson <lobbin at localhost dot nu> > > "The secret of flying is to throw yourself at the ground, and miss." > -- Douglas Adams > > |