GNOME Bugzilla – Bug 618546
Incorrect Vala configure check
Last modified: 2010-06-30 18:14:48 UTC
Created attachment 160974 [details] [review] proposed patch Totem's Vala configure check is incorrect. libvala is a library for applications that process vala source code. Totem does not depend on it. The only dependency of a vala plugin is the vala compiler (valac).
And AM_PROG_VALAC() is defined in an m4 in gnome-common? Or as shipped in vala itself? If so, from which version was that added? (because it's not in my pretty old version).
It's part of Automake (Version 1.11): http://www.gnu.org/software/hello/manual/automake/Vala-Support.html
(In reply to comment #2) > It's part of Automake (Version 1.11): > http://www.gnu.org/software/hello/manual/automake/Vala-Support.html Then you'll need to up the dependencies for automake in the configure.in and in the autogen.sh as well.
Created attachment 161076 [details] [review] updated vala configure check patch Done.
Comment on attachment 161076 [details] [review] updated vala configure check patch Please commit to master
IIRC the problem with AM_PROG_VALA is that if you specify a minimum vala version and vala is installed, but not recent enough, then the macro just AC_MSG_ERROR()s out, and you can't do anything about it, or just disable vala support.