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