GNOME Bugzilla – Bug 620250
Remove deprecated GLib symbol (g_mapped_file_free)
Last modified: 2010-06-12 08:58:09 UTC
Vala uses g_mapped_file_free() which is deprecated. See http://live.gnome.org/GnomeGoals/RemoveDeprecatedSymbols/Glib For example (not necessarily a full list): ./gobject-introspection/gmetadata.c: g_mapped_file_free (metadata->mfile);
Refcounted MappedFile exists since 2.22, it may be early to drop _free for _unref.
This problem has been fixed in Vala version 0.7.10. If you compile against GLib 2.22, ref() and unref() will be used instead of free() with MappedFIle. Same for other deprecated API. Please reopen if needed.