I am trying to compile dreams of demise using linux, however I have been getting this error.
gcc -c -g3 -ggdb -Dlinux act_comm.c
In file included from act_comm.c:12:
merc.h:890: error: array type has incomplete element type
In file included from act_comm.c:12:
merc.h:6400: error: array type has incomplete element type
make: *** [act_comm.o] Error 1
[Timothy@localhost src]$
/*
* J.O.P.E - Jobo Online Playerfile Editor
*/
bool jope_load_char args ((CHAR_DATA * ch, char *arg));
void jope_free_char args ((CHAR_DATA * ch));
void jope_interp args ((CHAR_DATA * ch, char *argument));
890>extern const struct jope_type jope_table[];
extern ALIAS_DATA * alias_free;
struct jope_type
void load_immortals ();
extern const char *imm_ranks[];
6400>extern struct immortal_list immlist[999];
any help would be appreciated
gcc -c -g3 -ggdb -Dlinux act_comm.c
In file included from act_comm.c:12:
merc.h:890: error: array type has incomplete element type
In file included from act_comm.c:12:
merc.h:6400: error: array type has incomplete element type
make: *** [act_comm.o] Error 1
[Timothy@localhost src]$
/*
* J.O.P.E - Jobo Online Playerfile Editor
*/
bool jope_load_char args ((CHAR_DATA * ch, char *arg));
void jope_free_char args ((CHAR_DATA * ch));
void jope_interp args ((CHAR_DATA * ch, char *argument));
890>extern const struct jope_type jope_table[];
extern ALIAS_DATA * alias_free;
struct jope_type
void load_immortals ();
extern const char *imm_ranks[];
6400>extern struct immortal_list immlist[999];
any help would be appreciated