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.

compile problem

Old posts that have not been replied to for several years.
Locked
J
Jailmann
Voice
Posts: 33
Joined: Fri Apr 09, 2004 2:50 pm

compile problem

Post by Jailmann »

hello

use ./configure --prefix=/home/bot/

it goes well then i make config just fine

then i have to make it goes fine until this part shows dose this mean..

Test run of ./eggdrop -v:
./eggdrop: error while loading shared libraries: libtcl8.4.so: cannot open shared object file: No such file or directory
make: *** [modules] Error 127
-bash-2.05b$
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

locate your TCL libs and:

if you are the admin of that machine and it has /etc/ld.so.conf, add path to TCL libs to it and then issue the command `ldconfig'

if you aren't admin or/and there's no /etc/ld.so.conf, simply export LD_LIBRARY_PATH to the path to TCL libs:

under bash:

Code: Select all

$ export LD_LIBRARY_PATH=/path/to/your/tcl/libs
under csh:

Code: Select all

% setenv LD_LIBRARY_PATH /path/to/your/tcl/libs
Locked