Hi, I dont know if you guys might be able to help or not, but Im helping code for my mud. The main adminstrator that looked over our code has gone awol and Im trying to figure out what package Im missing. I can compile the code but I have to turn off the ECL check in the makefile and im hoping someone might know what package Im missing. Im running a Debian Wheezy.
This is what I have to turn off in the Make file
#ECL?
ECL = 0
#if ECL is set, check if it is actually there
#ifeq ($(ECL),1)
# ECL = $(shell ./detect_ecl.sh)
#endif
These are the errors Im recieving if Its not turned off. I dont notice it actually affecting anything by turning it off. But it aggravates me by not being able to pinpoint this.
comm.cpp: In function ‘void boot_lisp(int, char**)’:
comm.cpp:419:40: error: ‘ecl_init_module’ was not declared in this scope
comm.cpp: In function ‘int main(int, char**)’:
comm.cpp:456:44: error: ‘ecl_init_module’ was not declared in this scope
comm.cpp: In function ‘void init_game(ush_int)’:
comm.cpp:841:42: error: ‘ecl_init_module’ was not declared in this scope
make[1]: *** [comm.o] Error 1
I do have common-lisp installed. Any help would be appreciated.