> 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
OK, this worked (thanx).
But can I have a little bit of background information...I'm not sure
what is going on...this function is in libgcc.a for 2.8.1, but not
in 2.7.2.3.. (I needed to use 2.7.2.3 to compile). When I got the pkgview
binary build on a redhat-5.1, I needed to do this trick...
Marty Leisner