afther alot of time i could compile it... i dont know why but the configure autodetected my tcl but itgave me error and i have to specific the tcl header and library and it compile
but when it was about to start with ./eggdrop -v it gave me error
You could do ldd on your tcllib and see if there's a dependent lib missing, or you could do "strace eggdrop -v > out.log 2>&1" and then read through the strace log to see what exactly is missing.
If you had to specify the lib path during configure, then you should add that path to your /etc/ld.so.conf and run ldconfig so that the path is automatically checked when running programs (eg, put /usr/local/lib or whatever path libtcl is in, into /etc/ld.so.conf) ld.so.conf exists in linux and bsd (I think.)