| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Autoconf 2.50 released in 2001 made several macros obsolete including
the AC_TRY_RUN, AC_TRY_COMPILE and AC_TRY_LINK:
http://git.savannah.gnu.org/cgit/autoconf.git/tree/ChangeLog.2
These macros should be replaced with the current AC_FOO_IFELSE instead:
- AC_TRY_RUN with AC_RUN_IFELSE and AC_LANG_SOURCE
- AC_TRY_LINK with AC_LINK_IFELSE and AC_LANG_PROGRAM
- AC_TRY_COMPILE with AC_COMPILE_IFELSE and AC_LANG_PROGRAM
PHP 5.4 to 7.1 require Autoconf 2.59+ version, PHP 7.2 and above require
2.64+ version, and the PHP 7.2 phpize script requires 2.59+ version which
are all greater than above mentioned 2.50 version therefore systems
should be well supported by now.
This patch was created with the help of autoupdate script:
autoupdate <file>
Reference docs:
- https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Obsolete-Macros.html
- https://www.gnu.org/software/autoconf/manual/autoconf-2.59/autoconf.pdf
|
| |
|
|
| |
inside zend_constant.value.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The $Id$ keywords were used in Subversion where they can be substituted
with filename, last revision number change, last changed date, and last
user who changed it.
In Git this functionality is different and can be done with Git attribute
ident. These need to be defined manually for each file in the
.gitattributes file and are afterwards replaced with 40-character
hexadecimal blob object name which is based only on the particular file
contents.
This patch simplifies handling of $Id$ keywords by removing them since
they are not used anymore.
|
| |\
| |
| |
| |
| |
| | |
* pull-request/3274:
Added const modifier
76363: added jsm extension to list of mime types
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
status 0
We exit with status 255 instead.
|
| |/
|
|
|
|
|
|
| |
When the PHP source code was versioned in Subversion, there was
possible to substitute certain keywords such as $Id$ with revision
number, last change time and author name. Such approach is not used
in Git so this patch removes these outdated artifacts from source
code files.
|
| |
|
|
| |
where we sure about string persistence.
|
| |\
| |
| |
| |
| | |
* PHP-7.2:
Fix cli server test fails after recent AppVeyor image update
|
| | |\
| | |
| | |
| | |
| | | |
* PHP-7.1:
Fix cli server test fails after recent AppVeyor image update
|
| | | | |
|
| |\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-7.2:
Fixed bug #76333 PHP built-in server does not find files if root path contains special characters
|
| | |\ \
| | |/
| | |
| | |
| | | |
* PHP-7.1:
Fixed bug #76333 PHP built-in server does not find files if root path contains special characters
|
| | | |
| | |
| | |
| | | |
contains special characters
|
| | | | |
|
| | | | |
|
| | | |
| | |
| | |
| | | |
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
PHP requires boolean typehints to be written "bool" and disallows
"boolean" as an alias. This changes the error messages to match
the actual type name and avoids confusing messages like "must be
of type boolean, boolean given".
This a followup to ce1d69a1f6dcf15d43029301059c25e5bc09a577, which
implements the same change for integer->int.
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
PHP requires integer typehints to be written "int" and does not
allow "integer" as an alias. This changes type error messages to
match the actual type name and avoids confusing messages like
"must be of the type integer, integer given".
|
| | | | |
|
| | | | |
|
| |\ \ \
| |/ / |
|
| | |\ \
| | |/ |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
function)"
This reverts commit 816758eda2bcdd69ba505fb6bbb79124a7bf2254.
After this commit relative router scripts were resolved against
docroot rather than shell cwd.
|
| |\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
* PHP-7.2:
Happy new year (Update copyright to 2018)
Conflicts:
ext/phar/LICENSE
|
| | |\ \
| | |/
| | |
| | |
| | | |
* PHP-7.1:
Happy new year (Update copyright to 2018)
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |\ \ \
| |/ / |
|
| | |\ \
| | |/ |
|
| | | |
| | |
| | |
| | |
| | |
| | | |
The HAVE_UNISTD_H check has to be after including config.h.
Also include sys/types.h, which may be needed for setproctitle.
|
| |\ \ \
| |/ /
| | |
| | |
| | | |
* PHP-7.2:
Fixed bug #73830 Directory does not exist.
|
| | |\ \
| | |/
| | |
| | |
| | | |
* PHP-7.1:
Fixed bug #73830 Directory does not exist.
|
| | | | |
|
| | | |\
| | | |
| | | |
| | | |
| | | |
| | | | |
* PHP-7.0:
Update NEWS
Fix bug 60471 by correctly identifying unused speculative preconnections
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Correctly identify unused speculative preconnections from browsers
like Chrome and Firefox
* Add a new message to the debug level that is emitted when a TCP
connection is closed without sending any request (a preconnection)
* Fix an issue where the existing debug messages were not being
displayed even when debug mode was enabled
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | | |
RFC https://wiki.php.net/rfc/pcre2-migration
|
| | | | | |
|
| | | | | |
|
| |\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
* PHP-7.2:
Update NEWS
Update NEWS
Fixed bug #75287 (Builtin webserver crash after chdir in a shutdown function)
|
| | |\ \ \
| | |/ /
| | | |
| | | |
| | | |
| | | | |
* PHP-7.1:
Update NEWS
Fixed bug #75287 (Builtin webserver crash after chdir in a shutdown function)
|
| | | |\ \
| | | |/
| | | |
| | | |
| | | | |
* PHP-7.0:
Fixed bug #75287 (Builtin webserver crash after chdir in a shutdown function)
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | | |
[ci skip]
|
| |\ \ \ \
| |/ / /
| | | |
| | | |
| | | | |
* PHP-7.2:
Fix the version check causing the test fail
|