GNOME Bugzilla – Bug 661148
Adapt to GLib 2.31 deprecations and thread API changes
Last modified: 2011-10-26 12:14:11 UTC
GStaticMutex and GStaticRWLock have been replaced by GMutex and GRWLock, and g_thread_init() is no longer needed.
Created attachment 198500 [details] [review] Adapt to GLib 2.31 deprecations and thread API changes
Committed with minor changes. Thanks for the patch! commit bd014bd8a442cae12aace7deb6e6a4d21ac3dd0e Author: Matthias Clasen <mclasen@redhat.com> Date: Fri Oct 21 14:15:09 2011 +0200 Adapt to GLib 2.31 deprecations and thread API changes GStaticMutex and GStaticRWLock have been replaced by GMutex and GRWLock, and g_thread_init() is no longer needed. https://bugzilla.gnome.org/show_bug.cgi?id=661148
Leaving open as there are few other deprecated functions called, will fix them later.
I've pushed two more commits fixing the usage of deprecated API to master. Considering this fixed.