This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Eggdrop on Solaris

Old posts that have not been replied to for several years.
Locked
s
spide

Eggdrop on Solaris

Post by spide »

Is there some things I shoud know when installing eggdrop on Solaris?
I've tried but it gives error message when running make. It starts the linking part and then says:

gcc -pipe -o ../eggdrop bg.o botcmd.o botmsg.o botnet.o chanprog.o cmds.o dcc.o dccutil.o dns.o flags.o language.o main.o mem.o misc.o misc_file.o modules.o net.o rfc1459.o tcl.o tcldcc.o tclhash.o tclmisc.o tcluser.o userent.o userrec.o users.o -L/usr/local/lib -ltcl -lm -ldl -ldns -lnsl -lsocket md5/md5c.o compat/*.o `cat mod/mod.xlibs`
../eggdrop
ld.so.1: ../eggdrop: fatal: libtcl.so: open failed: No such file or directory
make[1]: *** [../eggdrop] Killed
make[1]: *** Deleting file `../eggdrop'
make[1]: Leaving directory `/home/oppilaat/99/tie90y3/pasasa00/eggdrop/src'
make: *** [modegg] Error 2

Could anyone help me?
y
ybO

Post by ybO »

Do You have tcl installed at all?
Make searches libtcl.so (shared library). It could be in
/usr/lib, or /usr/local/lib . Where do You have it?
Mybe You find these:
ls /usr/local/lib/
libtcl8.4.so libtclstub8.4.a php php.ini tcl8.4 tclConfig.sh
as in my system.....
try then to make link,
ln -s /usr/local/lib/libtcl8.4.so /usr/local/lib/libtcl.so
and then make again.....
W
Wcc
Master
Posts: 278
Joined: Sun Oct 28, 2001 8:00 pm
Location: USA
Contact:

Post by Wcc »

Run this:

Code: Select all

export LD_LIBRARY_PATH=/dir/containing/tcl/library
ld appears to be incorrectly configured.
Locked