File tree 4 files changed +11
-10
lines changed
4 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 3
3
?? ??? 201?, PHP 5.4.0
4
4
- Upgraded bundled Sqlite3 to version 3.7.4. (Ilia)
5
5
- Upgraded bundled PCRE to version 8.10. (Ilia)
6
- - autoconf 2.60+ is now supported (and required) for generating the configure
7
- script with ./buildconf (Rasmus)
6
+ - autoconf 2.59+ is now supported (and required) for generating the
7
+ configure script with ./buildconf. Autoconf 2.60+ is desirable
8
+ otherwise the configure help order may be incorrect. (Rasmus, Chris Jones)
8
9
9
10
- Removed legacy features:
10
11
. break/continue $var syntax. (Dmitry)
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