File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -25,18 +25,18 @@ if test -z "$PHP_AUTOCONF"; then
25
25
PHP_AUTOCONF=' autoconf'
26
26
fi
27
27
28
- # autoconf 2.64 or newer
28
+ # autoconf 2.68 or newer
29
29
ac_version=` $PHP_AUTOCONF --version 2> /dev/null| head -n 1| sed -e ' s/^[^0-9]*//' -e ' s/[a-z]* *$//' `
30
30
if test -z " $ac_version " ; then
31
31
echo " buildconf: autoconf not found."
32
- echo " You need autoconf version 2.64 or newer installed"
32
+ echo " You need autoconf version 2.68 or newer installed"
33
33
echo " to build PHP from Git."
34
34
exit 1
35
35
fi
36
36
IFS=.; set $ac_version ; IFS=' '
37
- if test " $1 " = " 2" -a " $2 " -lt " 64 " || test " $1 " -lt " 2" ; then
37
+ if test " $1 " = " 2" -a " $2 " -lt " 68 " || test " $1 " -lt " 2" ; then
38
38
echo " buildconf: autoconf version $ac_version found."
39
- echo " You need autoconf version 2.64 or newer installed"
39
+ echo " You need autoconf version 2.68 or newer installed"
40
40
echo " to build PHP from Git."
41
41
exit 1
42
42
else
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ sinclude(Zend/acinclude.m4)
8
8
dnl Basic autoconf + automake initialization, generation of config.nice.
9
9
dnl -------------------------------------------------------------------------
10
10
11
- AC_PREREQ ( [ 2.64 ] )
11
+ AC_PREREQ ( [ 2.68 ] )
12
12
AC_INIT ( README.GIT-RULES )
13
13
ifdef ( [ AC_PRESERVE_HELP_ORDER ] , [ AC_PRESERVE_HELP_ORDER ] , [ ] )
14
14
Original file line number Diff line number Diff line change 1
1
dnl This file becomes configure.ac for self-contained extensions.
2
2
3
- AC_PREREQ ( 2.59 )
3
+ AC_PREREQ ( [ 2.68 ] )
4
4
AC_INIT ( config.m4 )
5
5
ifdef ( [ AC_PRESERVE_HELP_ORDER ] , [ AC_PRESERVE_HELP_ORDER ] , [ ] )
6
6
You can’t perform that action at this time.
0 commit comments