GNOME Bugzilla – Bug 628676
configure check for vala is wrong
Last modified: 2010-09-22 16:13:51 UTC
The current check for vala is: PKG_CHECK_EXISTS([vala-1.0], [HAVE_VALA="yes"], [HAVE_VALA="no"]) However, recent versions of vala are using a 0.10 version now. Anyway, it's most likely wrong to check for the pkg-config file since it's used for the vala library, not for the compiler. Something like: AM_PROG_VALAC([$VALA_REQUIRED]) should be used.
Not sure the VALAC check is what's needed here, but we'll figure it out, thanks :)
Created attachment 169437 [details] [review] Patch I'll use in openSUSE I'm using this patch in openSUSE. But indeed, if you're just copying some files around, you might not even need any check at all.
commit 6b771d391d99871ce2a9d1207f1310f3c1610a8e Author: Sebastian Dröge <sebastian.droege@collabora.co.uk> Date: Wed Sep 22 18:12:50 2010 +0200 Fix configure checks and installation location for Vala bindings Fixes bug #628676.
Comment on attachment 169437 [details] [review] Patch I'll use in openSUSE It's not necessary to check for valac here