Script output: ######################################### aedes:~$ dpkg -S libXt.so.6 xlib6g: /usr/X11R6/lib/libXt.so.6 xlib6: /usr/lib/libc5-compat/libXt.so.6 xlib6g: /usr/X11R6/lib/libXt.so.6.0 xlib6: /usr/lib/libc5-compat/libXt.so.6.0 #########################################
You need to install xlib6 from oldlibs. xlib6g by itself would not suffice .... libXt.so.6 is a symlink to libXt.so.6.0 in the "libc5-compat" files provided by xlib6. Usually, if you have these three from oldlibs installed, anthing that used to run before will still run now : a) xlib6 b) libc5 c) xpm4.7 HTH USM Bish Script done on Sun Jun 24 12:52:07 2001 On Sun, Jun 24, 2001 at 11:17:16AM +0200, [EMAIL PROTECTED] wrote: > Thanks for your help! > > Below is the result: > > > bash-2.01$ grep libXt.so.6 strace_out > uselib("/usr/lib/libXt.so.6") = -1 ENOENT (No such file or > directory) > uselib("/lib/libXt.so.6") = -1 ENOENT (No such file or > directory) > write(2, "Mosaic: can\'t find library \'li"..., 40Mosaic: can't find > library > 'libXt.so.6' > bash-2.01$ su > Password: > debian:/home/zhou# cp /usr/X11R6/lib/libXt.so.6 /usr/lib/libXt.so.6 > debian:/home/zhou# exit > bash-2.01$ Mosaic > Mosaic: can't load library '/usr/lib/libXt.so.6' > Exec format error > Mosaic: can't find library 'libXt.so.6' > > > It seems that i have to compile it myself, but i met the following error > msg: > > --- Building libwww2 > cd libwww2; make CC=gcc RANLIB=ranlib CFLAGS="-g " > make[1]: Entering directory sys_errlist' > /usr/include/stdio.h:221: previous declaration of > /home/zhou/Mosaic-src/libwww2' > make: *** [libwww2] Error 2 > > > Any idea? > > ______________________________________________________________________ > ktb wrote: > > > > On Sun, Jun 24, 2001 at 10:07:24AM +0200, [EMAIL PROTECTED] wrote: > > > thanks for your reply! > > > > > > i run the command. below is the result: > > > > > > bash-2.01$ ldd Mosaic > > > libXt.so.6 (DLL Jump 6.0) => not found > > > libX11.so.6 (DLL Jump 6.0) => not found > > > libc.so.4 (DLL Jump 4.5pl26) => not found > > > bash-2.01$ > > > > > > Mosaic is for Linux 1.0, i guess. > > > > Before you give up try - > > $ strace Mosaic &> strace_out > > > > Then - > > $ grep libXt.so.6 strace_out > > and see if you can find where Mosaic is looking for the library. > > hth, > > kent > >