2006-03-26 Andrew Cowie * configure.ac: Add check to require glib-java >= 0.2.4 Add check to require libgtk-java >= 2.8.4 Version 2.12.2 2006-03-13 Sami Wagiaalla * src/jni/org_gnu_gconf_ConfClient.c (Java_org_gnu_gconf_ConfClient_gconf_1client_1get_1list): Removed unused vaiable len (closed bz 332853). 2006-02-28 Sami Wagiaalla * src/jni/org_gnu_gconf_ConfSchema.c: * src/jni/org_gnu_gconf_ConfMetaInfo.c: * src/jni/org_gnu_gconf_ConfEntry.c: * src/jni/org_gnu_gconf_ConfClient.c (Java_org_gnu_gconf_ConfClient_gconf_1client_1get_1list): Included corresponding header file. Commented out unused variable (guint len). (Java_org_gnu_gconf_ConfClient_gconf_1client_1get_1list): in the case of a GCONF_VALUE_INT the value is actually put into the gpointer filed (according to doc). Used GPOINTER_TO_INT to retrieve it out. (notifyCallback): Changed to static function; it is a helper function only used locally. (Java_org_gnu_gconf_ConfClient_gconf_1client_1get_1list): In the case of a GCONF_VALUE_BOOL the the value is an int stuffed into a gpointer. I take it out using GPOINTER_TO_INT, and for safty cast just check that it is not equal to 0 and cast the result into a jboolean. (Java_org_gnu_gconf_ConfClient_gconf_1client_1get_1list): Ditto. (Java_org_gnu_gconf_ConfClient_gconf_1client_1get_1list): replaced this: jmethodID mid = (*env)->GetStaticMethodID(env, aCls, "getConfSchema", "(I)V"); with this: jmethodID mid = (*env)->GetStaticMethodID(env, aCls, "getConfSchema", "(org/gnu/glib/Handle)org/gnu/glib/Handle"); since that is what the java signiture is :D. (Java_org_gnu_gconf_ConfClient_gconf_1client_1set_1list): Changed jints to correct types mostly jobject. * src/jni/org_gnu_gconf_ConfValue.c (Java_org_gnu_gconf_ConfValue_gconf_1value_1get_1list): Included corresponding header file. Changed jints to correct types mostly jobject. Correctly retrived boolean values see comment above. 2006-02-27 Andrew Cagney * Makefile.am (BUILT_SOURCES): Add gconf$(apiversion).jar. (CLASSPATH): Define as $(JGJAR):$(GTKJAR), use. (jni_gconf_source_files): Replace file list with include of Makefile.jni. (AM_CFLAGS): Rename libgconfjni_la_CFLAGS. * configure.ac: Use AC_CHECK_PROGS to check for JAVAH. * autogen.sh: Generate Makefile.jni. 2006-02-12 Andrew Cowie * doc/examples/gconf/BasicGConfApp.java: * src/java/org/gnu/gconf/ConfClient.java: * src/java/org/gnu/gconf/ConfClientListener.java: * src/java/org/gnu/gconf/ConfClientPreloadType.java: * src/java/org/gnu/gconf/ConfEntry.java: * src/java/org/gnu/gconf/ConfException.java: * src/java/org/gnu/gconf/ConfMetaInfo.java: * src/java/org/gnu/gconf/ConfSchema.java: * src/java/org/gnu/gconf/ConfValue.java: * src/java/org/gnu/gconf/ConfValueType.java: Apply "Java conventons" formatting to all Java source files