version 1.1.1.2, 2012/05/29 12:34:46
|
version 1.1.1.3, 2014/06/15 20:03:41
|
Line 33 ac_version=`$PHP_AUTOCONF --version 2>/dev/null|head -
|
Line 33 ac_version=`$PHP_AUTOCONF --version 2>/dev/null|head -
|
if test -z "$ac_version"; then |
if test -z "$ac_version"; then |
echo "buildconf: autoconf not found." |
echo "buildconf: autoconf not found." |
echo " You need autoconf version 2.59 or newer installed" |
echo " You need autoconf version 2.59 or newer installed" |
echo " to build PHP from SVN." | echo " to build PHP from Git." |
exit 1 |
exit 1 |
fi |
fi |
IFS=.; set $ac_version; IFS=' ' |
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 "59" || test "$1" -lt "2"; then |
echo "buildconf: autoconf version $ac_version found." |
echo "buildconf: autoconf version $ac_version found." |
echo " You need autoconf version 2.59 or newer installed" |
echo " You need autoconf version 2.59 or newer installed" |
echo " to build PHP from SVN." | echo " to build PHP from Git." |
exit 1 |
exit 1 |
else |
else |
echo "buildconf: autoconf version $ac_version (ok)" |
echo "buildconf: autoconf version $ac_version (ok)" |