Question

I have an application which uses gtkmm. The client's machine does not have this library installed. When he runs my application on his Red Hat Linux he gets the error: libgio-2.0.so.0: cannot open share d object file: No such file or directory

How can i install it on the client's machine? I know I can do yum install, but since its Red Hat the client needs an active subscription, but their subscription expired so I'm not able to use yum.

Is there a way to install libgio-2.0.so without using yum?

Was it helpful?

Solution 3

OK now I understand what you were trying to say. For anyone who faces a similar problem, this is what i did. 1. Copy the source code of the program to the RHEL machine 2. Compiled the source on RHEL using gcc 3. The binary produced by gcc will work on RHEL

OTHER TIPS

I had to get the same info recently and found it here http://git.gnome.org/browse/glib/tree/gio

The version of GTK+ on RHEL is too old; it does not have gio at all. Rebuild the binary on RHEL or one of its workalikes.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top