20 Dec, 2010, Ssolvarain wrote in the 1st comment:
Votes: 0
obj/interp.o:(.rodata+0x5f4): undefined reference to `do_gossip'
obj/interp.o:(.rodata+0x604): undefined reference to `do_gossip'
collect2: ld returned 1 exit status
make: *** [rom] Error 1


Not entirely sure what's going on, since I changed do_gossip to do_ooc in interp.h.
(using quickmud)

Edit:
Returned line 333 in act_comm.c
void do_gossip(CHAR_DATA * ch, char *argument)

to its original state. No compile errors. I'm even more confused now xD
20 Dec, 2010, plamzi wrote in the 2nd comment:
Votes: 0
Did you do a "make clean"? Sometimes you have to do that manually for header file changes.

Or maybe you didn't rename all references to do_gossip?
20 Dec, 2010, Sryth wrote in the 3rd comment:
Votes: 0
Quote
Not entirely sure what's going on, since I changed do_gossip to do_ooc in interp.h.
(using quickmud)


Check interp.c And I'd do a grep for do_gossip on the entire src directory actually.
20 Dec, 2010, Ssolvarain wrote in the 4th comment:
Votes: 0
plamzi said:
Did you do a "make clean"? Sometimes you have to do that manually for header file changes.


That would have been the problem. Thanks :)
0.0/4