glib r7876 - in trunk: . docs/reference docs/reference/glib/tmpl gio gmodule gobject gthread po
- From: matthiasc svn gnome org
- To: svn-commits-list gnome org
- Subject: glib r7876 - in trunk: . docs/reference docs/reference/glib/tmpl gio gmodule gobject gthread po
- Date: Tue, 17 Feb 2009 18:36:36 +0000 (UTC)
Author: matthiasc
Date: Tue Feb 17 18:36:36 2009
New Revision: 7876
URL: http://svn.gnome.org/viewvc/glib?rev=7876&view=rev
Log:
2.19.8
Modified:
trunk/ChangeLog
trunk/INSTALL
trunk/NEWS
trunk/README
trunk/docs/reference/ChangeLog
trunk/docs/reference/glib/tmpl/atomic_operations.sgml
trunk/docs/reference/glib/tmpl/glib-unused.sgml
trunk/docs/reference/glib/tmpl/macros_misc.sgml
trunk/gio/ChangeLog
trunk/gmodule/ChangeLog
trunk/gobject/ChangeLog
trunk/gthread/ChangeLog
trunk/po/ChangeLog
trunk/po/am.po
trunk/po/ar.po
trunk/po/as.po
trunk/po/az.po
trunk/po/be.po
trunk/po/be latin po
trunk/po/bg.po
trunk/po/bn.po
trunk/po/bn_IN.po
trunk/po/bs.po
trunk/po/ca.po
trunk/po/cs.po
trunk/po/cy.po
trunk/po/da.po
trunk/po/de.po
trunk/po/dz.po
trunk/po/el.po
trunk/po/en_CA.po
trunk/po/en_GB.po
trunk/po/eo.po
trunk/po/es.po
trunk/po/et.po
trunk/po/eu.po
trunk/po/fa.po
trunk/po/fi.po
trunk/po/fr.po
trunk/po/ga.po
trunk/po/gl.po
trunk/po/gu.po
trunk/po/he.po
trunk/po/hi.po
trunk/po/hr.po
trunk/po/hu.po
trunk/po/hy.po
trunk/po/id.po
trunk/po/is.po
trunk/po/it.po
trunk/po/ja.po
trunk/po/ka.po
trunk/po/kn.po
trunk/po/ko.po
trunk/po/ku.po
trunk/po/lt.po
trunk/po/lv.po
trunk/po/mai.po
trunk/po/mg.po
trunk/po/mk.po
trunk/po/ml.po
trunk/po/mn.po
trunk/po/mr.po
trunk/po/ms.po
trunk/po/nb.po
trunk/po/ne.po
trunk/po/nl.po
trunk/po/nn.po
trunk/po/oc.po
trunk/po/or.po
trunk/po/pa.po
trunk/po/pl.po
trunk/po/ps.po
trunk/po/pt.po
trunk/po/pt_BR.po
trunk/po/ro.po
trunk/po/ru.po
trunk/po/rw.po
trunk/po/si.po
trunk/po/sk.po
trunk/po/sl.po
trunk/po/sq.po
trunk/po/sr.po
trunk/po/sr ije po
trunk/po/sr latin po
trunk/po/sv.po
trunk/po/ta.po
trunk/po/te.po
trunk/po/th.po
trunk/po/tl.po
trunk/po/tr.po
trunk/po/tt.po
trunk/po/uk.po
trunk/po/vi.po
trunk/po/wa.po
trunk/po/xh.po
trunk/po/yi.po
trunk/po/zh_CN.po
trunk/po/zh_HK.po
trunk/po/zh_TW.po
Modified: trunk/INSTALL
==============================================================================
--- trunk/INSTALL (original)
+++ trunk/INSTALL Tue Feb 17 18:36:36 2009
@@ -1,8 +1,8 @@
Simple install procedure
========================
- % gzip -cd glib-2.19.7.tar.gz | tar xvf - # unpack the sources
- % cd glib-2.19.7 # change to the toplevel directory
+ % gzip -cd glib-2.19.8.tar.gz | tar xvf - # unpack the sources
+ % cd glib-2.19.8 # change to the toplevel directory
% ./configure # run the `configure' script
% make # build GLIB
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Tue Feb 17 18:36:36 2009
@@ -1,8 +1,10 @@
Overview of Changes from GLib 2.19.7 to GLib 2.19.8
===================================================
-* GIO
- - Fix missing exports of new API
+* GIO: Fix missing exports of new API
+
+* Fix strict aliasing warnings and violations to make Glib work
+ with gcc 4.4
Overview of Changes from GLib 2.19.6 to GLib 2.19.7
Modified: trunk/README
==============================================================================
--- trunk/README (original)
+++ trunk/README Tue Feb 17 18:36:36 2009
@@ -1,7 +1,7 @@
General Information
===================
-This is GLib version 2.19.7. GLib is the low-level core
+This is GLib version 2.19.8. GLib is the low-level core
library that forms the basis for projects such as GTK+ and GNOME. It
provides data structure handling for C, portability wrappers, and
interfaces for such runtime functionality as an event loop, threads,
Modified: trunk/docs/reference/glib/tmpl/atomic_operations.sgml
==============================================================================
--- trunk/docs/reference/glib/tmpl/atomic_operations.sgml (original)
+++ trunk/docs/reference/glib/tmpl/atomic_operations.sgml Tue Feb 17 18:36:36 2009
@@ -71,9 +71,10 @@
a memory barrier.
</para>
- atomic: a pointer to an integer
@Returns: the value of * atomic
@Since: 2.4
+<!-- # Unused Parameters # -->
+ atomic: a pointer to an integer
<!-- ##### FUNCTION g_atomic_int_set ##### -->
@@ -82,9 +83,10 @@
Also acts as a memory barrier.
</para>
+ Since: 2.10
+<!-- # Unused Parameters # -->
@atomic: a pointer to an integer
@newval: the new value
- Since: 2.10
<!-- ##### FUNCTION g_atomic_int_add ##### -->
@@ -93,9 +95,10 @@
Also acts as a memory barrier.
</para>
+ Since: 2.4
+<!-- # Unused Parameters # -->
@atomic: a pointer to an integer.
@val: the value to add to * atomic
- Since: 2.4
<!-- ##### FUNCTION g_atomic_int_exchange_and_add ##### -->
@@ -105,10 +108,11 @@
Also acts as a memory barrier.
</para>
- atomic: a pointer to an integer.
- val: the value to add to * atomic
@Returns: the value of * atomic before the addition.
@Since: 2.4
+<!-- # Unused Parameters # -->
+ atomic: a pointer to an integer.
+ val: the value to add to * atomic
<!-- ##### FUNCTION g_atomic_int_compare_and_exchange ##### -->
@@ -118,11 +122,12 @@
Also acts as a memory barrier.
</para>
+ Returns: %TRUE, if * atomic was equal @oldval. %FALSE otherwise.
+ Since: 2.4
+<!-- # Unused Parameters # -->
@atomic: a pointer to an integer.
@oldval: the assumed old value of * atomic
@newval: the new value of * atomic
- Returns: %TRUE, if * atomic was equal @oldval. %FALSE otherwise.
- Since: 2.4
<!-- ##### FUNCTION g_atomic_pointer_get ##### -->
@@ -131,9 +136,10 @@
a memory barrier.
</para>
- atomic: a pointer to a #gpointer.
@Returns: the value to add to * atomic
@Since: 2.4
+<!-- # Unused Parameters # -->
+ atomic: a pointer to a #gpointer.
<!-- ##### FUNCTION g_atomic_pointer_set ##### -->
@@ -142,9 +148,10 @@
Also acts as a memory barrier.
</para>
+ Since: 2.10
+<!-- # Unused Parameters # -->
@atomic: a pointer to a #gpointer
@newval: the new value
- Since: 2.10
<!-- ##### FUNCTION g_atomic_pointer_compare_and_exchange ##### -->
@@ -154,11 +161,12 @@
Also acts as a memory barrier.
</para>
+ Returns: %TRUE, if * atomic was equal @oldval. %FALSE otherwise.
+ Since: 2.4
+<!-- # Unused Parameters # -->
@atomic: a pointer to a #gpointer.
@oldval: the assumed old value of * atomic
@newval: the new value of * atomic
- Returns: %TRUE, if * atomic was equal @oldval. %FALSE otherwise.
- Since: 2.4
<!-- ##### FUNCTION g_atomic_int_inc ##### -->
Modified: trunk/docs/reference/glib/tmpl/glib-unused.sgml
==============================================================================
--- trunk/docs/reference/glib/tmpl/glib-unused.sgml (original)
+++ trunk/docs/reference/glib/tmpl/glib-unused.sgml Tue Feb 17 18:36:36 2009
@@ -227,12 +227,6 @@
</para>
-<!-- ##### MACRO G_HAVE_GNUC_VISIBILITY ##### -->
-<para>
-
-</para>
-
-
<!-- ##### MACRO G_HOOK_DEFERRED_DESTROY ##### -->
<para>
Modified: trunk/docs/reference/glib/tmpl/macros_misc.sgml
==============================================================================
--- trunk/docs/reference/glib/tmpl/macros_misc.sgml (original)
+++ trunk/docs/reference/glib/tmpl/macros_misc.sgml Tue Feb 17 18:36:36 2009
@@ -353,6 +353,13 @@
+<!-- ##### MACRO G_HAVE_GNUC_VISIBILITY ##### -->
+<para>
+
+</para>
+
+
+
<!-- ##### MACRO G_GNUC_INTERNAL ##### -->
<para>
This attribute can be used for marking library functions as being used
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]