Revision tags: php-7.4.0alpha3 |
|
#
4f5c6bc1 |
| 08-Jul-2019 |
Peter Kokot |
Merge branch 'PHP-7.4' * PHP-7.4: Simplify PHP_CHECK_PDO_INCLUDES calls
|
#
a39ea917 |
| 08-Jul-2019 |
Peter Kokot |
Simplify PHP_CHECK_PDO_INCLUDES calls Conditional checks were once used for backwards compatibility with phpize from PHP versions that didn't have this macro call yet. Closes GH
Simplify PHP_CHECK_PDO_INCLUDES calls Conditional checks were once used for backwards compatibility with phpize from PHP versions that didn't have this macro call yet. Closes GH-4376
show more ...
|
#
04f9a523 |
| 07-Jul-2019 |
Peter Kokot |
Merge branch 'PHP-7.4' * PHP-7.4: Remove PHP_DEBUG_MACRO
|
#
3bde4838 |
| 07-Jul-2019 |
Peter Kokot |
Remove PHP_DEBUG_MACRO The macro is no longer used. The warning at the end of the configure script therefore is also no longer used. |
#
35709b56 |
| 07-Jul-2019 |
Peter Kokot |
Merge branch 'PHP-7.4' * PHP-7.4: Remove some more Apache 1 left overs
|
#
49cc2a63 |
| 07-Jul-2019 |
Peter Kokot |
Remove some more Apache 1 left overs - warning in configure.ac is relevant for the sapi/apache - errors output redirected to /dev/null when checking Apache version |
Revision tags: php-7.3.7 |
|
#
d9630aee |
| 02-Jul-2019 |
Peter Kokot |
Merge branch 'PHP-7.4' * PHP-7.4: Remove PHP_CHECK_CONFIGURE_OPTIONS
|
#
16df7182 |
| 02-Jul-2019 |
Peter Kokot |
Remove PHP_CHECK_CONFIGURE_OPTIONS Instead of building a custom macro for checking configure options, Autoconf 2.62+ already outputs a warning at the beginning and the end of the out
Remove PHP_CHECK_CONFIGURE_OPTIONS Instead of building a custom macro for checking configure options, Autoconf 2.62+ already outputs a warning at the beginning and the end of the output of configure script. It automatically detects correct and wrong options better. This is related also to bug #55634. So now instead a better way is the default Autoconf approach: This outputs a warning at the beginning and end of the configure output: ./configure --with-non-existing This results in fatal error: ./configure --non-existing configure: error: unrecognized option: `--non-existing' Try `./configure --help' for more information The `--enable-option-checking=fatal` results in fatal error for all non existing options: ./configure --with-non-existing --enable-option-checking=fatal configure: error: unrecognized options: --with-non-existing Closes GH-4348
show more ...
|
Revision tags: php-7.2.20 |
|
#
8f1f4c7d |
| 26-Jun-2019 |
Peter Kokot |
Merge branch 'PHP-7.4' * PHP-7.4: Remove warnings for bison and re2c checks
|
Revision tags: php-7.4.0alpha2 |
|
#
798fed3b |
| 23-Jun-2019 |
Peter Kokot |
Remove warnings for bison and re2c checks This patch removes warnings when lexer and parser files are already generated. For example, when downloading a PHP release. Realistically, i
Remove warnings for bison and re2c checks This patch removes warnings when lexer and parser files are already generated. For example, when downloading a PHP release. Realistically, it is not so trivial to rebuild lexer and parser files without removing them first. And considering that tarballs don't have cleaning tools such as Git, this would require manual removali. Related also to https://bugs.gentoo.org/593278
show more ...
|
Revision tags: php-7.3.7RC3, php-7.3.7RC2, php-7.2.20RC2, php-7.4.0alpha1, php-7.3.7RC1, php-7.2.20RC1 |
|
#
eb8451e6 |
| 04-Jun-2019 |
Nikita Popov |
Merge branch 'PHP-7.4'
|
#
32114b57 |
| 29-May-2019 |
Hugh McMaster |
Use a common setup macro to detect the Expat library Closes GH-4221. |
Revision tags: php-7.2.19, php-7.3.6, php-7.1.30, php-7.2.19RC1, php-7.3.6RC1 |
|
#
2cf90bb2 |
| 12-May-2019 |
Peter Kokot |
Merge branch 'PHP-7.4' * PHP-7.4: Normalize comments in *nix build system m4 files
|
#
75fb7486 |
| 12-May-2019 |
Peter Kokot |
Normalize comments in *nix build system m4 files Normalization include: - Use dnl for everything that can be ommitted when configure is built in favor of the shell comment characte
Normalize comments in *nix build system m4 files Normalization include: - Use dnl for everything that can be ommitted when configure is built in favor of the shell comment character # which is visible in the output. - Line length normalized to 80 columns - Dots for most of the one line sentences - Macro definitions include similar pattern header comments now
show more ...
|
Revision tags: php-7.1.29, php-7.2.18, php-7.3.5 |
|
#
028ffddf |
| 23-Apr-2019 |
Peter Kokot |
Merge branch 'PHP-7.4' * PHP-7.4: Move acinclude.m4 to build/php.m4
|
Revision tags: php-7.2.18RC1, php-7.3.5RC1, php-7.2.17, php-7.3.4, php-7.1.28, php-7.3.4RC1, php-7.2.17RC1 |
|
#
4e7064d1 |
| 12-Mar-2019 |
Peter Kokot |
Move acinclude.m4 to build/php.m4 The acinclude.m4 file is in a usual Autotools build processed with Automake's aclocal tool. Since PHP currently doesn't use Automake and aclocal thi
Move acinclude.m4 to build/php.m4 The acinclude.m4 file is in a usual Autotools build processed with Automake's aclocal tool. Since PHP currently doesn't use Automake and aclocal this file can be moved into the build directory. PHP build system currently generates a combined aclocal.m4 file that Autoconf can processes automatically. However, a newer practice is writing all local macros in separate dedicated files prefixed with package name, in PHP's case PHP_MACRO_NAME and putting them in a common `m4` directory. PHP uses currently `build` directory for this purpose. Name `php.m4` probably most resembles such file for PHP's case. PHP manually created the aclocal.m4 file from acinclude.m4 and build/libtool.m4. Which is also not a particularly good practice [1], so this patch also removes the generated alocal.m4 usage and uses m4_include() calls manually in the configure.ac and phpize.m4 files manually. - sort order is not important but can be alphabetical - list of *.m4 files prerequisites for configure script generation updated - Moving m4_include() before AC_INIT also removes all comments starting with hash character (`#`) in the included files. [1] https://autotools.io/autoconf/macros.html
show more ...
|