commit daa405c191c5efa8ad364414470b8fbdb0673401 Author: Matthias Clasen Date: Fri Apr 23 19:57:14 2010 -0400 Rename in more places gio/tests/Makefile.am | 2 +- gio/tests/gsettings.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) commit 72b80c5bdd6105ea06a55a4dba1c3350a459bb01 Author: Matthias Clasen Date: Fri Apr 23 19:18:41 2010 -0400 Updates NEWS | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) commit ec664445a9cf1769e440a25ffb4e17e9e644f6d0 Author: Matthias Clasen Date: Fri Apr 23 17:27:26 2010 -0400 Rename gschema-compile to glib-compile-schemas And clean up the autofoo a bit: use an uppercase variable, check for pkg-config, check for presence of glib-compile-schemas. docs/reference/gio/Makefile.am | 4 +- docs/reference/gio/gio-docs.xml | 2 +- docs/reference/gio/glib-compile-schemas.xml | 85 +++++++++++++++++++++++ docs/reference/gio/gschema-compile.xml | 85 ----------------------- docs/reference/gio/gsettings-schema-convert.xml | 2 +- docs/reference/gio/migrating.xml | 6 +- gio-2.0.pc.in | 2 +- gio/Makefile.am | 6 +- gio/gsettings.c | 5 +- gio/tests/gschema-compile.c | 2 +- m4macros/gsettings.m4 | 13 +++- 11 files changed, 109 insertions(+), 103 deletions(-) commit e6e7015bbd253b01b51186a931cdd58dfb4390f2 Author: Matthias Clasen Date: Fri Apr 23 14:52:26 2010 -0400 Fix up man page handling Turns out the formatted man pages did not end up in the tarballs. Doh. docs/reference/gio/Makefile.am | 32 +++++++++++++++++++++----------- 1 files changed, 21 insertions(+), 11 deletions(-) commit 172c229c8f7965d2b40da56ec7147a250dfdee83 Author: Ryan Lortie Date: Fri Apr 23 13:54:02 2010 -0400 add missing #endif from last patch gio/gnetworkingprivate.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) commit 1504a77655ec5291b8bccb321bc7e349dd2d53d3 Author: Dan Winship Date: Thu Feb 25 11:40:31 2010 -0500 GSocket: define CMSG_LEN and CMSG_SPACE if the system doesn't https://bugzilla.gnome.org/show_bug.cgi?id=589989 gio/gnetworkingprivate.h | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) commit 29f3e3f7663606872361079b6475b441df1f4a63 Author: Dan Winship Date: Thu Dec 31 10:29:23 2009 -0500 GSocket: add support for timeouts Also add options for testing timeouts to socket test programs https://bugzilla.gnome.org/show_bug.cgi?id=587898 docs/reference/gio/gio-sections.txt | 2 + gio/gio.symbols | 2 + gio/gsocket.c | 184 ++++++++++++++++++++++++++++++++--- gio/gsocket.h | 3 + gio/tests/socket-client.c | 6 + gio/tests/socket-server.c | 15 +++ 6 files changed, 200 insertions(+), 12 deletions(-) commit 2c4a79c810a3fde1e30989b0c35677bf6e1337fc Author: Dan Winship Date: Thu Jul 9 09:55:00 2009 -0400 GSocket: Merge the unix and windows socket sources together And remove the bits that were added to gasynchelper.c to support the previous unix socket source. part of https://bugzilla.gnome.org/show_bug.cgi?id=587898 gio/gasynchelper.c | 38 +++---------- gio/gasynchelper.h | 27 +--------- gio/gsocket.c | 144 +++++++++++++++++++++++---------------------------- 3 files changed, 77 insertions(+), 132 deletions(-) commit 5b329c506a8de5d21c3cd251be05a8d6b1f7fdba Author: Dan Winship Date: Fri Apr 23 12:21:38 2010 -0400 gio/tests/socket-client, socket-server: fix for win32 The addition of unix socket support broke these on win32 gio/tests/socket-client.c | 2 ++ gio/tests/socket-common.c | 6 +++++- gio/tests/socket-server.c | 2 ++ 3 files changed, 9 insertions(+), 1 deletions(-) commit 3baff96b37060d5f771337e797343e507a79baf1 Author: David Zeuthen Date: Fri Apr 23 12:14:37 2010 -0400 Make sure G_TYPE_ERROR shows up in the docs This is related to bug 614541. Signed-off-by: David Zeuthen docs/reference/gobject/gobject-sections.txt | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) commit f68dc4d97d7aeaa8588a4ea0d36f057cd5aaf42e Author: Javier Jardón Date: Fri Apr 23 15:39:44 2010 +0200 [gsettings] Change AM_GSETTINGS macro to GLIB_GSETTINGS So we don't use Automake's macro namespace Fixes https://bugzilla.gnome.org/show_bug.cgi?id=616648 docs/reference/gio/migrating.xml | 4 ++-- m4macros/gsettings.m4 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) commit 38e2273207783e4396aabd47bdab5f28155ad6ae Author: Emmanuele Bassi Date: Tue Apr 6 16:17:18 2010 +0100 Add G_GNUC_DEPRECATED_FOR macro It would be good, error reporting-wise, to be able to signal which function should be used instead of a deprecated one. GCC 4.5 added an optional "message" payload to the deprecated attribute, so that: void f1 (void) __attribute__((deprecated("Use f2 instead"))); Will expand to: warning: f1 is deprecated: Use f2 instead Instead of just printing: warning: f1 is deprecated Since we already have a G_GNUC_DEPRECATED macro we should provide a G_GNUC_DEPRECATED_FOR macro defined as: G_GNUC_DEPRECATED_FOR(bar) Which would expand the deprecation message to "Use bar instead" automatically. The deprecation message should probably be similar to what we use in gtk-doc to match up with the documentation. https://bugzilla.gnome.org/show_bug.cgi?id=614965 glib/gmacros.h | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) commit 8f82b994c9963ad23a32f302dc2166f5ca4c2564 Author: Matthias Clasen Date: Thu Apr 22 22:24:38 2010 -0400 bump version configure.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 7c5849abc06a04c0dbaf2902b8104dcec90fa9b6 Author: Matthias Clasen Date: Thu Apr 22 22:23:09 2010 -0400 2.25.2 po/af.po | 117 ++++++- po/am.po | 117 ++++++- po/ar.po | 117 ++++++- po/as.po | 117 ++++++- po/ast.po | 117 ++++++- po/az.po | 117 ++++++- po/be.po | 117 ++++++- po/be@latin.po | 117 ++++++- po/bg.po | 117 ++++++- po/bn.po | 117 ++++++- po/bn_IN.po | 117 ++++++- po/bs.po | 117 ++++++- po/ca.po | 117 ++++++- po/ca@valencia.po | 990 ++++++++++++++++++++++++------------------------- po/cs.po | 117 ++++++- po/cy.po | 117 ++++++- po/da.po | 117 ++++++- po/de.po | 117 ++++++- po/dz.po | 117 ++++++- po/el.po | 117 ++++++- po/en@shaw.po | 117 ++++++- po/en_CA.po | 117 ++++++- po/en_GB.po | 117 ++++++- po/eo.po | 117 ++++++- po/es.po | 1078 +++++++++++++++++++++++++++------------------------- po/et.po | 117 ++++++- po/eu.po | 117 ++++++- po/fa.po | 117 ++++++- po/fi.po | 117 ++++++- po/fr.po | 117 ++++++- po/ga.po | 117 ++++++- po/gl.po | 990 ++++++++++++++++++++++++------------------------- po/gu.po | 117 ++++++- po/he.po | 117 ++++++- po/hi.po | 117 ++++++- po/hr.po | 117 ++++++- po/hu.po | 117 ++++++- po/hy.po | 117 ++++++- po/id.po | 117 ++++++- po/is.po | 117 ++++++- po/it.po | 118 ++++++- po/ja.po | 117 ++++++- po/ka.po | 117 ++++++- po/kn.po | 1011 +++++++++++++++++++++++++------------------------- po/ko.po | 117 ++++++- po/ku.po | 117 ++++++- po/lt.po | 117 ++++++- po/lv.po | 117 ++++++- po/mai.po | 117 ++++++- po/mg.po | 117 ++++++- po/mk.po | 117 ++++++- po/ml.po | 117 ++++++- po/mn.po | 117 ++++++- po/mr.po | 117 ++++++- po/ms.po | 117 ++++++- po/nb.po | 117 ++++++- po/nds.po | 117 ++++++- po/ne.po | 117 ++++++- po/nl.po | 118 ++++++- po/nn.po | 117 ++++++- po/oc.po | 117 ++++++- po/or.po | 117 ++++++- po/pa.po | 117 ++++++- po/pl.po | 117 ++++++- po/ps.po | 117 ++++++- po/pt.po | 117 ++++++- po/pt_BR.po | 117 ++++++- po/ro.po | 117 ++++++- po/ru.po | 117 ++++++- po/rw.po | 117 ++++++- po/si.po | 117 ++++++- po/sk.po | 117 ++++++- po/sl.po | 117 ++++++- po/sq.po | 117 ++++++- po/sr.po | 117 ++++++- po/sr@ije.po | 117 ++++++- po/sr@latin.po | 117 ++++++- po/sv.po | 117 ++++++- po/ta.po | 117 ++++++- po/te.po | 117 ++++++- po/th.po | 117 ++++++- po/tl.po | 117 ++++++- po/tr.po | 117 ++++++- po/tt.po | 117 ++++++- po/uk.po | 117 ++++++- po/vi.po | 117 ++++++- po/wa.po | 117 ++++++- po/xh.po | 117 ++++++- po/yi.po | 117 ++++++- po/zh_CN.po | 117 ++++++- po/zh_HK.po | 117 ++++++- po/zh_TW.po | 117 ++++++- 92 files changed, 12078 insertions(+), 2289 deletions(-)