From: Rico Tzschichholz Date: Sat, 25 Sep 2021 13:31:28 +0000 (+0200) Subject: build: At least valac 0.16.1 is required X-Git-Tag: 0.54.2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=192c6dfed03b3f277d86ce58c2992d7fcc5e9829;p=thirdparty%2Fvala.git build: At least valac 0.16.1 is required --- diff --git a/autogen.sh b/autogen.sh index d73d92d3d..69204b247 100755 --- a/autogen.sh +++ b/autogen.sh @@ -7,12 +7,12 @@ ORIGDIR=`pwd` cd $srcdir test -z "$VALAC" && VALAC=valac -if ! $VALAC --version | sed -e 's/^Vala \([0-9]\+\.[0-9]\+\).*$/\1/' | grep -vq '^0\.\([0-9]\|1[0-1]\)$' +if ! $VALAC --version | sed -e 's/^Vala \([0-9]\+\.[0-9]\+\).*$/\1/' | grep -vq '^0\.\([0-9]\|1[0-5]\)$' then - echo "**Error**: You must have valac >= 0.12.0 installed" + echo "**Error**: You must have valac >= 0.16.1 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/" + echo " https://download.gnome.org/sources/vala/" exit 1 fi