On Tue, 16 Feb 1999, Marty Leisner wrote:
> The binary I found (pkgview) was built on a redhat 5.1 system.
> I have a 5.2 system.
> This program won't load on my system, I get:
> ./pkgview: error in loading shared libraries
> : undefined symbol: __register_frame_info

Hello,

compile this to a little shared lib

__register_frame_info() {}
__unregister_frame_info() {}

with gcc -shared -o /usr/local/lib/libfix.so something.c
And then you will be able to run this binaries with

LD_PRELOAD=/usr/local/lib/libfix.so pkgview

bye

MaXX

Reply via email to