GNOME Bugzilla – Bug 678589
Anjuta git master not working with vala git master
Last modified: 2012-07-05 15:08:17 UTC
Anjuta has checks for vala version 0.14 or 0.16. It won't find 0.18 (which is what master is currently at and what will be released with 3.6). Further: if 0.18 is simply added to the check, there are API incompatibilities that need to be fixed.
Created attachment 216987 [details] [review] vala language support: update to Vala 0.18 Add support for vala-0.18, dropping support for vala-0.14 (to keep the logic simple). Vala 0.16 is still supported. There is an API incompatibility between libvala 0.16 and 0.18 with respect to source references. Use #if VALA_0_18 to deal with that.
Created attachment 216988 [details] [review] ctags vala support: update to Vala 0.18 Add support for Vala 0.18 to the ctags visitor. This is done with a large number if #if VALA_0_18 statements. This was done instead of creating a single convenience function (with one #if) because it will be easier to update when support for Vala 0.16 is removed.
These patches were pushed to master: 1. http://git.gnome.org/browse/anjuta/commit/?id=cc60d728285312f41e2b7fbe969bdf4f5729843f 2. http://git.gnome.org/browse/anjuta/commit/?id=63d60f62495a94d7743c0328315a91abb3703f31 Should this bug be closed?
Yep.b Thanks Ryan!