Re: [java-gnome-hackers] GtkWindow XID
Brought to you by:
afcowie
From: Emmanuel R. <emm...@gm...> - 2009-10-25 12:49:26
|
On Sun, Oct 25, 2009 at 2:42 PM, Goundy <go...@gm...> wrote: > Emmanuel Rodriguez wrote: > >> No exactly, this just means that you have the libraries installed, but >> java-gnome might not be using them (linked). >> >> Check with ldd if the java-gnome .so is linked with gdk-x11 >> ldd tmp/libgtkjni-*.so | grep gdk-x11-2.0 >> >> If ldd doesn't show the file then it isn't linked. Try to link it your >> self by hand: >> rm tmp/libgtkjni-*.so >> LDFLAGS=`pkg-config --libs gdk-x11-2.0` build/faster >> >> If ldd shows the file in the dependency list then there's something >> strange going on. >> >> goundy@localhost ~/java-gnome/working/tmp $ ldd libgtkjni-4.0.12-dev.so | grep gdk-x11 > libgdk-x11-2.0.so.0 => /usr/lib/libgdk-x11-2.0.so.0 (0xb78ec000) > that's odd :°) > Btw, I haven't modified any .def file yet, I just added the new accessor in > GdkDrawable.java and then linked (in eclipse) the java-gnome project to my > testing project. > Are you sure then that eclipse is picking up the right gtkjini.so file? Did you install your new bindings? -- Emmanuel Rodriguez |