Quote:
Originally Posted by Tertiary
The code for GetNPCType is bracketed with #ifdef ZONE / #endif
For some reason, -DZONE is missing from your COPTS statement in the makefile, so GetNPCType is not getting compiled. Here's what mine is (unaltered from the distributed code on biosprite):
Code:
COPTS=$(WFLAGS) -O2 -ggdb -pthread -pipe -D_GNU_SOURCE -DINVERSEXY -DFX -DZONE $(DFLAGS) $(MYSQL_FLAGS)
|
Tertiary - Ahh, thank you, that did the trick.

I must have taken it out when I was editing the mysql flags and forgotten to put it back in. Thanks so much!
