[Mono-list] Problems using gtk-sharp from cvs

Jonathan Pryor jonpryor@vt.edu
Tue, 01 Jun 2004 06:10:15 -0400


Below...

On Tue, 2004-06-01 at 00:55, John BouAntoun wrote:
<snip/> 
> The following is what i get when I run the treeviewdemo in the
> gtk-sharp/demos folder.
>  
> [john@nkotb sample]$ mono treeviewdemo.exe
>  
> Unhandled Exception: System.DllNotFoundException: glibsharpglue
> in <0x00053> (wrapper managed-to-native) GLib.Object:gtksharp_object_newv (intptr,int,string[],GLib.Value[])
> in <0x00060> GLib.Object:CreateNativeObject (string[],GLib.Value[])
> in <0x00131> Gtk.TreeStore:.ctor (System.Type[])
> in <0x00088> GtkSamples.TreeViewDemo:PopulateStore ()
> in <0x0002c> GtkSamples.TreeViewDemo:.ctor ()
> in <0x0001b> GtkSamples.TreeViewDemo:Main (string[])
> Everthing executed make and sudo make install with no apparent erros,
> but I can't seem to run a gtk-sharp app at all.
>  
> The file it claims that it can't see is located here:
> [john@nkotb john]$ locate glibsharpglue
> /home/john/monocvs/gtk-sharp/glib/glue/.libs/libglibsharpglue.a
> /home/john/monocvs/gtk-sharp/glib/glue/.libs/libglibsharpglue.la
> /home/john/monocvs/gtk-sharp/glib/glue/.libs/libglibsharpglue.lai
> /home/john/monocvs/gtk-sharp/glib/glue/.libs/libglibsharpglue.so
> /home/john/monocvs/gtk-sharp/glib/glue/libglibsharpglue.la
> /usr/local/lib/libglibsharpglue.a
> /usr/local/lib/libglibsharpglue.la
> /usr/local/lib/libglibsharpglue.so

Is /usr/local/lib in your LD_LIBRARY_PATH environment variable? :-)

You might want to add /usr/local/lib to /etc/ld.so.conf, then run
ldconfig(8).  That way /usr/local/lib will be permanently added to the
dynamic linker search path.

 - Jon