Wcc Master
Joined: 28 Oct 2001 Posts: 278 Location: USA
|
Posted: Sat Jan 17, 2004 6:05 pm Post subject: |
|
|
First of all, don't use Eggdrop 1.3.x. Download a copy of Eggdrop 1.6.15 or 1.6.13 from www.eggheads.org. When Tcl isn't detected on your system, or Tcl won't link, here's what works 99.99999% of the time:
| Code: |
export LD_LIBRARY_PATH='/path/to/dir/containing/Tcl/library'
./configure --with-tclinc=/full/path/to/tcl.h --with-tcllib=/full/path/to/tcl/library
make config
make
|
Example:
| Code: |
export LD_LIBRARY_PATH='/usr/local/lib
./configure --with-tclinc=/usr/local/include/tcl.h --with-tcllib=/usr/local/lib/libtcl84.so
make config
make
|
There will be better documentation and a complete compile guide for various operating systems in 1.6.16. |
|