1. Re: gtklib (still)
- Posted by Irv Mullins <irvm at ellijay.com> Feb 12, 2002
- 497 views
On Tuesday 12 February 2002 05:22 pm, Chris Burch wrote: > > /home/crylex/euphoria/include/gtk/main.e: > gdk = 134736624 > gtk = 0 > eugtk = <no value> > > I've checked - libgtk is in /usr/lib (as is lib gdk) so it is in the path. > > Any more ideas? Well, the ex.err message is clear. libgdk.so is there, and was found. libgtk.so wasn't found, or if found could not be read. You could always write down the exact name of the real libgtk, and put that in the appropriate line in main.e, instead of the name of the link, in case the link is bad. I just tried changing mine to: gtk = open_dll("/usr/lib/libgtk-1.2.so.0.9.1") and it works fine. Beyond that, here's a list of the first tier of dependencies (files libgtk needs) ld-linux.so.2 libX11.so.6 libExt.so.6 libXi.so.6 libc.so.6 libdl.so.2 libglib-1.2.so.0 libgmodule-1.2.so.0 libm.so.6 After that, for example, libX11 depends upon about 20 other libraries. Each of those may depend yet on others. Do you still want to install this by hand? Regards, Irv