From: Jürg Billeter Date: Thu, 21 Oct 2010 08:23:36 +0000 (+0200) Subject: build: Require valac >= 0.10.0 to build from git X-Git-Tag: 0.11.1~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d78f664ae249124a67e15bc4b6c4ae07e87dffc2;p=thirdparty%2Fvala.git build: Require valac >= 0.10.0 to build from git Fixes bug 631729. --- diff --git a/autogen.sh b/autogen.sh index 1eaa1cc3f..7db4f1411 100755 --- a/autogen.sh +++ b/autogen.sh @@ -7,9 +7,9 @@ ORIGDIR=`pwd` cd $srcdir test -z "$VALAC" && VALAC=valac -if ! $VALAC --version | sed -e 's/^.*\([0-9]\+\.[0-9]\+\)\.[0-9]\+.*$/\1/' | grep -vq '^0\.[0-6]$' +if ! $VALAC --version | sed -e 's/^.*\([0-9]\+\.[0-9]\+\)\.[0-9]\+.*$/\1/' | grep -vq '^0\.[0-9]$' then - echo "**Error**: You must have valac >= 0.7.0 installed" + echo "**Error**: You must have valac >= 0.10.0 installed" echo " to build vala. Download the appropriate package" echo " from your distribution or get the source tarball at" echo " http://download.gnome.org/sources/vala/"