Author Topic: Make error  (Read 5942 times)

0 Members and 1 Guest are viewing this topic.

Newest make error:
In ship.cpp, "TARGET_SHIP_IGNORE_FLAGS" isn't declared...
So ship.cpp doesn't compile...

 

Offline Alpha0

  • 24
Add the line indicated below in ship.cpp, at the beginning of the code in the file (this starts around line 1588):

Code: [Select]

int Ai_render_debug_flag=0;
#ifndef NDEBUG
int Ship_sphere_check = 0;
int Ship_auto_repair = 1; // flag to indicate auto-repair of subsystem should occur
extern void render_path_points(object *objp);
#endif

extern int TARGET_SHIP_IGNORE_FLAGS;       // <----- Add this line here


and you should be able to compile it.

 
Thanks Alpha0, but I only wanted to report it ;)

 

Offline WMCoolmon

  • Purveyor of space crack
  • 213
Should be fixed in CVS
-C

 
@WMCoolmon: Sorry, but it isn't...
I always use the newest CVS-Tree and still this error occures...

 

Offline taylor

  • Super SCP/Linux Guru
  • Moderator
  • 212
    • http://www.icculus.org/~taylor
It showed up in the CVS log mailing but never actually hit the tree.  That's happened a few times with my stuff too.  It looks like it goes in but actually doesn't.  I've already got it ready to go back in during my next commit later today.

 

Offline Goober5000

  • HLP Loremaster
  • Moderator
  • 214
    • Goober5000 Productions
As opposed to other stuff going in but looking like it doesn't?  Ugh.  This is even worse. :(