On Sat, Dec 08, 2007 at 08:02:06AM +0200, Kostik Belousov wrote: > > > > libpthread.so.2 => /lib/libpthread.so.2 (0x481f5000) > > > RELENG_6 libpthread > > > > libc.so.6 => /lib/libc.so.6 (0x4821c000) > > > RELENG_6 libc > > > > [skip] > > > > > > libthr.so.3 => /lib/libthr.so.3 (0x48546000) > > > RELENG_7 libpthread > > > > libc.so.7 => /lib/libc.so.7 (0x48558000) > > > RELENG_7 libc > > > > Thank you. Now I wonder, how such thing may happen > > if qemu was built under 6.2 where there were no > > libthr.so.3 and libc.so.7? > Most likely, you have rebuilt some library that brough in the dependencies. > Check with readelf -d (look for NEEDED tags).
$ readelf -d `which qemu` | grep NEEDED 0x00000001 (NEEDED) Shared library: [libm.so.4] 0x00000001 (NEEDED) Shared library: [libz.so.3] 0x00000001 (NEEDED) Shared library: [libSDL.so.11] 0x00000001 (NEEDED) Shared library: [libutil.so.5] 0x00000001 (NEEDED) Shared library: [libpthread.so.2] 0x00000001 (NEEDED) Shared library: [libc.so.6] Well, libSDL.so.11 is a culprit here. I'll try to get older version to /usr/local/lib/compat and use libmap.conf to resolve this. Eugene Grosbein _______________________________________________ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "[EMAIL PROTECTED]"