According to Tom Savage: While burning my CPU.
> 
> I have the same problem here with a 5.2 RedHat system. I posted my problem last
> week on the redhat-list, but have not had a solution posted for the above
> problem.
> 
> On 27-Dec-98 willh wrote:
> > When I try to run Midnight Commander I get the following error
> > 
> > tkmc: error in loading shared libraries
> > /usr/lib/libtcl.so: undefined symbol: stat

What this means is that the version of /usr/lib/libtclX.X.so does not have
the symbol "stat" defined in the way in which 'mc' wants it and vise-versa,
or not defined at all.

The way i would solve something like this is to get a lower version number
of libtcl and place it in /usr/local/lib as libtclX.X.so.

Now if it were to be linked by ldconfig then the possablity of it breaking
something else is a big possablity, to over come that fact i would NOT link
it to libtcl.so, but create a script like the following.

#!/bin/sh

export LD_PRELOAD="/usr/local/lib/libtclX.X"
exec /usr/bin/mc

Call the script start.mc and place it in your path env.
Use 'chmod a+x start.mc' to make it executable.

Just type start.mc

Possably that just might work.

You could get a lower version, rename the old file to libtclX.X.so.old and
link the new one to libtcl.so and rerun ldconfig. Be carefull when doing
that sort of thing, you can render your system unusable.


> > 
> > can any one tell me what this is and how I can fix it.
> > 
> > I am running RedHat 5.0 that was upgraded to 5.2.
> > 
> > I just installed GNOME
> > 
> > Thanks in advance
> > Will
> 
> ----------------------------------
> E-Mail: Tom Savage <[EMAIL PROTECTED]>
> Date: 27-Dec-98
> Time: 15:02:38
> 
> This message was sent by XFMail
> ----------------------------------
> 


-- 
Regards Richard.
[EMAIL PROTECTED]

Happy New Year, and may all your troubles be small (ones).

Reply via email to