Skip to content
This repository has been archived by the owner on Aug 24, 2021. It is now read-only.

Commit

Permalink
Fixed bug #75142 buildcheck.sh check for autoconf version needs to be…
Browse files Browse the repository at this point in the history
… updated for v2.64
  • Loading branch information
remicollet committed Sep 5, 2017
1 parent c0383b5 commit e967de6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/buildcheck.sh
Expand Up @@ -28,18 +28,18 @@ if test -z "$PHP_AUTOCONF"; then
PHP_AUTOCONF='autoconf'
fi

# autoconf 2.59 or newer
# autoconf 2.64 or newer
ac_version=`$PHP_AUTOCONF --version 2>/dev/null|head -n 1|sed -e 's/^[^0-9]*//' -e 's/[a-z]* *$//'`
if test -z "$ac_version"; then
echo "buildconf: autoconf not found."
echo " You need autoconf version 2.59 or newer installed"
echo " You need autoconf version 2.64 or newer installed"
echo " to build PHP from Git."
exit 1
fi
IFS=.; set $ac_version; IFS=' '
if test "$1" = "2" -a "$2" -lt "59" || test "$1" -lt "2"; then
if test "$1" = "2" -a "$2" -lt "64" || test "$1" -lt "2"; then
echo "buildconf: autoconf version $ac_version found."
echo " You need autoconf version 2.59 or newer installed"
echo " You need autoconf version 2.64 or newer installed"
echo " to build PHP from Git."
exit 1
else
Expand Down

0 comments on commit e967de6

Please sign in to comment.