Odd, it would seem your configure-script skips alot of tests, including any tests on availability, version, and functions of tcl..
A quickfix to get your eggie working properly, assuming your tcl-libs are indeed compiled with --enable-threads (most likely). would be to change this line in your config.h and recompile:
Code: Select all
/* Define for Tcl that has threads. */
/* #undef HAVE_TCL_THREADS */
into
Code: Select all
/* Define for Tcl that has threads. */
#define HAVE_TCL_THREADS 1
This however will not solve the issues with the configure-script.
Think you could start fresh, run configure again dumping the output into a file , and post it aswell? (ie: ./configure ... > myconf.log)