On Tue, 31 Aug 2004, Tommy Reynolds wrote: > Uttered Shockwave <shockwave@xxxxxxxxxxxxx>, spake thus: > > > On Tue, 2004-08-31 at 11:14, Tommy Reynolds wrote: > > > There have been major changes to the threading library. Try starting > > > your program like this: > > > $ export LD_ASSUME_KERNEL=2.2.5 > > > $ mygame > > Thank you very much for your suggestion. I executed the export > > statement above and verified it was in my environment before starting > > the server again, but it had no effect on either build. > > Ack! Typo! Try "LD_KERNEL_ASSUME"! I'm always getting that > backwards... Nope LD_ASSUME_KERNEL is correct. [balay@localhost ~]$ ldd /bin/ls |grep libc libc.so.6 => /lib/tls/libc.so.6 (0x00997000) [balay@localhost ~]$ LD_ASSUME_KERNEL=2.4.1 ldd /bin/ls |grep libc libc.so.6 => /lib/i686/libc.so.6 (0x002c3000) [balay@localhost ~]$ LD_ASSUME_KERNEL=2.2.5 ldd /bin/ls |grep libc libc.so.6 => /lib/libc.so.6 (0x002a6000) --- Satish