Re: [java-gnome-hackers] GtkWindow XID
Brought to you by:
afcowie
From: Goundy <go...@gm...> - 2009-10-25 12:43:16
|
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. |