On 3/30/06, Dave Jones <davej@redhat.com> wrote:
On Thu, Mar 30, 2006 at 01:54:10PM -0500, Michael Wiktowy wrote:
> Is there some known proc magic that has to happen to make old binaries work
> with 2.6.16? My Teamspeak client (which is unfortunatley closed-source)
> works with the FC5 2.6.15 kernel but dies with an error (that I can provide
> to you as soon as I get home ... sorry for not being able to be specific
> right now) about a library not found with the 2.6.16 kernel.

should be binary compatible.  need the error to diagnose further.

Here is the exact error I get: 
[mwiktowy@localhost TeamSpeak2RC2]$ ./TeamSpeak
/home/mwiktowy/bin/TeamSpeak2RC2/TeamSpeak.bin: symbol lookup error: /home/mwiktowy/bin/TeamSpeak2RC2/TeamSpeak.bin: undefined symbol: initPAnsiStrings

Where the launching script "Teamspeak" is simply:

#!/bin/sh
#
# This starup script will set the correct library path
# and then startup the teamspeak binary.
#

export LD_LIBRARY_PATH=/home/mwiktowy/bin/TeamSpeak2RC2:$LD_LIBRARY_PATH
/home/mwiktowy/bin/TeamSpeak2RC2/TeamSpeak.bin $*

With the previous FC5 kernel, this runs fine and still runs fine when I boot to the old kernel.
 Just not with 2.6.16.

/Mike