Sorry for a late response, been out of town for the last week or so..
To the issue;
You need to have "tcl" installed on your system for eggdrop to compile properly, and sometimes you must help eggdrop find it.
Also, to make things more complicated, many distributions separate the runtime libraries from the "devel" files. This means, that despite yum (or whatever packet manager you use) say tcl is installed, you actually need tcl-devel or something like that. In your case, I'd start checking this.
During compilation, the configure-script will try its best to find the location of any installed tcl-libraries on the system, however, sometimes tcl has been installed in some dark corner of the filesystem where the script doesn't know where to look. In these cases you need to use the --with-tcllib and --with-tclinc options with configure to actually tell where they are:
Code: Select all
./configure --with-tcllib=/path/to/libtcl.so --with-tclinc=/path/to/tcl.h
Of course, replace /path/to/libtcl.so and /path/to/tcl.h to the actual paths