| View previous topic :: View next topic |
| Author |
Message |
sKy Op

Joined: 14 Apr 2005 Posts: 194 Location: Germany
|
Posted: Fri Apr 14, 2006 4:19 pm Post subject: compiling eggdrop with tcl from local install |
|
|
About a shell account on a unix box:
I want to use and install another Tcl version then default. (Only in my dir)
Installing tcl:
download: tcl8.4.12-src.tar.gz
tar -xvzf tcl8.4.12-src.tar.gz
cd tcl8.4.12
configure --enable-threads --enable-shared
make
make test
make install
Installing eggdrop
wget www.egghelp.org
tar -xvzf eggdrop.16.18.tar.gz
cd eggdrop1.6.18
./configure --with-tcllib --with-tclinc ??? I don`t know which arguments i have to use....
make
make iconfig
make
make install
So far okay? Don`t know if this would work.
Btw: what do you think about tcl 8.5? Already working well? _________________ socketapi | Code less, create more. |
|
| Back to top |
|
 |
De Kus Revered One

Joined: 15 Dec 2002 Posts: 1361 Location: Germany
|
Posted: Fri Apr 14, 2006 5:21 pm Post subject: |
|
|
read './configure --help'. The lib thing must point to path where tcl8.4 is included (usually '~/lib' for local install) and the header thing must point to the include dir where the header of the installed version is... probably it created a '~/include/', if not search for the headers (*.h) in the TCL source. _________________ De Kus
StarZ|De_Kus, De_Kus or DeKus on IRC
Copyright © 2005-2009 by De Kus - published under The MIT License
Love hurts, love strengthens... |
|
| Back to top |
|
 |
|