David Zeuthen [Mon, 5 Mar 2012 17:57:32 +0000 (12:57 -0500)]
GUnix{Input,Output}Stream: Only release cancelable poll-fd if we allocated it
Otherwise we get criticals a'la
GLib-GIO-CRITICAL **: g_cancellable_release_fd: assertion `cancellable->priv->fd_refcount > 0' failed
when reading/writing to certain kinds of file descriptors.
Patch reviewed by Dan Winship on IRC.
Signed-off-by: David Zeuthen <davidz@redhat.com>
Matthias Clasen [Mon, 5 Mar 2012 16:43:20 +0000 (11:43 -0500)]
bump version
Alexander Larsson [Mon, 5 Mar 2012 14:05:07 +0000 (15:05 +0100)]
Use G_DEFINE_CONSTRUCTOR for the glib_init constructor
No need to hand-roll this when we have a macro version.
Matthias Clasen [Mon, 5 Mar 2012 14:01:20 +0000 (09:01 -0500)]
2.31.20
Matthias Clasen [Mon, 5 Mar 2012 13:32:07 +0000 (08:32 -0500)]
Update glib-genmarshal docs
A bunch of new commandline options sneaked in without docs...
Matthias Clasen [Mon, 5 Mar 2012 12:54:47 +0000 (07:54 -0500)]
Fix a compiler warning
Matthias Clasen [Mon, 5 Mar 2012 12:34:58 +0000 (07:34 -0500)]
gobject: Fix symbol lists
Matthias Clasen [Mon, 5 Mar 2012 12:02:53 +0000 (07:02 -0500)]
More updates
Alexander Larsson [Mon, 5 Mar 2012 11:29:45 +0000 (12:29 +0100)]
Merge branch 'signal-performance'
Matthias Clasen [Mon, 5 Mar 2012 04:42:45 +0000 (23:42 -0500)]
Fix distcheck
YunQiang Su [Mon, 5 Mar 2012 09:44:58 +0000 (17:44 +0800)]
update Simplified Chinese (zh_CN) translation
Matthias Clasen [Mon, 5 Mar 2012 03:25:50 +0000 (22:25 -0500)]
Fix distcheck
Matthias Clasen [Mon, 5 Mar 2012 02:48:26 +0000 (21:48 -0500)]
Updates for 2.31.20
Matthias Clasen [Mon, 5 Mar 2012 01:49:04 +0000 (20:49 -0500)]
Fix binding properties of the same object
This problem was pointed out in bug 639873.
The patch here is based on Matt Barnes patch,
I've added a testcase as well.
Nirbheek Chauhan [Tue, 21 Feb 2012 14:12:22 +0000 (19:42 +0530)]
Run gdb under libtool so that local libraries are used
If this isn't done, the system-wide glib is used for this test,
and that can cause test failures.
https://bugzilla.gnome.org/621368
Matej Urbančič [Sun, 4 Mar 2012 20:23:29 +0000 (21:23 +0100)]
Updated Slovenian translation
Martin Srebotnjak [Sun, 4 Mar 2012 20:20:59 +0000 (21:20 +0100)]
Updated Slovenian translation
Michael Biebl [Sat, 3 Mar 2012 23:26:10 +0000 (00:26 +0100)]
build: include glib-compile-resources.xml in the dist tarball
https://bugzilla.gnome.org/show_bug.cgi?id=671281
Michael Biebl [Sat, 3 Mar 2012 20:39:35 +0000 (21:39 +0100)]
build: Fix failure on "make distclean"
https://bugzilla.gnome.org/show_bug.cgi?id=671270
Alexander Larsson [Sat, 3 Mar 2012 20:36:10 +0000 (21:36 +0100)]
fastpath: Do allow NO_RECURSE fastpath for NOP emissions
This fixes a performance regression wrt the old NOP emission
handler.
Shota Akiyama [Thu, 23 Feb 2012 10:52:12 +0000 (11:52 +0100)]
glib/gmacros.h: Fix up attribute to avoid namespace collisions
https://bugzilla.gnome.org/show_bug.cgi?id=670751
Dan Winship [Fri, 2 Mar 2012 15:22:11 +0000 (10:22 -0500)]
gspawn: rename G_SPAWN_ERROR_2BIG to be more bindings-friendly
Rename G_SPAWN_ERROR_2BIG to G_SPAWN_ERROR_TOO_BIG (while keeping the
old name for compatibility), to fix problems with language bindings
where the old name translates into something that would be
syntactically invalid due to starting with a digit.
https://bugzilla.gnome.org/show_bug.cgi?id=671025
Ryan Lortie [Sat, 3 Mar 2012 16:40:51 +0000 (11:40 -0500)]
GApplication: fix name unregister logic
We were attempting to unregister our ownership of our D-Bus name even in
the case that we were non-unique (ie: we didn't actually own the name).
Rework the logic a bit to prevent that: for non-unique, we leave
impl->bus_name as NULL and we only register/unregister if it is
non-NULL.
Nguyễn Thái Ngọc Duy [Sat, 3 Mar 2012 15:49:18 +0000 (22:49 +0700)]
Updated Vietnamese translation
Nguyễn Thái Ngọc Duy [Sat, 3 Mar 2012 15:35:16 +0000 (22:35 +0700)]
po/vi: import from Damned Lies
Inaki Larranaga Murgoitio [Sat, 3 Mar 2012 13:43:05 +0000 (14:43 +0100)]
Updated Basque language
Peter O'Gorman [Fri, 2 Mar 2012 21:36:27 +0000 (13:36 -0800)]
Bug 640202 Impossible to build multi-architecture libraries
Hides ELF-only linker flag -export-dynamic from non-ELF linkers.
Alexander Larsson [Fri, 2 Mar 2012 19:22:29 +0000 (20:22 +0100)]
Mask out G_SIGNAL_TYPE_STATIC_SCOPE when comparing types
Emmanuele Bassi [Fri, 2 Mar 2012 17:06:36 +0000 (17:06 +0000)]
build: Fix rules for marshalers.[ch]
Alexander Larsson [Fri, 2 Mar 2012 15:16:17 +0000 (16:16 +0100)]
Add more tests for signal emissions
Alexander Larsson [Wed, 22 Feb 2012 18:36:05 +0000 (19:36 +0100)]
Optimize single-handler va_marshaller case
When there is only one closure handling a signal emission and
it doesn't have a bunch of complicated features enabled we
can short circuit the va_args collection into GValues and call the
callback via the va_marshaller directly.
https://bugzilla.gnome.org/show_bug.cgi?id=661140
Alexander Larsson [Fri, 2 Mar 2012 10:20:45 +0000 (11:20 +0100)]
Use builtin marshallers and va_marshallers if possible
If the signal argumment types matches a built in standard
marshaller we use the va_marshaller for that, and also the
normal marshaller if NULL was specified (as its faster than
the generic one).
Alexander Larsson [Wed, 22 Feb 2012 18:34:05 +0000 (19:34 +0100)]
Add g_signal_set_va_marshaller
This lets you set a va_marshaller on your signal which will be
propagated to all closures for the signal. Also, automatically
uses the generica va_marshaller if you specify a NULL c_marshaller.
https://bugzilla.gnome.org/show_bug.cgi?id=661140
Alexander Larsson [Tue, 28 Feb 2012 14:48:20 +0000 (15:48 +0100)]
Add _g_closure_is_void to check for NULL vfuncs
https://bugzilla.gnome.org/show_bug.cgi?id=661140
Alexander Larsson [Wed, 22 Feb 2012 18:32:36 +0000 (19:32 +0100)]
Support generating va marshallers in glib-genmarshal
https://bugzilla.gnome.org/show_bug.cgi?id=661140
Alexander Larsson [Wed, 22 Feb 2012 18:29:14 +0000 (19:29 +0100)]
Add optional support for varargs marshallers to GClosure
These closures support being invoked on a va_args which can
be useful as you can then avoid boxing the va_args into
GValues in certain cases.
https://bugzilla.gnome.org/show_bug.cgi?id=661140
Alexander Larsson [Wed, 22 Feb 2012 16:46:21 +0000 (17:46 +0100)]
Add GRealClosure and move meta_marshallers there
This means we're not abusing the notifiers for meta_marshallres,
and we're able to later cleanly add other fields to GClosure.
We still have to leave the ABI intact for the GClosure->meta_marshal
bit, as old G_CLOSURE_N_NOTIFIERS macro instances still accesses it.
However, we always set it to zero to keep those macros working.
https://bugzilla.gnome.org/show_bug.cgi?id=661140
Alexander Larsson [Wed, 22 Feb 2012 18:44:24 +0000 (19:44 +0100)]
tests: Add generic and empty signal emission performace tests
generic means it uses the generic marshaller
empty means the vfunc pointer is NULL
https://bugzilla.gnome.org/show_bug.cgi?id=661140
Lionel Landwerlin [Tue, 27 Sep 2011 08:15:17 +0000 (09:15 +0100)]
tests: performance: add emit-handled/emit-unhandled tests
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com>
Jörn Magens [Wed, 29 Feb 2012 17:29:50 +0000 (12:29 -0500)]
GSequence: add note about lookup requiring sorting
g_sequence_lookup() only works on sorted sequences, but it's quite easy
to create unsorted sequences. Add a note to the documentation that the
sequence must be sorted in order for g_sequence_lookup() to work.
https://bugzilla.gnome.org/show_bug.cgi?id=670969
Yaron Shahrabani [Fri, 2 Mar 2012 12:15:58 +0000 (14:15 +0200)]
Updated Hebrew translation.
Christian Dywan [Sat, 26 Mar 2011 14:48:54 +0000 (14:48 +0000)]
gobject/gtype.c: Emphasize use of priv in member and use g_return_val_if_fail
Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=597785
Signed-off-by: Javier Jardón <jjardon@gnome.org>
David Zeuthen [Thu, 1 Mar 2012 19:06:43 +0000 (14:06 -0500)]
Add G_VOLUME_IDENTIFIER_KIND_CLASS identifier
If an application (such as Nautilus) wants to show a sidebar with
devices group into different groups such as "Devices" and "Network",
it's currently up to the application itself to do the classification
(for example by looking at the URI scheme for the activation root,
e.g. smb://).
This patch adds a new identifier G_VOLUME_IDENTIFIER_KIND_CLASS that
can be set by volume monitors and used by applications.
See https://bugzilla.gnome.org/show_bug.cgi?id=668295
Signed-off-by: David Zeuthen <davidz@redhat.com>
Krishnababu Krothapalli [Thu, 1 Mar 2012 08:29:41 +0000 (13:59 +0530)]
Updated Telugu Translations
Colin Walters [Wed, 29 Feb 2012 17:37:24 +0000 (12:37 -0500)]
g_uri_unescape_segment: Mention (allow-none)/%NULL in documentation
Emmanuele Bassi [Wed, 29 Feb 2012 17:52:39 +0000 (17:52 +0000)]
Version the deprecation of g_value_array_get_type()
Just like the rest of the GValueArray API.
Andoni Morales Alastruey [Wed, 29 Feb 2012 10:19:21 +0000 (11:19 +0100)]
gsocket: fix compilation when ENOTSOCK and WSANOTSOCK are both defined
Chun-wei Fan [Wed, 29 Feb 2012 03:58:16 +0000 (11:58 +0800)]
Update Visual C++ projects
Update the build support of the included PCRE as we are now including
PCRE 8.30 with the GLib distribution.
Also "install" the new gversionmacros.h header file.
Aleksander Morgado [Tue, 28 Feb 2012 00:14:29 +0000 (01:14 +0100)]
gio-2.0.pc: add gdbus_codegen variable
https://bugzilla.gnome.org/show_bug.cgi?id=670922
Fran Diéguez [Mon, 27 Feb 2012 23:32:18 +0000 (00:32 +0100)]
Updated Galician translations
David Zeuthen [Mon, 27 Feb 2012 19:53:13 +0000 (14:53 -0500)]
GDBusConnection: Don't leak message reply in error path
This was reported in bug 670909.
https://bugzilla.gnome.org/show_bug.cgi?id=670909
Signed-off-by: David Zeuthen <davidz@redhat.com>
Ryan Lortie [Mon, 27 Feb 2012 19:00:55 +0000 (14:00 -0500)]
GDBusMenuModel: plug a leak of a GHashTable
Christian Persch [Mon, 27 Feb 2012 15:25:50 +0000 (16:25 +0100)]
Fixup docs comment
Christian Persch [Mon, 13 Feb 2012 13:20:55 +0000 (14:20 +0100)]
regex: unicode: Update to Unicode 6.1.0
Update some more PCRE tables to Unicode 6.1.0. Should be completely
updated now.
Matthias Clasen [Mon, 27 Feb 2012 12:16:11 +0000 (07:16 -0500)]
Fix doc build again
The way gtk-doc works, we need compiling.sgml in both
content_files (to make sure it ends up in the disted tarball)
and in expand_content_files (to have references expanded).
Matthias Clasen [Mon, 27 Feb 2012 11:48:01 +0000 (06:48 -0500)]
Improve the wording of the message for G_UNAVAILABLE
The version number we have here is the one the function appeared
in, not the max-allowed version. Therefore 'unavailable before
VERSION' makes more sense than 'unavailable for VERSION'.
Rico Tzschichholz [Mon, 27 Feb 2012 11:50:18 +0000 (12:50 +0100)]
docs/glib: Moving back compiling.sgml to content_files to fix make dist
Alexander Shopov [Mon, 27 Feb 2012 05:31:44 +0000 (07:31 +0200)]
Updated Bulgarian translation
Matthias Clasen [Mon, 27 Feb 2012 05:32:13 +0000 (00:32 -0500)]
Add a 'these are private' note for the version macros
Matthias Clasen [Mon, 27 Feb 2012 05:18:47 +0000 (00:18 -0500)]
Improve documentation around deprecations
Emmanuele Bassi [Tue, 21 Feb 2012 13:40:50 +0000 (13:40 +0000)]
Add versioned deprecation annotation
We start from GLib 2.26.
https://bugzilla.gnome.org/show_bug.cgi?id=670542
Emmanuele Bassi [Mon, 20 Feb 2012 16:41:30 +0000 (16:41 +0000)]
value array: Annotate with versioned deprecation
https://bugzilla.gnome.org/show_bug.cgi?id=670542
Emmanuele Bassi [Mon, 20 Feb 2012 16:20:15 +0000 (16:20 +0000)]
Add flexible API version boundaries
There are cases when it should be possible to define at compile time
what range of functions and types should be used, in order to get,
or restrict, the compiler warnings for deprecated or newly added
types or functions.
For instance, if GLib introduces a deprecation warning on a type in
version 2.32, application code can decide to specify the minimum and
maximum boundary of the used API to be 2.30; when compiling against
a new version of GLib, this would produce the following results:
- all deprecations introduced prior to 2.32 would emit compiler
warnings when used by the application code;
- all deprecations introduced in 2.32 would not emit compiler
warnings when used by the application code;
- all new symbols introduced in 2.32 would emit a compiler warning.
Using this scheme it should be possible to have fairly complex
situations, like the following one:
assuming that an application is compiled with:
GLIB_VERSION_MIN_REQUIRED = GLIB_VERSION_2_30
GLIB_VERSION_MAX_ALLOWED = GLIB_VERSION_2_32
and a GLib header containing:
void function_A (void) GLIB_DEPRECATED_IN_2_26;
void function_B (void) GLIB_DEPRECATED_IN_2_28;
void function_C (void) GLIB_DEPRECATED_IN_2_30;
void function_D (void) GLIB_AVAILABLE_IN_2_32;
void function_E (void) GLIB_AVAILABLE_IN_2_34;
any application code using the above functions will get the following
compiler warnings:
function_A: deprecated symbol warning
function_B: deprecated symbol warning
function_C: no warning
function_D: no warning
function_E: undefined symbol warning
This means that it should be possible to gradually port code towards
non-deprecated API gradually, on a per-release basis.
https://bugzilla.gnome.org/show_bug.cgi?id=670542
Christian Persch [Sat, 11 Feb 2012 22:51:11 +0000 (23:51 +0100)]
regex: Remove --disable-regex option
https://bugzilla.gnome.org/show_bug.cgi?id=622149
David King [Tue, 21 Feb 2012 11:19:20 +0000 (11:19 +0000)]
docs: Clarify how to unset a GFileInfo attribute
https://bugzilla.gnome.org/show_bug.cgi?id=592666
David King [Tue, 21 Feb 2012 10:05:08 +0000 (10:05 +0000)]
docs: Clarify g_type_register_fundamental() behaviour
https://bugzilla.gnome.org/show_bug.cgi?id=580873
Christian Persch [Sun, 12 Feb 2012 20:22:13 +0000 (21:22 +0100)]
regex: Remove pcre_ucd.c
Christian Persch [Sun, 12 Feb 2012 20:20:33 +0000 (21:20 +0100)]
regex: Use glib for unicode data
Use g_unichar_type() and g_unichar_get_script() instead of pcre tables.
Christian Persch [Sun, 12 Feb 2012 19:41:52 +0000 (20:41 +0100)]
regex: Remove obsolete patch
Christian Persch [Sun, 12 Feb 2012 19:04:41 +0000 (20:04 +0100)]
regex: unicode: Update to Unicode 6.1.0
Christian Persch [Sun, 12 Feb 2012 18:44:31 +0000 (19:44 +0100)]
regex: Remove obsolete makefile fragments
The update.sh script doesn't work with current PCRE, so these are obsolete.
Christian Persch [Sun, 12 Feb 2012 18:40:48 +0000 (19:40 +0100)]
regex: Use glib memory allocator
Christian Persch [Sun, 12 Feb 2012 18:31:15 +0000 (19:31 +0100)]
regex: Remove obsolete patch
Christian Persch [Sun, 12 Feb 2012 18:29:42 +0000 (19:29 +0100)]
regex: Use g_ascii_is[x]digit
Christian Persch [Sun, 12 Feb 2012 18:20:49 +0000 (19:20 +0100)]
regex: Remove obsolete patch
PCRE doesn't even contain the patched file anymore.
Christian Persch [Sun, 12 Feb 2012 18:18:44 +0000 (19:18 +0100)]
regex: Remove obsolete patches
Upstream PCRE has removed the relocations that these patches were fixing;
the patches are obsolete.
Christian Persch [Sun, 12 Feb 2012 18:14:59 +0000 (19:14 +0100)]
regex: Update included PCRE to 8.30
Matthias Clasen [Mon, 27 Feb 2012 02:49:20 +0000 (21:49 -0500)]
Update case conversion test data for Unicode 6.1
Christian Persch [Fri, 10 Feb 2012 17:59:50 +0000 (18:59 +0100)]
unicode: tests: More script to/from ISO-15924 tests
Christian Persch [Fri, 10 Feb 2012 17:42:08 +0000 (18:42 +0100)]
unicode: tests: Add tests for new scripts
Christian Persch [Fri, 10 Feb 2012 17:36:13 +0000 (18:36 +0100)]
unicode: tests: Add tests for new line break classes
Christian Persch [Fri, 10 Feb 2012 17:25:47 +0000 (18:25 +0100)]
unicode: Regenerate tables from Unicode 6.1.0
Christian Persch [Fri, 10 Feb 2012 17:21:31 +0000 (18:21 +0100)]
unicode: Regenerate gscripttable.h for Unicode 6.1.0
Christian Persch [Fri, 10 Feb 2012 17:33:22 +0000 (18:33 +0100)]
unicode: tests: Remove U+27CD from is-undefined test
It's assigned in Unicode 6.1.0.
Christian Persch [Fri, 10 Feb 2012 17:20:26 +0000 (18:20 +0100)]
unicode: Add new line break classes from Unicode 6.1.0
Christian Persch [Fri, 10 Feb 2012 15:59:41 +0000 (16:59 +0100)]
unicode: Add new scripts from Unicode 6.1.0
Stefan Sauer [Sun, 26 Feb 2012 20:20:24 +0000 (21:20 +0100)]
goption: try to be helpful in goption args/flag checks
When complaining about ill defined GOptionEntries include the name of the option
group and entry in the warning.
Daniel Mustieles [Sun, 26 Feb 2012 19:08:29 +0000 (20:08 +0100)]
Updated Spanish translation
Jonh Wendell [Sun, 26 Feb 2012 13:59:40 +0000 (10:59 -0300)]
Updated Brazilian Portuguese translation
Thomas Hindoe Paaboel Andersen [Sat, 25 Feb 2012 09:25:13 +0000 (10:25 +0100)]
docs: g_file_new_tmp: template was renamed to tmpl
A S Alam [Sun, 26 Feb 2012 10:54:15 +0000 (16:24 +0530)]
update Punjabi Translation
Мирослав Николић [Sun, 26 Feb 2012 10:26:11 +0000 (11:26 +0100)]
Updated Serbian translation
Gheyret Kenji [Sun, 26 Feb 2012 02:23:43 +0000 (11:23 +0900)]
Updated Uyghur translation
Ihar Hrachyshka [Sat, 25 Feb 2012 22:18:29 +0000 (01:18 +0300)]
Updated Belarusian translation.
Jonh Wendell [Sat, 25 Feb 2012 12:54:53 +0000 (10:54 -0200)]
Make some strings translatable
Aurimas Černius [Sat, 25 Feb 2012 20:37:20 +0000 (22:37 +0200)]
Updated Lithuanian translation
Jonh Wendell [Sat, 25 Feb 2012 12:18:40 +0000 (10:18 -0200)]
Fixed a typo
Arash Mousavi [Sat, 25 Feb 2012 12:05:17 +0000 (15:35 +0330)]
Updated Persian Translation
Chao-Hsiung Liao [Sat, 25 Feb 2012 02:44:50 +0000 (10:44 +0800)]
Updated Traditional Chinese translation(Hong Kong and Taiwan)
John Ralls [Sat, 25 Feb 2012 01:04:52 +0000 (17:04 -0800)]
[Bug 529806] Cannot build in 64-bit Mac OS X due to libiconv